<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; computer maintenance</title> <atom:link href="http://www.ghacks.net/tag/computer-maintenance/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 09:52:46 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Fix Windows 7 Desktop Shortcuts Disappearing</title><link>http://www.ghacks.net/2010/03/30/fix-windows-7-desktop-shortcuts-disappearing/</link> <comments>http://www.ghacks.net/2010/03/30/fix-windows-7-desktop-shortcuts-disappearing/#comments</comments> <pubDate>Tue, 30 Mar 2010 13:31:27 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[broken shortcuts]]></category> <category><![CDATA[computer maintenance]]></category> <category><![CDATA[desktop shortcuts]]></category> <category><![CDATA[system maintenance]]></category> <category><![CDATA[windows 7]]></category> <category><![CDATA[windows 7 shortcuts]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=24046</guid> <description><![CDATA[If you run Windows 7 you might have noticed that desktop shortcuts disappear with no apparent reason whatsoever. Turns out that System Maintenance is responsible for that. It runs as a weekly maintenance service that affects desktop shortcuts in two ways. It will first remove desktop shortcuts that have not been used for at least [...]]]></description> <content:encoded><![CDATA[<p>If you run Windows 7 you might have noticed that desktop shortcuts disappear with no apparent reason whatsoever. Turns out that System Maintenance is responsible for that. It runs as a weekly maintenance service that affects desktop shortcuts in two ways.</p><p>It will first remove desktop shortcuts that have not been used for at least three months. System Maintenance will also remove broken shortcuts on the desktop if there are more than four of them. The problem with the latter is that Windows 7 will recognize shortcuts to disconnected network locations as broken and also shortcuts that link to shell folders.</p><p><span
id="more-24046"></span>Microsoft <a
href="http://support.microsoft.com/kb/978980/">offers</a> two solutions to the problem. The first advice is to keep the number of broken shortcuts below four. This is not always possible due to the problems with broken shortcuts mentioned above.</p><p>The second suggestion by Microsoft is to turn off Computer Maintenance:</p><ul><li>Click Start, and then click Control Panel.</li><li>Under System and Security, click Find and fix problems.</li><li>On the left navigation pane, click Change settings.</li><li>Set Computer Maintenance to Off.</li></ul><p>This does however turn off all other computer maintenance related tasks like checking the system time, disk volume errors or the disk space error reports.</p><p>All the maintenance tasks are powered by scripts that are located in c:\windows\Diagnostics\Scheduled\Maintenance\. Options are to edit the scripts directly in that directory. The permissions prohibit that the files are edited by the current user.</p><p><strong>Fixing Windows 7 Desktop Shortcuts Disappearing</strong></p><p><strong>Please note: This is a hack which might have consequences on other parts of the operating system. Everything worked fine afterwards on the test system but make sure to backup the files properly before editing them</strong></p><p>First we need to take control of the files so that we can edit them. To do that you need to take ownership first and then modify the access rights of the current user so that the files can be modified.</p><p>The first part can be automated. Just download the script <a
href="http://www.sevenforums.com/tutorials/1911-take-ownership-shortcut.html">at this</a> forum and execute it. This should add a Take Ownership entry to the right-click menu in Windows Explorer.</p><p>Go to C:\Windows\diagnostics\scheduled\Maintenance in Windows Explorer after installing the script and right-click the file <em>TS_BrokenShortcuts.ps1</em>. Select the Take Ownership option which should transfer ownership to the logged in user.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/03/take_ownership.jpg" alt="" title="take ownership" width="473" height="191" class="alignnone size-full wp-image-24054" /></p><p>The user still does not have permissions to save the file which means that we have to complete the next step as well before we can edit the broken shortcuts Powerscript file so that it will not delete broken shortcuts automatically.</p><p>Open an elevated command line prompt. You do that by clicking on the Start orb, All Programs, then Accessories. Right-click the Command Prompt link and select to Run As Administrator.</p><p>Now issue the following command to grant the active user full rights of the file. Make sure you replace USERNAME with the name of the active user.</p><p><code>icacls c:\windows\diagnostics\scheduled\maintenance\TS_BrokenShortcuts.ps1 /grant USERNAME:F</code></p><p>Now you can edit the file normally in a text editor like Notepad. Open it and locate the line (line 11)</p><p><code>[string]$list = ""</code></p><p>Delete everything below that is below that line up to (line 22)</p><p><code>return $list</code></p><p>The lines that are deleted are:</p><p><code> Get-ChildItem -Path $path -filter *.lnk | Foreach-Object {<br
/> $fullPath = ConvertTo-WQLPath $_.FullName<br
/> $wmiLinkFile = Get-WmiObject -query "SELECT Name,Target,AccessMask FROM Win32_ShortcutFile WHERE Name = '$fullPath'"</p><p> if(-not(Test-ValidLink $wmiLinkFile) -and (Test-Delete $wmiLinkFile))<br
/> {<br
/> $list = AttachTo-List $list $wmiLinkFile.Name<br
/> }<br
/> }</code></p><p>This basically returns a blank list to the script so that no shortcuts get deleted. I have tested it with five broken shortcuts and they have not been deleted after running system maintenance.</p><p>That fixed the broken shortcuts but we still have the issue that shortcuts that have not been used for some time are deleted by Windows 7 as well.</p><p>We have to (almost) perform the same operation here. Locate the file TS_UnusedDesktopIcons.ps1 in the same directory. Take ownership of it and grant the active user access rights.</p><p>Edit the file afterwards and locate the line (24)</p><p><code>[string]$list = ""</code></p><p>Delete everything up to line (35)</p><p><code> return $list</code></p><p>so that the following lines get deleted</p><p><code> Get-ChildItem -Path $path -filter *.lnk | Foreach-Object {<br
/> $fullPath = ConvertTo-WQLPath $_.FullName<br
/> $wmiLinkFile = Get-WmiObject -query "SELECT Name,Target,AccessMask FROM Win32_ShortcutFile WHERE Name = '$fullPath'"<br
/> $lastAccessTime = Get-LastAccessTime $_.FullName</p><p> if((Test-ValidLink $wmiLinkFile) -and (Test-Delete $wmiLinkFile) -and (Test-FileShortcut $wmiLinkFile) -and (Test-Unused $lastAccessTime $threshold))<br
/> {<br
/> $list = AttachTo-List $list $wmiLinkFile.Name<br
/> }<br
/> }</code></p><p>Please note that I did not test the second script but it should work just as fine.</p><p>This should resolve all issues that users have with removed shortcuts on the Windows 7 desktop.</p><p>Make sure you backup the files properly before you edit them. Please let me know if this worked for you or if you have a better idea on how to fix the deleted shortcut problem in Windows 7.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/03/30/fix-windows-7-desktop-shortcuts-disappearing/feed/</wfw:commentRss> <slash:comments>30</slash:comments> </item> <item><title>Christmas Giveaway Advanced System Care Pro</title><link>http://www.ghacks.net/2009/12/06/christmas-giveaway-advanced-system-care-pro/</link> <comments>http://www.ghacks.net/2009/12/06/christmas-giveaway-advanced-system-care-pro/#comments</comments> <pubDate>Sun, 06 Dec 2009 11:43:28 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[advanced system care]]></category> <category><![CDATA[Christmas giveaway]]></category> <category><![CDATA[computer maintenance]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=21093</guid> <description><![CDATA[Taking care of your computer system should eb an integral part of a computer user&#8217;s life. We all know the feeling that a computer gets slower and less responsive over time which can be largely attributed to what a computer user does after the initial operating system installation. Many install and uninstall programs, download files, [...]]]></description> <content:encoded><![CDATA[<p>Taking care of your computer system should eb an integral part of a computer user&#8217;s life. We all know the feeling that a computer gets slower and less responsive over time which can be largely attributed to what a computer user does after the initial operating system installation. Many install and uninstall programs, download files, create and edit files and do other things that add data to the PC system.</p><p>This additional data can slow down a computer system. A simple example would be the startup entries that grow over time as more and more programs add entries to the list of programs that gets executed at startup. But that&#8217;s just one of the many problems that computer users face, they also have to take care of hard drive defragmentation, temporary files, invalid Registry entries, broken shortcuts and a plethora of other computer maintenance related issues.</p><p><span
id="more-21093"></span>Today&#8217;s giveaway is <a
href="http://www.iobit.com/">IObit&#8217;s</a> <a
href="http://www.iobit.com/advancedsystemcarepro.html">Advanced<br
/> SystemCare PRO</a>, a very popular system maintenance software for the Windows operating system.</p><p>The main interface of Advanced System Care Pro will be displayed upon program start.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/12/advanced_system_care_pro1-500x320.jpg" alt="advanced system care pro" title="advanced system care pro" width="500" height="320" class="alignnone size-medium wp-image-21102" /></p><p>It contains links to the different sections and a system overview that informs the user about the program version, last scan, database date and the status of exclusive features.</p><p>The program itself is divided into the three modules Maintain Windows, Diagnose System and Utilities which can be accessed on the left side of the interface. This interface sports a Care button as well which can be used to perform an express cleanup of the computer system.</p><p>Experienced users should pay a visit to the options on the first start to configure the program to their liking.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/12/advanced_system_care_pro_review-499x369.jpg" alt="advanced system care pro review" title="advanced system care pro review" width="499" height="369" class="alignnone size-medium wp-image-21095" /></p><p>This ranges from general settings that include configuring the context menu entries in Windows Explorer to service specific settings like excluding items from the Registry scan or configuring automated care settings.</p><p><strong>Maintain Windows</strong></p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/12/advanced_system_care_review-500x320.jpg" alt="advanced system care review" title="advanced system care review" width="500" height="320" class="alignnone size-medium wp-image-21096" /></p><p>This is the first module in Advanced System Care Pro. It contains functions to scan for and remove spyware, fix the Windows Registry, perform a so called Privacy Sweep and clean up junk files.</p><ul><li>Spyware Removal: Will perform a system wide scan for spyware. Spyware that has been found &#8211; this includes tracking cookies, toolbars and even programs, can be removed instantly or investigated further in a separate window with options to exclude items from the removal.</li><li>Registry Fix: Scans the Windows Registry for invalid entries with an option to defragment the Registry after removing those invalid entries to reduce the size of it which will in turn speed up the system start.</li><li>Privacy Sweep: Similar to CCleaner. It will check for traces that have been left behind by various programs including web browsers like Internet Explorer or Firefox, the Windows operating system and applications like MS Office, Java or Flash.</li><li>Junk Files Clean: Checks for temporary files in the Windows Recycle Bin, Windows temporary files and Internet Explorer temporary files.</li></ul><p>Advanced System Care Pro will create a backup before it starts the cleanup process. This is important as it makes it possible for the user to restore the backup at a later time in case that problems are experienced.</p><p><strong>Diagnose System</strong></p><p>Diagnose System is the second module that is offered by Advanced System Care Pro. It contains the following options:</p><ul><li>System Optimization: Will check for non-standard system settings and system optimizations. This includes Windows Interface, Windows Services and System Configuration optimizations. It will for instance recommend disabling certain Windows Services that are not needed to run the operating system or Windows interface enhancements like reducing the delay when menus are opened.</li><li>Security Defense: Prevent the installation of ActiveX-based spyware, adware, browser hijackers, dialers, and other potentially unwanted pests; Block spyware, tracking cookies in Internet Browsers; Restrict the actions of potentially dangerous sites in Internet Explorer.</li><li>Disk Defragment: Performs a disk defragmentation of the computer system.</li><li>Security Analyzer: Similar to Hijack This. Will display critical system components.</li></ul><p><strong>Utilities</strong></p><p>Links to utilities that are further divided into the three categories Tuneup, Security and Admin Tools.</p><p>Tuneup:</p><ul><li>Disk Check</li><li>Disk Cleaner</li><li>Game Booster</li><li>Internet Booster</li><li>Iobit Security 360</li><li>Smart Defrag</li><li>Iobit Registry Defrag</li><li>Shortcut Fixer</li><li>Smart Ram</li></ul><p>Security:</p><ul><li>Driver Backup</li><li>IE Security Assistant</li><li>System Backup</li><li>System File Checker</li></ul><p>Admin Tools:</p><ul><li>Auto Shutdown</li><li>Cloned files Finder</li><li>Context Menu Manager</li><li>Disk Explorer</li><li>Restore Center</li><li>Software Uninstaller</li><li>Startup Manager</li><li>System Information</li><li>Windows Manager</li></ul><p>Those are lots of options in one place. Not all are needed by every user but some make it a lot easier to optimize and customize a Windows operating system.</p><p>One of the greatest strengths of Advanced System Care Pro is the ability to run automated optimizations. Advanced users can configure those in the program&#8217;s settings to perform optimizations only in specific areas.</p><p>Advanced System Care Pro is a very comprehensive system maintenance and optimization software for the Windows operating system. The default and advanced settings make it ideal for beginners and experienced computer users alike.</p><p><strong>Christmas Giveaway</strong></p><p>This giveaway is all about speed. We were able to get 1000 licenses for Advanced System Care Pro. Just visit the giveaway page over at <a
href="http://db.iobit.com/license-free/ghacks-asc-free-license.php">Iobit</a> to get a license for the system maintenance program.</p><p>Over at Windows7news.com we are giving away a $200 <a
href="http://www.windows7news.com/2009/12/05/9k-christmas-giveaway-day-5-win-a-linksys-router-worth-200/">Linksys router</a> and Media Monkey Gold, A-squared Anti Malware and Acronis Disk Director Suite 10 plus Acronis True Image.</p><p>Raju is giving away <a
href="http://techpp.com/2009/12/06/techpp-mega-christmas-giveaway-cuteftp-home/">Cute FTP 8</a> today, make sure you check out his giveaway as well.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/12/06/christmas-giveaway-advanced-system-care-pro/feed/</wfw:commentRss> <slash:comments>80</slash:comments> </item> <item><title>Computer Maintenance Software Advanced System Care Free</title><link>http://www.ghacks.net/2009/08/13/computer-maintenance-software-advanced-system-care-free/</link> <comments>http://www.ghacks.net/2009/08/13/computer-maintenance-software-advanced-system-care-free/#comments</comments> <pubDate>Thu, 13 Aug 2009 15:28:13 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[advanced system care]]></category> <category><![CDATA[computer maintenance]]></category> <category><![CDATA[computer repair]]></category> <category><![CDATA[registry]]></category> <category><![CDATA[system cleanup]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=15340</guid> <description><![CDATA[Advanced System Care Free is the free version of the commercial tool of the same name that is offered by Iobit. It is a system maintenance software that can be compared to similar tools in the niche including CCleaner, Microsoft OneCare, System Mechanic or Tuneup Utilities. Advanced System Care divides the computer maintenance process in [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.ghacks.net/wp-content/uploads/2009/08/iobit.jpg" alt="iobit" title="iobit" width="167" height="84" class="alignleft size-full wp-image-15341" />Advanced System Care Free is the free version of the commercial tool of the same name that is offered by Iobit. It is a system maintenance software that can be compared to similar tools in the niche including CCleaner, Microsoft OneCare, System Mechanic or Tuneup Utilities.</p><p>Advanced System Care divides the computer maintenance process in three different categories that are named Maintain Windows, Diagnose System and Utilities.</p><p>Maintain Windows includes a spyware checker, Registry cleanup tool, privacy sweeper and junk file cleaner. This category comes closest to the popular CCleaner application. The program will automatically scan the system for problems upon startup. Findings are displayed in red indicating problems and Megabytes that can be saved if the repair button is pressed.</p><p><span
id="more-15340"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/08/advanced_system_care-500x319.jpg" alt="advanced system care" title="advanced system care" width="500" height="319" class="alignnone size-medium wp-image-15342" /></p><p>It is furthermore possible to click on a function to take a closer look at the problems and files that have been found during the scan. This makes it possible to remove entries from the repair. Advanced System Care will also remind the the user if System Restore is disabled.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/08/computer_maintenance-500x372.jpg" alt="computer maintenance" title="computer maintenance" width="500" height="372" class="alignnone size-medium wp-image-15343" /></p><p>A click on the repair button will initiate a backup before the problems are fixed on the computer system.</p><p>The diagnose system window offers system optimization, security defense, disk defragment and security analyzer functions. A scan will display detected problems offering the same functionality as the maintain windows menu to view them in detail, remove some and repair them.</p><p>The system optimization menu scans for problems in various categories including network connections, Windows services or troubleshooting. Not all recommendations should be accepted right away as the optimizer might suggest corrections for enhancements made by the user. A simple example would be the suggestion to change the time it takes to show the start menu from 1 to the recommended value of 200.</p><p>Users should take a look at all the settings before they press the repair button.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/08/system_optimization-499x216.jpg" alt="system optimization" title="system optimization" width="499" height="216" class="alignnone size-medium wp-image-15345" /></p><p>The same can be said for the security defense scan in the same category and the suggestions made by the security analyzer. This does mean that it takes additional time before the remaining problems can be repaired but it is important to avoid complications and other problems.</p><p>The utilities category offers quick access to tools offered by the Windows operating system and Iobit including an Internet and Game Booster, Registry defragmentation or a startup manager.</p><p><a
href="http://www.iobit.com/advancedsystemcareper.html">Advanced System Care Free</a> is an interesting program that provides access to many computer maintenance scans that can improve a systems reliability, security and stability. It is recommended to check the scan results thoroughly before proceeding with the repair.</p><p>via <a
href="http://www.online-tech-tips.com/free-software-downloads/computer-problem-slow-system-tuneup/">Online Tech Tips</a></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/08/13/computer-maintenance-software-advanced-system-care-free/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Grab A Free Copy Of System Mechanic 8</title><link>http://www.ghacks.net/2008/07/22/grab-a-free-copy-of-system-mechanic-8/</link> <comments>http://www.ghacks.net/2008/07/22/grab-a-free-copy-of-system-mechanic-8/#comments</comments> <pubDate>Tue, 22 Jul 2008 09:37:22 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[computer maintenance]]></category> <category><![CDATA[computer troubleshooting]]></category> <category><![CDATA[iolo]]></category> <category><![CDATA[offers]]></category> <category><![CDATA[system mechanic]]></category> <category><![CDATA[troubleshooting]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=5499</guid> <description><![CDATA[The System Mechanic software has been around for ages and the developers have recently introduced version 8 of their troubleshooting and maintenance product that is compatible with the 32-bit editions of Windows Vista, Windows XP and Windows 2000. The software provides access to various tools that repair so called &#8220;problems&#8221;, make the computer faster and [...]]]></description> <content:encoded><![CDATA[<p>The System Mechanic software has been around for ages and the developers have recently introduced version 8 of their troubleshooting and maintenance product that is compatible with the 32-bit editions of Windows Vista, Windows XP and Windows 2000.</p><p>The software provides access to various tools that repair so called &#8220;problems&#8221;, make the computer faster and fix security vulnerabilities. You are asked for example at the first start after installing System Mechanic 8 to perform a scan of your system.</p><p>That scan is detecting security vulnerabilities (automatic updates service not running), Registry problems, System Clutter but also unnecessary startup items and an unoptimized Internet speed. The user has the choice to let System Mechanic handle the errors and repair them automatically or view a list of the errors that have been found and correct them on a one on one basis which is definitely recommended.</p><p><span
id="more-5499"></span><img
src="http://www.ghacks.net/wp-content/uploads/2008/07/system_mechanic-500x373.jpg" alt="system mechanic" title="system mechanic" width="500" height="373" class="size-medium wp-image-5500" /></p><p>Users who download and install System Mechanic will spend some time exploring all the menus and tools that are available.</p><p>Several of those tools that are provided by the software are available in free versions as well. Say <a
href="http://www.ghacks.net/2008/03/17/run-ccleaner-automatically-on-all-accounts/">CCleaner</a> for removing system clutter or Regfrag to <a
href="http://www.ghacks.net/2008/05/13/defrag-the-registry-with-regdefrag/">defragment</a> the Windows Registry.</p><p>Raymond discovered a way to grab a free copy of System Mechanic 8 including license code that is good for six months. Here is a quick rundown of the process. I suggest you visit Raymond&#8217;s website if you are stuck somewhere because he explains the process in details.</p><ul><li>Visit the System Mechanic Promotional <a
href="http://iolo.com:80/promo/cmount/index.htm">page</a> and click through the process. You have to enter some data like name, email. In the end the serial number will be send to your inbox.</li><li>Grab the latest version of System Mechanic 8 from <a
href="http://download.iolo.net/sm/8/trial/SystemMechanic.exe">this</a> download site.</li><li>Install it, use the serial number from the email to activate it.</li></ul> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/07/22/grab-a-free-copy-of-system-mechanic-8/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> </channel> </rss>
