I wonder if the test results have much meaning. As an example, I don't get why an installation of WinRar should slow down the boot time of a system. It adds no processes or auto start entry.
Yes I know - I have VMWare workstation installed and a heck of a lot of stuff is running constantly even when you aren't using VMWare at all. Trouble is it is not at all obvious how to disable a lot of it (like networking stuff) without screwing up the installation or the rest of my system. It would be nice if you could just set serices etc. to manual and only start them when you need them. Anyone any ideas?
I rarely need VMware, so I stopped all VMware services + set them to manually and start VMware using following AHK script. I've no idea if I get any performance gain, but I feel better.
services = Authorization Service,DHCP Service,NAT Service,Virtual Mount Manager Extended
Loop, parse, services, `,
runwait, net start "VMware %A_LoopField%",,hide
runwait,C:\PROGRA~1\VMware\VMWARE~1\vmware.exe
Loop, parse, services, `,
runwait, net stop "VMware %A_LoopField%",,hide