本帖最后由 tmplinshi 于 2011-6-1 12:35 编辑
方法一:- @echo off
- :loop
- nircmdc.exe waitprocess iexplore.exe closeprocess iexplore.exe
- goto loop
复制代码 nircmd 下载地址: http://www.nirsoft.net/utils/nircmd.zip
方法二:
用映像劫持。
屏蔽 IE:- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\IEXPLORE.EXE" /v debugger /t reg_sz /d "nothing.exe" /f
复制代码 (这里的 nothing.exe 是一个不干任何事的程序。从 http://www3.telus.net/_/dud/ 下载,原名是 dud.exe)
恢复:- reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\IEXPLORE.EXE" /f
复制代码
|