Want to make a script run under other credentials?
You can create a scheduled task. Which can be fired off from a menu.
The menu script is below.
it takes advantage of the cool Out-GridView command.
You can create a scheduled task. Which can be fired off from a menu.
The menu script is below.
it takes advantage of the cool Out-GridView command.
$task = $true While ($task) { Write-host "Looking up available Healthchecks" -ForegroundColor Green Clear-Variable task Get-ScheduledTask -TaskPath "\AdminTasks\" | Select TaskName, State, Description | Out-GridView -OutputMode Multiple | foreach{ if ($_) { $_ | Get-ScheduledTask | Tee-Object -Variable task | Start-ScheduledTask $task | Get-ScheduledTask } } }
No comments:
Post a Comment