winrar 未正确关闭?
我有一个由 Windows 任务调度程序每周运行一次的脚本:
for /f "delims==" %%D in ('DIR D:\scripts /A /B /S') do ( "C:\Program Files \WinRAR\WinRAR.EXE" a -agyyyy-MM-dd -r "c:\backup\scripts.rar" "%%D" )
由bat 文件生成。我的问题是在这个bat文件运行并完成之后,我在我的Windows任务管理器中查看仍然有大约10个winrar.exe在运行,这是否意味着我的脚本/bat没有正确关闭winrar?我在脚本的最后遗漏了一些东西吗?
I have this script that runs by a windows task scheduler once a week:
for /f "delims==" %%D in ('DIR D:\scripts /A /B /S') do ( "C:\Program Files\WinRAR\WinRAR.EXE" a -agyyyy-MM-dd -r "c:\backup\scripts.rar" "%%D" )
by a bat file. My question is after this bat file runs and completes, I look in my windows task manager i still have around 10 winrar.exe running, does it mean that my script/bat is not closing winrar correctly? am i missing something at the end of the script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用命令行版本
rar.exe
可以解决这个问题。Using the command-line version,
rar.exe
, will remove this problem.