为什么无法使用任务调度程序重新启动计算机?

时间:2017-09-26 20:51:45

标签: powershell scheduled-tasks

我现在正在使用Windows 10。我在C:\ Users \ luke \ Documents \ 04_Stop_local.ps1中有这些脚本:

Send-MailMessage -To "luke@myluke.com" -From "luke@myluke.com" -Subject "Rebooting your laptop" -SmtpServer "smtp.myluke.com"
Restart-Computer -computerName lukeX1 -force

当我在PowerShell ISE,PowerShell命令窗口中运行这些脚本时,我可以重新启动名为lukeX1的笔记本电脑,并且可以在windows命令中运行它:

"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -ExecutionPolicy Bypass C:\Users\luke\Documents\04_Stop_local.ps1

但是当我尝试在我的任务调度程序中安排它时。只需发送通知电子邮件(第1步)。笔记本电脑没有重启......

为什么呢?我使用了相同的登录名(用户)。

提前致谢!

0 个答案:

没有答案