BAT如何写删除自身目录,想些一个卸载程序,卸载硬盘版游戏!

2024-12-14 17:47:41
推荐回答(4个)
回答1:

@Echo off
echo @Echo off>%temp%\unins.bat
echo rd /q /s %cd%>>%temp%\unins.bat
start %temp%\unins.bat

把这个批处理放到要卸载的游戏目录

回答2:

这个没写好,测试的时候呜呜(>_<),把我的好多代码文件给删了。
@echo off
set F=%cd%
cd..
echo rd "%F%" /s/q>temp.bat
echo del %%0>>temp.bat
temp.bat

回答3:

rmdir /s /q .

回答4:

复制到哪里,删除到哪里??