我真的需要帮助从任务计划程序运行.bat
文件。
从位置运行或从任务计划程序单击Run
时运行。
在Run only when user is logged on
/ Run when user is logged on or not
用户是我的本地帐户也是管理员
.bat
文件存储在C:\Users\user1\eclipse-workspace\abc\
中,这就是我为Program/Script
标签中的Settings
下的Actions
填写的内容。
我取消选中Conditions
标签下的所有选项,(尝试检查power
选项,仍然无法正常工作)。
我希望将此选项设置为:: Run when user is logged on or not
。
我想知道我错过了什么,或者我在哪里出错。
.bat文件代码是:
cd C:\Users\user1\eclipse-workspace\abc
set ProjectPath=C:\Users\user1\eclipse-workspace\abc
echo %ProjectPath%
set classpath=%ProjectPath%\bin;%ProjectPath%\Lib\*
echo %classpath%
java org.testng.TestNG %ProjectPath%\testng.xml
pause
答案 0 :(得分:0)
这个救了我:
pushd \\network_drive_name
作为第一行代码popd \\network_drive_name