电脑技术学习

用注册表stop指定程序

dn001

reg add "HKLMSOFTWAREMicrosoftWindows NTCurrentVersionImage File Execution Options要禁止运行的文件" /v debugger /t reg_sz /d debugfile.exe /f

比如要禁用IGM.EXE,那么就要输入这个命令
reg add "HKLMSOFTWAREMicrosoftWindows NTCurrentVersionImage File Execution OptionsIGM.EXE" /v debugger /t reg_sz /d debugfile.exe /f
这样的话,即使IGM.EXE文件存在也没法运行了,病毒不会发作了呵呵~

比如禁止QQ运行。
那么命令就是
reg add "HKLMSOFTWAREMicrosoftWindows NTCurrentVersionImage File Execution OptionsQQ.exe" /v debugger /t reg_sz /d debugfile.exe /f
输入后你关掉QQ就再也打不开了

取消方法:
reg delete "HKLMSOFTWAREMicrosoftWindows NTCurrentVersionImage File Execution OptionsQQ.exe" /f

标签: