web-dev-qa-db-ja.com

管理者権限でPowerShellスクリプトをスケジュールする

[._________。]どうすればよいですか?.

3
pdeva

昇格したCMDプロンプトからschtasksを使用できます。

例えば。

schtasks /create /tn "My Task Name" /ru Administrator /sc daily /sd 28/05/2011 /st 14:00 /tr "powershell.exe -noprofile -executionpolicy RemoteSigned -file %MyPATH%\MyTaskScript.ps1"

これにより、スクリプトは毎日14:00に実行されます。

2
paradroid