从 MSBUILD 脚本运行计划任务时出错
我正在运行一个 MSBUILD 脚本,该脚本从命令行禁用和启用计划任务。 我收到以下错误。不知道“以代码 1 退出”是什么意思。当我尝试在命令提示符中复制粘贴该行时,它工作得很好。 调用,
我没有在 MSBuild 脚本中运行,该脚本又由 CruiseControl.NET SNIPPET FROM MSBUILD 文件
错误是
命令“C:\WINDOWS\system32\schtasks.exe /S servername /Change /RU SYSTEM /TN“MyScheduledtask”/DISABLE " 退出,代码为 1。
I am running a MSBUILD script which disables and enabled a scheduled task from command line.
I am getting following error. No idea, what 'exited with code 1' means. When I try to copy paste the line in command prompt, it works perfectly. I doesnot run in MSBuild script which is in turn called by CruiseControl.NET
SNIPPET FROM MSBUILD file is
ERROR is
The command "C:\WINDOWS\system32\schtasks.exe /S servername /Change /RU SYSTEM /TN "MyScheduledtask" /DISABLE" exited with code 1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的命令失败了。尝试直接在命令行中执行命令来查看错误。
如果有效,请尝试启动带有更多日志的 msbuild:
msbuild.exe [MSBuildFile.proj] /v:d
Your command is failing. Try executing the command directly in the command line to see the error.
If it works try launching msbuild with more log :
msbuild.exe [MSBuildFile.proj] /v:d