Misc/KVWindowsUpdate.psm1
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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
$regPath = 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' $regPathAU = 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' if (-not (Test-Path -path $regPath)) { New-Item $regPath -ItemType Directory } if (-not (Test-Path -path $regPathAU)) { New-Item $regPathAU -ItemType Directory } function Set-NonAdminsToApproveUpdate { param ( [Parameter()] [bool]$Enabled = $false ) if ($Enabled) { $value = 1 } else { $value = 0 } $regitemConfigured = testNonAdminsToApproveUpdatesExists if ($regitemConfigured) { Set-ItemProperty -Path $regPath -Name ElevateNonAdmins -Value $value -Force } else { New-ItemProperty -Path $regPath -Name ElevateNonAdmins -PropertyType DWORD -Value $value -Force } } function testNonAdminsToApproveUpdatesExists { try { Get-ItemProperty -Path $regPath -Name ElevateNonAdmins -ErrorAction Stop return $true } catch { return $false } } function Get-NonAdminsToApproveUpdate { $ElevateNonAdmins = Get-ItemProperty -Path $regPath -Name ElevateNonAdmins -ErrorAction SilentlyContinue return $ElevateNonAdmins } function Set-UpdateTargetGroup { param ( [Parameter(Mandatory=$true)] [String]$Name ) $regItemConfigured = testUpdateTargetGroupExists if ($regItemConfigured) { Set-ItemProperty -Path $regPath -Name TargetGroup -Value $Name -Force Set-ItemProperty -Path $regPath -Name TargetGroupEnabled -Value 1 -Force } else { $null = New-ItemProperty -Path $regPath -Name TargetGroupEnabled -PropertyType DWORD -Value 1 -Force $null = New-ItemProperty -Path $regPath -Name TargetGroup -PropertyType String -Value $Name -Force } } function testUpdateTargetGroupExists { try { Get-ItemProperty -Path $regPath -Name TargetGroup -ErrorAction Stop return $true } catch { return $false } } function Get-UpdateTargetGroup { $targetGroup = Get-ItemProperty -Path $regPath -Name TargetGroup -ErrorAction SilentlyContinue if ($targetGroup) { $registryPath = $targetGroup.PSPath.Replace('Microsoft.PowerShell.Core\Registry::','') } else { $registryPath = '' } return ( [PSCustomObject]@{ TargetGroup = $targetGroup.TargetGroup RegistryPath = $registryPath } ) } function Remove-UpdateTargetGroup { $regItemConfigured = testUpdateTargetGroupExists if ($regItemConfigured) { try { Get-Item -Path $regPath -ErrorAction Stop | Remove-ItemProperty -Name TargetGroup Get-Item -Path $regPath -ErrorAction Stop | Remove-ItemProperty -Name TargetGroupEnabled } catch { $Err = $_ Write-Error $Err } } } function Set-UpdateServer { param ( [Parameter(Mandatory=$true)] [string]$URL, [Parameter()] [bool]$Enabled = $true ) $regItemConfigured = testUpdateServer if ($regItemConfigured) { Set-ItemProperty -Path $regPath -Name WUServer -Value $URL -Force Set-ItemProperty -Path $regPath -Name WUStatusServer -Value $URL -Force if ($Enabled) { Set-ItemProperty -Path $regPathAU -Name UseWUServer -Value 1 -Force } else { Set-ItemProperty -Path $regPathAU -Name UseWUServer -Value 0 -Force } } else { $null = New-ItemProperty -Path $regPath -Name WUServer -PropertyType String -Value $URL -Force $null = New-ItemProperty -Path $regPath -Name WUStatusServer -PropertyType String -Value $URL -Force if ($Enabled) { $null = New-ItemProperty -Path $regPathAU -Name UseWUServer -PropertyType DWORD -Value 1 -Force } else { $null = New-ItemProperty -Path $regPathAU -Name UseWUServer -PropertyType DWORD -Value 0 -Force } } } function testUpdateServer { try { Get-ItemProperty -Path $regPath -Name WUServer -ErrorAction Stop Get-ItemProperty -Path $regPath -Name WUStatusServer -ErrorAction Stop Get-ItemProperty -Path $regPathAU -Name UseWUServer -ErrorAction Stop return $true } catch { return $false } } function Get-UpdateServer { $UpdateServer = Get-ItemProperty -Path $regPath -Name WUServer -ErrorAction SilentlyContinue $UpdateServerEnabled = Get-ItemProperty -Path $regPathAU -Name UseWUServer -ErrorAction SilentlyContinue if ($UpdateServer) { $registryPath = $UpdateServer.PSPath.Replace('Microsoft.PowerShell.Core\Registry::','') } else { $registryPath = '' } if ($UpdateServerEnabled.UseWUServer -eq 1) { $Value = $true } else { $Value = $false } return ( [PSCustomObject]@{ WSUSServer = $UpdateServer.WUServer RegistryPath = $registryPath Enabled = $Value } ) } function Remove-UpdateServer { try { Get-Item -Path $regPath -ErrorAction Stop | Remove-ItemProperty -Name WUServer Get-Item -Path $regPathAU -ErrorAction Stop | Remove-ItemProperty -Name UseWUServer Get-Item -Path $regPath -ErrorAction Stop | Remove-ItemProperty -Name WUStatusServer } catch { $err = $_ Write-Error $err } } function Get-UpdateOption { $AUOption = Get-ItemProperty -Path $regPathAU -Name AUOptions -ErrorAction SilentlyContinue if ($AUOption) { $registryPath = $AUOption.PSPath.Replace('Microsoft.PowerShell.Core\Registry::','') } else { $registryPath = '' } switch ($AUOption.AUOptions) { 2 { $value = 'NotifyBeforeDownload'; break } 3 { $value = 'AutoDownloadAndNotifyForInstall'; break } 4 { $value = 'AutoDownloadAndScheduleInstallation'; break } 5 { $value = 'UsersCanConfigureAutomaticUpdates'; break } default { $value = 'There is no automatic update option configured' } } return ( [PSCustomObject]@{ AutoUpdateOption = $value RegistryPath = $registryPath } ) } function testUpdateOptionsExist { try { Get-ItemProperty -Path $regPathAU -Name AUOptions -ErrorAction Stop return $true } catch { return $false } } function Set-UpdateOption { param ( [Parameter(Mandatory=$true)] [ValidateSet('NotifyBeforeDownload','AutoDownloadAndNotifyForInstall','AutoDownloadAndScheduleInstallation','UsersCanConfigureAutomaticUpdates')] [string]$Setting ) switch ($Setting) { 'NotifyBeforeDownload' { $value = 2; break } 'AutoDownloadAndNotifyForInstall' { $value = 3; break } 'AutoDownloadAndScheduleInstallation' { $value = 4; break } 'UsersCanConfigureAutomaticUpdates' { $value = 5; break } } $regItemConfigured = testUpdateOptionsExist if ($regItemConfigured) { Set-ItemProperty -Path $regPathAU -Name AUOptions -Value $value -Force } else { $null = New-ItemProperty -Path $regPathAU -Name AUOptions -PropertyType DWORD -Value $value -Force } } function Remove-UpdateOption { $regItemConfigured = testUpdateOptionsExist if ($regItemConfigured) { try { Get-Item -Path $regPathAU -ErrorAction Stop | Remove-ItemProperty -Name AUOptions } catch { $err = $_ Write-Error $err } } } function Set-UpdateScheduledInstallDay { param ( [parameter(Mandatory=$true)] [ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')] [string]$Day ) switch ($day) { 'Monday' { $value = 2; break } 'Tuesday' { $value = 3; break } 'Wednesday' { $value = 4; break } 'Thursday' { $value = 5; break } 'Friday' { $value = 6; break } 'Saturday' { $value = 7; break } 'Sunday' { $value = 1; break } 'All' { $value = 0; break } } if ((Get-UpdateOption).AutoUpdateOption -eq 'AutoDownloadAndScheduleInstallation') { if (testUpdateScheduledInstallDayExists) { Set-ItemProperty -Path $regPathAU -Name ScheduledInstallDay -Value $value -Force } else { $null = New-ItemProperty -Path $regPathAU -Name ScheduledInstallDay -PropertyType DWORD -Value $value -Force } } else { Write-Error 'This only works if Update Option is set to AutoDownloadAndScheduleInstallation' } } function Get-UpdateScheduledInstallDay { $updateScheduleInstallDay = Get-ItemProperty -Path $regPathAU -Name ScheduledInstallDay -ErrorAction SilentlyContinue if ($updateScheduleInstallDay) { $registryPath = $updateScheduleInstallDay.PSPath.Replace('Microsoft.PowerShell.Core\Registry::','') } else { $registryPath = '' } switch ($updateScheduleInstallDay.ScheduledInstallDay) { 0 { $value = 'All' } 1 { $value = 'Sunday' } 2 { $value = 'Monday' } 3 { $value = 'Tuesday' } 4 { $value = 'Wednesday' } 5 { $value = 'Thursday' } 6 { $value = 'Friday' } 7 { $value = 'Saturday' } default { $value = 'There is no scheduled install day configured' } } return ( [PSCustomObject]@{ ScheduledUpdateInstallDay = $value RegistryPath = $registryPath } ) } function testUpdateScheduledInstallDayExists { try { Get-ItemProperty -Path $regPathAU -Name ScheduledInstallDay -ErrorAction Stop return $true } catch { return $false } } function Remove-UpdateScheduledInstallDay { if (testUpdateScheduledInstallDayExists) { try { Get-Item -Path $regPathAU -ErrorAction Stop | Remove-ItemProperty -Name ScheduledInstallDay } catch { $Err = $_ Write-Error $Err } } } function Set-UpdateScheduledInstallHour { param ( [Parameter(Mandatory=$true)] [ValidateSet(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23)] [int]$Hour ) if (testUpdateScheduledInstallHourExists) { Set-ItemProperty -Path $regPathAU -Name ScheduledInstallTime -Value $Hour -Force } else { $null = New-ItemProperty -Path $regPathAU -Name ScheduledInstallTime -PropertyType DWORD -Value $Hour -Force } } function Get-UpdateScheduledInstallHour { $updateScheduleInstallHour = Get-ItemProperty -Path $regPathAU -Name ScheduledInstallTime -ErrorAction SilentlyContinue if ($updateScheduleInstallHour) { $registryPath = $updateScheduleInstallHour.PSPath.Replace('Microsoft.PowerShell.Core\Registry::','') } else { $registryPath = '' } return ( [PSCustomObject]@{ ScheduledUpdateInstallHour = $updateScheduleInstallHour.ScheduledInstallTime RegistryPath = $registryPath } ) } function testUpdateScheduledInstallHourExists { try { Get-ItemProperty -Path $regPathAU -Name ScheduledInstallTime -ErrorAction Stop return $true } catch { return $false } } function Remove-UpdateScheduledInstallHour { if (testUpdateScheduledInstallHourExists) { try { Get-Item -Path $regPathAU -ErrorAction Stop | Remove-ItemProperty -Name ScheduledInstallTime } catch { $Err = $_ Write-Error $Err } } } function Set-AutomaticUpdate { param ( [Parameter()] [bool]$Enabled = $true ) if ($Enabled) { $value = 0 } else { $value = 1 } $regitemConfigured = testAutomaticUpdateExists if ($regitemConfigured) { Set-ItemProperty -Path $regPathAU -Name NoAutoUpdate -Value $value -Force } else { $null = New-ItemProperty -Path $regPathAU -Name NoAutoUpdate -PropertyType DWORD -Value $value -Force } } function Get-AutomaticUpdate { $automaticUpdate = Get-ItemProperty -Path $regPathAU -Name NoAutoUpdate -ErrorAction SilentlyContinue if ($automaticUpdate) { $registryPath = $automaticUpdate.PSPath.Replace('Microsoft.PowerShell.Core\Registry::','') } else { $registryPath = '' } if ($automaticUpdate.NoAutoUpdate -eq 0) { $value = $true } else { $value = $false } return ( [PSCustomObject]@{ AutomaticUpdateEnabled = $value RegistryPath = $registryPath } ) } function Remove-AutomaticUpdate { $regitemConfigured = testAutomaticUpdateExists if ($regitemConfigured) { Get-Item -Path $regPathAU | Remove-ItemProperty -Name NoAutoUpdate } } function testAutomaticUpdateExists { try { Get-ItemProperty -Path $regPathAU -Name NoAutoUpdate -ErrorAction Stop return $true } catch { return $false } } Export-ModuleMember -Function *-* |