Use bat script to add trusted site for IE
I just wrote a bat script file which add trusted site for ie. In my bat script, I add a entry to this location:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domainsit does't work, but I can see my site was added in the ie security option panel.
and I also note that, when you add trusted site in ie, a registry entry will be added to :
HKEY_USERS\S-1-5-21-1954385965-2893531047-659543403-1001\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{1DABF8D5-8430-4985-9B7F-A30E53D709B3}\iexplore\AllowedDomainsI don't know why, any one know the right way to add trusted site using bat script ? here is my code:
@Echo off&title gworks
set "a=HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\"
set b=192.168.1.100
reg add "%a%%b%" /v http /t REG_DWORD /d 2 /f >nul 2>nul
reg add "%a%%b%" /v https /t REG_DWORD /d 2 /f >nul 2>nulafter I execute it as administrator:
1 Answer
Here is a TechNet posting which might help you.
DISCLAIMER: Use at your own risk. It is advisable to make backups before proceeding.
Adding trusted Sites for all users
The answer marked as correct states:
2Try to add these four keys.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\mytest.org]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\mytest.org\pacs] "https"=dword:00000002
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\mytest.org]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\mytest.org\pacs] "https"=dword:00000002