Created
December 26, 2025 01:26
-
-
Save ssokolow/dca9cd2ed0daf17206fdc6d70db48b6f to your computer and use it in GitHub Desktop.
Registry patch to apply if your method for keeping Windows 7 off the Internet induces 25-second delays when starting some games
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ; Use this if you're blocking off network access in a way which causes timeouts | |
| ; and it's causing some games to wait 25 seconds on every game start as DirectX tries | |
| ; to check the root certs for updates as part of video driver signature checking | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SystemCertificates\AuthRoot\AutoUpdate] | |
| "DisableWebRetrieval"=dword:00000001 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot] | |
| "DisableRootAutoUpdate"=dword:00000001 | |
| ; Stuff below this line can also be done in the GUI by going to the Internet Settings control panel, | |
| ; selecting the Advanced tab, scrolling down to the Security subtree, unchecking | |
| ; "Check for publisher's certificate revocation" and "Check for server certificate revocation*", | |
| ; and then rebooting. (The * means "reboot required") | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings] | |
| "CertificateRevocation"=dword:00000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment