Miscellaneous Hacks
Next up are a few hacks I've come across in my travels. The first is for systems that have an uninterruptible power supply (UPS) with a reliable battery attached. If your system is equipped with a serial-ATA (SATA) hard drive, go to Device Manager (the quickest way to do that is to click Start and punch in "Device Manager" and hit Enter). Expand the Disk Drives entry. Right-click on your SATA hard drive and click Properties. Click the Policies tab, and click Enable Advanced Performance. This option enables extremely aggressive write caching, which can speed up drive access but also cause you to lose data if the power goes out suddenly.Enable Advanced Performance on your SATA hard drives for speedier access.
Note: You should make a backup of the registry before you alter it. Click File, click Export, and in the resulting window, make sure All is selected at the bottom. Give the file a name and click Save. This will create a full backup of your Windows registry; if you accidentally hose something, you can go into Windows Safe Mode and restore it. Alternately, you can create a Restore Point before you alter the registry; go to Control Panel, then System and Maintenance, and then System. Click System Protection in the Tasks list. Click the Create... button, and follow the prompts.
I recommend two registry hacks for minor performance gains. First, turn off the low disk space checks:
- Using the left side of the Registry Editor, navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies
- Right-click in the right pane and select New Key.
- Name the new key Explorer.
- In the Explorer key, right-click in the right pane and click New DWORD (32-bit) Vaue.
- Name the DWORD NoLowDiskSpaceChecks.
- Right-click the new DWORD and click Modify.
- Set the Value Data to 1.
- Click OK.
Next, you can probably safely disable the NTFS habit of creating 8.3 versions of filenames for backward compatibility. DOS is dead, right?
Open the Registry Editor and:
- Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
- Find the DWORD called NtfsDisable8dot3NameCreation.
- Right-click it and click Modify.
- Change the value to 1.
- Click OK.
No comments:
Post a Comment