reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\要禁止執行的檔案" /v debugger /t reg_sz /d debugfile.exe /f
比如要禁用IGM.EXE,那麼就要輸入這個命令
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\IGM.EXE" /v debugger /t reg_sz /d debugfile.exe /f
這樣的話,即使IGM.EXE檔案存在也沒法執行了,病毒不會發作了呵呵∼
比如禁止QQ運行。
那麼命令就是
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QQ.exe" /v debugger /t reg_sz /d debugfile.exe /f
輸入後你關掉QQ就再也打不開了
取消方法:
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QQ.exe" /f


