-2

可能であれば、Windows 7 で Internet Explorer をサイレント モードで無効にするスクリプトまたはプログラムが必要です。

手伝って頂けますか?前もって感謝します

4

2 に答える 2

0

レジストリに無効なプロキシ アドレスを設定してみてください。

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /d 1 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /d 0.0.0.0:0000 /f
于 2013-01-15T13:07:13.460 に答える
0

無効-ie.bat:

@echo off
C:
cd "\Program Files\Internet Explorer"
if not exist IEXPLORE.EXE goto End
if exist IEXPLORE.EX_ del IEXPLORE.EX_
if not exist IEXPLORE.DIR md IEXPLORE.DIR
if not exist IEXPLORE.DIR goto End
attrib -r -h -s IEXPLORE.EXE
ren IEXPLORE.EXE IEXPLORE.EX_
if exist IEXPLORE.EXE goto End
ren IEXPLORE.DIR IEXPLORE.EXE
echo IE disabled.
echo If prompted, click "Cancel" then "Yes" on File Protection restore.
echo Run enable-ie.bat to allow IE to run again.
:End
于 2013-01-15T12:43:16.530 に答える