Windows 7 – Disable ‘Open File Security Warning’ for Executables

Securitywindows 7windows-registry

I would like to disable the "Open File Security Warning" that says "Do you want to run this file?" whenever I double click on an .exe I download. I have Windows 7 Home Premium, so I don't have the group policies editor. I have tried setting a registry value: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Associations, value DefaultFileTypeRisk to 6152, but this did no good. This is the only entry under Associations, incidentally, and it was empty before I added this.

Is there a way to disable this message on my system (other than unblocking each .exe file)?

Best Answer

Adding these two registry entries prevent the error message "Open File Security Warning" that says "Do you want to run this file?" in Windows 7. As when disabling most security warnings, you should think it through before you do it.

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
"SaveZoneInformation"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
"LowRiskFileTypes"=".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov;.mp3;.m3u;.wav;"
Related Question