anyone know of a way to disable a scheduled task t...
# _general
n
anyone know of a way to disable a scheduled task through group policy or the registry? i figure if i can do it through registry i can just push out the change through GP preferences... i don't think there is b/c i 've researched it in the past and didn't find a way. not sure if something has changed..
k
You can use Powershell?
r
you could write a powershell to do it, then push that out through GPO
k
Too slow @Ryan Gallier 😛
r
5ms too slow. lol
💯 2
n
yeah, i was trying to avoid that. i'll probably just do it on the master images
k
If PoSH is undesirable for you, you can use the schtasks command. If you want to avoid a programmatic approach entirely, you could manipulate
HKLM\Software\Microsoft\Windows NT\CurrentVersion\Schedule
and
%SystemRoot%\System32\Tasks
via Group Policy Preferences, but that feels gross and clunky. Maybe only use it as a stop gap until you can crack the image open, like you said.
m
ControlUp in the mix? There you can use the Controllers feature and manipulate the registry Kalon mentioned on multiple machines and fix it in the GoldenMaster without hassle…
n
@Kalon Dillon - thanks i'll check that out.