LoginSignup
1
2

More than 5 years have passed since last update.

IEのインターネットオプションの信頼済みサイトにサイトを登録するbat

Posted at

IEのインターネットオプションの信頼済みサイトにサイトを登録するbatを作成する。

ex)
```
@echo off
set RegRoot=HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains
reg add "%RegRoot%\Exanple1.co.jp\www" /v https /t REG_DWORD /d 2 /f
reg add "%RegRoot%\Exanple2.co.jp\www" /v https /t REG_DWORD /d 2 /f

pause
```

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2