1

我正在尝试从命令行运行 schtask,它可以正常工作,但是在尝试通过 PHP 运行时出现错误:“无法设置帐户信息”。我的 IIS 版本是 6.0

警告:已创建计划任务“BuildInstaller_6”,但可能无法运行,因为无法设置帐户信息。

我正在运行的命令行是:

schtasks /create /tn "BuildInstaller31" /tr "E:\\TCS\\build\\scripts_5.2\\build.bat" /sc ONCE /st 13:25:30 /RU "TCS-SJCBUILD\\Administrator" /RP "xxxx"
4

1 回答 1

0

对我来说,我只启用任务计划程序服务。以下是对我有用的:

FOR /F %%X IN (C:\list of workstations.txt) DO (
sc %%X config "Service name" start= auto
sc %%X start "Service Name"
schtasks /Create /TN "task name" /TR "path to task" /sc "daily" /st "time" /sd "date I want to start the task" /s \\%%X /U "username" /P "password"
pause
于 2013-04-25T15:13:47.980 回答