Regarding HPET and DPC latency in Windows 7 and Windows 8
Apparently, Windows 8 enables HPET by default (assuming hardware supports it).
Windows 7, on the other hand, uses Time Stamp Counter (TSC), which has lower resolution interval, and thus lower DPC latency.
However, it appears that some devices benefit from enabling HPET in Windows 7. To enable HPET in Windows 7:
1. Enable HPET in BIOS (if it's not enabled by default).
2. Open an elevated command prompt (Start»All Programs»Accessories»Right Click Command Prompt and select Run as Administrator).
3. Type the following command and press enter:
Code:
bcdedit /set useplatformclock true
4. Restart the computer.
To undo this change, you have to perform the same steps, except for using a different command during step 3:
Code:
bcdedit /deletevalue useplatformclock
Source: www.ni.com (National Instruments)
How this stuff is going to affect performance in Windows 7, I don't know. I have just found the article.
I suppose that storage, sound and graphics performance may change.