gpt4 book ai didi

windows - 如何在 DOS/win 命令提示符/windows 批处理文件中停止 windows 服务后删除 dll

转载 作者:可可西里 更新时间:2023-11-01 10:07:18 26 4
gpt4 key购买 nike

::Stop Windows service
sc query MyWinService | find "STOPPED" & if errorlevel 1 net stop MyWinService
::delete the dll
del /q E:\MyWinService\\*
for /d %%x in (E:\MyWinService\\*) do @rd /s /q "%%x"

但有些 dll 没有被删除,如果我在 5 分钟后重新运行相同的命令,则输出为 ----"ACCESS DENIED"----。我知道因为 dll 仍然与 Windows 服务相关联所以错误来了但我想删除 dll 而无需在 5 分钟后再次运行命令。 :(

最佳答案

批处理方式

:Repeat
del "del /q E:\MyWinService\*"
if exist "E:\MyWinService\sampledll.dll" goto Repeat

关于windows - 如何在 DOS/win 命令提示符/windows 批处理文件中停止 windows 服务后删除 dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14480331/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com