2013-03-20 51 views
1

設置我正在從命令行運行schtask &它工作正常,但我得到一個錯誤:「帳戶信息無法設置」,當試圖通過PHP運行它。我的IIS版本爲6.0schtasks警告帳戶信息不能從php代碼

警告:計劃任務「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" 

回答

0

對我來說,我只是啓用Task Scheduler服務。下面是對我有用的東西:

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