Computing
Visual Basic Scripting
Disable Security Warning For File Types
Visual Basic Scripting
Disable Security Warning For File Types
Search




hits.Login
purpleender
41467
Newmarket
Bumder
Jock
Gonna get High till the day I die! Reality is an illusion that occurs due to lack of resin.
Disable Security Warning For File Types
To Disable Security warnings in XP for specific file types:
|
Dim MyHomePage ExtensionsToExclude = ".exe,.bat" WshShell.RegWrite "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Associations\LowRiskFileTypes" , ExtensionsToExclude , "REG_SZ" 'To Re-enable the Security Warnings: 'WshShell.RegWrite "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Associations\LowRiskFileTypes" , "" , "REG_SZ" |
Please Note: Append to Template.vbs to run this script.


