LockWorkStation no funciona en Powershell a través del Programador de tareas

LockWorkStation no funciona en Powershell a través del Programador de tareas

Estoy escribiendo un script que recibe comandos de Amazon Echo unidos por IFTTT.

El proceso es el siguiente:

  • Le pido a Alexa que active "X"
  • IFTTT lo envía al subprograma de Dropbox
  • Dropbox escribe un archivo de texto llamado "X" en un directorio
  • Un script de Powershell programado para tareas se repite cada 5 segundos para detectar cualquier archivo en ese directorio
  • El script ejecuta comandos según el nombre del archivo

Aquí hay un breve ejemplo del guión:

$SearchDirectory = "C:\Users\Username\Dropbox\IFTTT"
$SleepTime = 5
$Status = "none"

Remove-Item -Path "$SearchDirectory\shutdown.txt" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$SearchDirectory\restart.txt" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$SearchDirectory\sleep.txt" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$SearchDirectory\lock.txt" -Force -ErrorAction SilentlyContinue

While ($True) {
  Do {
    Start-Sleep -Seconds $SleepTime

    if (Test-Path -Path "$SearchDirectory\shutdown.txt") { $Status = "shutdown" }
    if (Test-Path -Path "$SearchDirectory\restart.txt") { $Status = "restart" }
    if (Test-Path -Path "$SearchDirectory\sleep.txt") { $Status = "sleep" }
    if (Test-Path -Path "$SearchDirectory\lock.txt") { $Status = "lock" }
  }
  Until ($Status -ne "none")

  switch ($Status) {
    "shutdown" { Remove-Item -Path "$SearchDirectory\shutdown.txt"; Stop-Computer -Force; break }
    "restart" { Remove-Item -Path "$SearchDirectory\restart.txt"; Restart-Computer -Force; break }
    "sleep" { Remove-Item -Path "$SearchDirectory\sleep.txt"; Suspend-Computer; break}
    "lock" { Remove-Item -Path "$SearchDirectory\lock.txt"; Invoke-Command {rundll32.exe user32.dll,LockWorkStation}; break}
    "none" { break }
  }

  $Status = "none"
}

Todos los comandos anteriores funcionan bien, excepto el rundll32.exe user32.dll,LockWorkStationque parece funcionar bien en la consola, pero no a través de una secuencia de comandos en el Programador de tareas.

No veo el problema, ¿por qué no funciona?

información relacionada