Windows Task for restart if user not logged in

2019-08-22 08:07发布

问题:

I'm trying to create scheduled task for Windows reboot, which is executed if any user is not logged in. If user is logged in locally or over RDP, the machine should not be restarted.

For unconditional restart, I have task in Task Scheduler with: Action: "Start a program", Program/script: "powershell", Add arguments: "restart-computer -force"

For conditional restart I have powershell code:

$ErrorActionPreference = "Continue"
$userstatus = quser /server:'localhost'
if(!$userstatus){
    Restart-Computer -Force
    }
else{
    exit
    }

I can get the conditional restart working fine when I save the script as .ps1 file and add the filepath to the schedule as argument. I need the conditional restart with several desktops and I would like to avoid saving the .ps1 file locally for each machine. Is it possible to pass the entire script as argument?

回答1:

Your logic's a bit off. If you plan on creating the scheduled task for each PC, it should look something like this:

$Users = quser.exe
If ($Users -match 'No\sUser') { Restart-Computer -Force }

From here, because of the syntax, you should encode it, then you could utilize schtasks.exe to create your task:

[Convert]::ToBase64String(
    [Text.Encoding]::Unicode.GetBytes(
        "If(@(quser.exe) -match 'no\suser'){Restart-Computer -Force}"
    )
)

Output:

SQBmACAAKABAACgAcQB1AHMAZQByAC4AZQB4AGUAKQAgAC0AbQBhAHQAYwBoACAAJwBuAG8AXABzAHUAcwBlAHIAJwApAHsAUgBlAHMAdABhAHIAdAAtAEMAbwBtAHAAdQB0AGUAcgAgAC0ARgBvAHIAYwBlAH0A

schtasks.exe /Create /TN AutoRestart /SC DAILY /ST 20:00 /RU SYSTEM /TR "powershell.exe -EncodedCommand SQBmACAAKABAACgAcQB1AHMAZQByAC4AZQB4AGUAKQAgAC0AbQBhAHQAYwBoACAAJwBuAG8AXABzAHUAcwBlAHIAJwApAHsAUgBlAHMAdABhAHIAdAAtAEMAbwBtAHAAdQB0AGUAcgAgAC0ARgBvAHIAYwBlAH0A"