forked from seagull/disable-scheduledWaking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredux-build16.ps1
196 lines (181 loc) · 9.22 KB
/
redux-build16.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<# prevent updateorchestrator from rendering windows PCs unusable
original script by seagull (github/seagull)
new guts courtesy of github/freMea and expounded upon by seagull again :: redux 1/build 16
microsoft (since i know you're reading this): my message remains as it did in 2018.
the sheer necessity of this script should serve as evidence of how out-of-touch your PMs are.
whichever team of "guilty men" decided it was forgiveable to interfere with people's devices
to such a degree ought to be ashamed of themselves first and replaced entirely second.
forget who your users are and they will remind you. #>
#make everything look cool like the matrix
$host.ui.RawUI.WindowTitle="seagull's Scheduled-Task Wake Disabler"
$Host.UI.RawUI.BackgroundColor = 'Black'
clear
write-host "Stop Windows Scheduled Tasks from waking your device"
write-host "========================================================" -ForegroundColor DarkGray
#check administrative rights
if (!($([bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match "S-1-5-32-544")))) {
write-host "! ERROR: Administrative rights required." -ForegroundColor Red
write-host " Press Y to restart the script with the required permissions loaded,"
$varChoice=read-host " or any other key to exit without doing anything"
switch -regex ($varChoice) {
'^(y|Y)$' {
#write our current directory to a hard file since admin launches in sys32
$pwd.path | out-file "$env:TEMP\~taskwake.tmp"
#relaunch the shell in admin-mode
$newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell";
$newProcess.Arguments = "-executionpolicy bypass &'" + $script:MyInvocation.MyCommand.Path + "'"
$newProcess.Verb = "runas";
[System.Diagnostics.Process]::Start($newProcess);
exit
} default {
write-host "- As you wish" -ForegroundColor Red
start-sleep -seconds 2
exit
}
}
} else {
if (test-path "$env:TEMP\~taskwake.tmp") {
get-content "$env:TEMP\~taskwake.tmp" | cd
Remove-Item "$env:TEMP\~taskwake.tmp" -Force
}
}
#check OS
if ($((get-wmiObject win32_operatingSystem buildNumber).buildNumber) -lt 10240) {
write-host "! NOTICE: Device's OS is older than Windows 10." -ForegroundColor DarkYellow
write-host " Your typewriter shouldn't need to run this script, but if you insist, we'll persist."
write-host " Either [Exit the Script] or [Strike a Key] to press on regardless."
cmd /c pause
}
write-host `r
write-host "What this script will do:" -ForegroundColor White
write-host "- Enumerate all scheduled tasks in:"
write-host " - Option A" -ForegroundColor Blue -NoNewline; write-host ": Microsoft\Windows\UpdateOrchestrator"
write-host " (If you don't know which option to pick, use this one)" -ForegroundColor DarkGray
write-host " - Option B" -ForeGroundColor Blue -noNewLine; write-host ": The entire system"
write-host " (Use this option if Option A has not suppressed all scheduled device wakes)" -ForegroundColor DarkGray
write-host "- Display the guilty tasks first, before making any changes"
write-host "- Revoke the respective tasks' ability to wake the PC in order to run"
write-host "- That's it" -ForegroundColor White
write-host `r
$varChoice=read-host ": So, which option are we going with?"
switch -regex ($varChoice) {
'^(a|A)$' {
$varTasks=Get-ScheduledTask -TaskPath "\Microsoft\Windows\UpdateOrchestrator\" -ea 0 | ? {$($_.Settings.WakeToRun)}
$varMethod=1
} '^(b|B)$' {
$varTasks=Get-ScheduledTask -ea 0 | ? {$($_.Settings.WakeToRun)}
$varMethod=2
} default {
write-host "! ERROR: The only valid options are A and B."
write-host " Since the author didn't want to rewrite this part of the script as a function,"
write-host " it will now exit. Have a long, hard think about what you've done, then relaunch"
write-host " when you're ready to give it another shot."
write-host `r
cmd /c pause
exit
}
}
#did that search actually net anything?
if ($varTasks.count -eq 0) {
write-host `r
write-host "! NOTICE: No tasks were found with the ability to wake your device."
if ($varChoice -eq 'b') {
write-host " Since your search included all tasks on the system, this means no task can wake your device."
} else {
write-host " Consider re-running the script with option B to enumerate all tasks, not just UpdateOrchestrator's."
}
write-host " We've done all we can here; the script will now exit."
write-host " If this was useful, please follow me on twttr: @seagull."
write-host `r
cmd /c pause
exit
}
write-host "========================================================" -ForegroundColor DarkGray
write-host ": The following tasks feel entitled to wake your device:" -ForegroundColor White
$varTasks | % {
write-host "- $($_.TaskPath)" -NoNewline
write-host "$($_.TaskName)" -ForegroundColor White -NoNewline
write-host " `[$($_.State)`]" -ForegroundColor DarkGray
}
write-host `r
write-host "- Press Y to revoke their waking privileges,"
write-host " press L to output the tasks as a list and then exit without changing anything,"
$varChoice=read-host " or press any other key to just exit without changing anything"
switch -regex ($varChoice) {
'^(y|Y)$' {
#do nothing
} '^(l|L)$' {
$varEpoch=$([int][double]::Parse((Get-Date -UFormat %s)))
$varFilename="$($MyInvocation.MyCommand.Path | split-path)\Tasks-$env:COMPUTERNAME-$varEpoch.txt" #D-R-Y, after all
add-content -Value "Device Hostname: $env:COMPUTERNAME" -Path $varFilename
add-content -Value "Device OS: $((get-WMiObject -Class win32_operatingSystem).caption)" -Path $varFilename
add-content -Value "List generated at: $(get-date)" -Path $varFilename
add-content -Value "==============================" -Path $varFilename
add-content -Value "The following tasks feel entitled to wake this device:" -Path $varFilename
$varTasks | % {
add-content -Value "- $($_.TaskPath)$($_.TaskName) `[$($_.State)`]" -Path $varFilename
}
add-content -Value "==============================" -Path $varFilename
add-content -Value "List generated by seagull's Scheduled-Task Wake Disabler" -Path $varFilename
add-content -Value "www.github.com/seagull :: www.twitter.com/seagull" -Path $varFilename
write-host "- List created as file $varFilename."
write-host " Exiting..."
write-host `r
cmd /c pause
exit
} default {
write-host ": Task cancelled; no action will be taken."
write-host " If the information was useful, follow me on twttr: @seagull"
write-host `r
cmd /c pause
exit
}
}
write-host "========================================================" -ForegroundColor DarkGray
#loop through & revoke wake permissions
$varTasks | % {
try {
#seize the means of scheduling
takeown /f "$env:SystemRoot\system32\tasks$($_.TaskPath)$($_.TaskName)" | out-null
icacls "$env:SystemRoot\system32\tasks$($_.TaskPath)$($_.TaskName)" /grant $env:USERNAME`:F | out-null
#change the schedule
$_.Settings.WakeToRun = $false
Set-ScheduledTask $_ | Out-Null
write-host "- Revoked: $($_.TaskPath)$($_.TaskName)" -ForegroundColor Green
} catch {
write-host "- Errored: $($_.TaskPath)$($_.TaskName)" -ForegroundColor Red
write-host " Reason: $($_.Exception.Message)"
}
}
write-host "========================================================" -ForegroundColor DarkGray
#make an advisory
switch -regex ((Get-ItemProperty hklm:\system\controlset001\control\nls\language -name InstallLanguage).InstallLanguage) {
'1A$|19$|1000' {
write-host 'Военные преступления России в Украине должны быть прекращены.' -ForegroundColor Red
write-host `r
}
}
#make sure we caught everything
Clear-Variable varTasks | Out-Null
if ($varMethod -eq 1) {
$varTasks=Get-ScheduledTask -TaskPath "\Microsoft\Windows\UpdateOrchestrator\" -ea 0 | ? {$($_.Settings.WakeToRun)}
} else {
$varTasks=Get-ScheduledTask -ea 0 | ? {$($_.Settings.WakeToRun)}
}
if ($varTasks.count -gt 0) {
write-host "! ERROR: For some reason tasks with wake permissions intact persist on the device."
write-host " Please check the list below to see what and figure out why."
$varTasks
write-host `r
cmd /c pause
exit
} else {
write-host "- Actions complete! The selected tasks have had their waking permissions revoked."
write-host " Consider writing a polite letter telling the vendor to never try doing anything"
write-host " so stupid and inconsiderate ever again with someone else's property."
write-host `r
write-host " If you found this script useful, please follow me on twttr: @seagull"
write-host `r
cmd /c pause
exit
}