Skip to content

Instantly share code, notes, and snippets.

@hiddenillusion
Forked from mubix/schtaskmod.ps1
Created June 7, 2017 12:15
Show Gist options
  • Save hiddenillusion/82f6ec2632336f029430630aa08f0e3d to your computer and use it in GitHub Desktop.
Save hiddenillusion/82f6ec2632336f029430630aa08f0e3d to your computer and use it in GitHub Desktop.
Modify Scheduled Task
Get-ScheduledTask -TaskName 'XblGameSaveTaskLogon' | % { $_.Actions += New-ScheduledTaskAction -Execute 'calc.exe'; Set-ScheduledTask -TaskPath $_.TaskPath -TaskName $_.TaskName -Action $_.Actions }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment