- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/スクリプト/PowerShellスクリプトをタスクスケジューラに登録 へ行く。
- 1 (2016-04-06 (水) 01:02:05)
PowerShellスクリプトをタスクスケジューラに登録
タスクスケジューラに登録する際の注意点
- "プログラム"に直接PSスクリプトを指定せず、以下のようにpowershell.exeに引数として渡すように指定する。
- [プログラム] %SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe
- [引数の追加] -Command C:\bat\test.ps1
参考
http://www.atmarkit.co.jp/ait/articles/1412/03/news125.html
リターンコード
- 正常終了する場合はexit 0を記述する。
- 異常終了する場合はexit 1(0以外)を記述する。
イベントログ
- Microsoft->Windows->TaskScheduler
PS> Get-WinEvent Microsoft-Windows-TaskScheduler/Operational -MaxEvents 3
ウィンドウを隠す
PowerShell.exe -windowstyle hidden { your script.. }