禁用js脚本

@echo off
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3"  /v  1400 /t REG_DWORD /d 3 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3"  /v  1402 /t REG_DWORD /d 3 /f
exit
@echo on


开启js脚本

@echo off
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3"  /v  1400 /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3"  /v  1402 /t REG_DWORD /d 0 /f 
exit
@echo on