schtasks /create /f /tn "df" /tr "e:\debug\tc.exe" /sc daily /st 17:00
#在每天17點執行
#在5月15日15點執行
如果exe需要呼叫外部檔案則要設定起始目錄,不然會出錯
任務計畫——任務計畫程式庫——屬性——操作——編輯——起始於(e:\debug)——確定——確定
schtasks /run /tn "df"
schtasks /delete /tn "df" /f
設定月份
/m months 指定一年內的某月。預設是該月的第一天。
有效值: jan、feb、mar、apr、may、jun、
jul、 aug、sep、oct、nov 和 dec。萬用字元
「*」 指定所有的月。
指令碼case
schtasks /create /f /tn "df" /tr
"d:\proj\console&form\彈窗\bin\debug\tc.exe 中午了 點外賣時間到了 " /sc daily /st 11:00
schtasks /create /f /tn "df1" /tr
"d:\proj\console&form\彈窗\bin\debug\tc.exe 伺服器將到期 該續費了!!! " /sc monthly /d 11 /m jan /st 10:00:00
@schtasks /tn "df"
@schtasks /run /tn "df"
@echo 在5月15日15點執行: schtasks /create /f /tn "df" /tr
"d:\proj\console&form\彈窗\bin\debug\tc.exe 標題 內容 " /sc monthly /d 15 /m may /st 15:00:00
@echo 月份有效值: jan、feb、mar、apr、may、jun、jul、 aug、sep、oct、nov 和 dec
@echo 檢視語句: schtasks /tn "df"
@echo 執行語句: schtasks /run /tn "df"
@echo 刪除語句: schtasks /delete /tn "df" /f
@pause
windows 計畫任務
schtasks 安排命令和程式,使其定期執行或在指定時間執行。向計畫中新增任務和從中刪除任務 根據需要啟動和停止任務以及顯示和更改計畫的任務 1.create schtasks create sc scheduletype tn taskname tr taskrun s computer u d...
windows計畫任務
1 windows server 2008 計畫任務在 配置?2 windows server 2008 可以配置每分鐘或是每小時執行我的任務嗎?答案是 可以!首先windows server 2008不同於其他伺服器作業系統和windows server 2003有著很大的區別,計畫任務的名稱是 ...
Windows計畫任務SCHTASKS
建立計畫的任務 語法 schtasks create sc scheduletype tn taskname tr taskrun s computer u domain user p password ru rp password mo modifier d day day.m month mon...