Over the last couple of months I gathered the following tweaks for a better performance insight the virtual machine, besides disabling / uninstalling useless services and devices:
- Disable the pre-logon screensaver:
Open Regedit
HKEY_USERS\.DEFAULT\Control Panel\Desktop
Change the value of “ScreenSaveActive” to 0. - Disable updates of the last access time attribute for your NTFS filesystem, especially for i/o intensive vm’s this is a real boost:
Open CMD
fsutil behavior set disablelastaccess 1 - Disable all visual effects:
Properties on your desktop
Appearance -> Effects
Disable all options. - Disable mouse pointer shadow:
Control Panel -> Mouse
Click on the tab “pointers” and switch “enable pointer shadow” off.
So if you’ve got an addition, please post it and I’ll keep updating this blog post!





Another way to do step two is in the registry itself:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
Value Name: NtfsDisableLastAccessUpdate
Data Type: REG_DWORD (DWORD Value)
Value Data: 1
… but your command line way is “safer”!
Quick question on steps 3 & 4: The methods that you outline only affects the current person logged in; do you know of a way to set this for the entire machine? I haven’t found an obvious group policy setting to do as such.