5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows7で指定した時刻にコマンドを実行するには

Posted at

タスクの登録

schtasks /create /tn タスク名 /sd 開始日<yyyy/MM/dd形式> /st 開始時刻<hh:MM:ss形式> /sc once /tr 実行プログラムパス

タスクの削除

schtasks /delete /tn タスク名

タスクの登録/メモ帳を起動する場合

schtasks /create /tn notepad /sd 12/13/2014 /st 15:32 /sc once /tr notepad

タスクの削除/メモ帳を起動する場合

schtasks /delete /tn notepad
5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?