WSUS: PowerShell: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) K |
Admin (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
− | == Get Windows Update ID | + | == Get Windows Update ID == |
<source lang="powershell"> | <source lang="powershell"> | ||
− | Function Get- | + | Function Get-WSUSUpdateInfo { |
[CmdletBinding()] | [CmdletBinding()] | ||
Zeile 51: | Zeile 51: | ||
== Remove Windows Update from WSUS == | == Remove Windows Update from WSUS == | ||
+ | <source lang="powershell"> | ||
+ | Function Remove-UpdateFromWSUS { | ||
+ | [CmdletBinding()] | ||
+ | |||
+ | param ( | ||
+ | [Parameter(Mandatory=$false)] | ||
+ | [String]$WSUSServer = "localhost", | ||
+ | |||
+ | [Parameter(Mandatory=$false)] | ||
+ | [Int32]$PortNumber = 8530, | ||
+ | |||
+ | [Parameter(Mandatory=$false)] | ||
+ | [Boolean]$useSecureConnection = $False, | ||
+ | |||
+ | [Parameter(Mandatory=$false)] | ||
+ | [String]$KB = "", | ||
+ | |||
+ | [Parameter(Mandatory=$false)] | ||
+ | [String]$RemoveUpdateID = "" | ||
+ | ) | ||
+ | |||
+ | Process { | ||
+ | # Load .NET assembly | ||
+ | [void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | ||
+ | $WSUS = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($WSUSServer,$False,$PortNumber) | ||
+ | Write-Host "Connected sucessfully" -foregroundcolor "Green" | ||
+ | |||
+ | #UpdateID (GUID of the update) to delete | ||
+ | If (!$RemoveUpdateID) { | ||
+ | $IDOfUpdateToRemove = ($WSUS.GetUpdates() | ? {$_.Title -match $KB}).Id.UpdateId.ToString() | ||
+ | $RemoveUpdateID = $IDOfUpdateToRemove | ||
+ | } | ||
+ | |||
+ | $updatescope = New-Object Microsoft.UpdateServices.Administration.UpdateScope | ||
+ | $u=$WSUS.GetUpdates($updatescope) | ||
+ | |||
+ | Foreach ($u1 in $u) { | ||
+ | $a=New-Object Microsoft.UpdateServices.Administration.UpdateRevisionId | ||
+ | $a=$u1.id | ||
+ | |||
+ | If ($a.UpdateId -eq $RemoveUpdateID) { | ||
+ | Write-Host "Deleting update " $a.UpdateId "..." | ||
+ | $WSUS.DeleteUpdate($a.UpdateId) | ||
+ | } | ||
+ | } | ||
+ | |||
+ | trap { | ||
+ | write-host "Error Occurred" | ||
+ | write-host "Exception Message: " | ||
+ | write-host $_.Exception.Message | ||
+ | write-host $_.Exception.StackTrace | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
Zeile 59: | Zeile 114: | ||
* Change the Approval-Status to "Not Approved" | * Change the Approval-Status to "Not Approved" | ||
[[Datei:Wsus ps solution.png]] | [[Datei:Wsus ps solution.png]] | ||
+ | |||
+ | |||
+ | |||
+ | |||
Version vom 4. April 2018, 14:22 Uhr
Get Windows Update ID
Function Get-WSUSUpdateInfo { [CmdletBinding()] param ( [Parameter(Mandatory=$false)] [String]$WSUSServer = "localhost", [Parameter(Mandatory=$false)] [Int32]$PortNumber = 8530, [Parameter(Mandatory=$false)] [Boolean]$useSecureConnection = $False, [Parameter(Mandatory=$false)] [String]$KB = "" ) Process { [void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") $WSUS = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($WSUSServer,$False,$PortNumber) #Get all updates $updates = $WSUS.GetUpdates() If ($KB) { $UpdateSearched = ($Updates | ? {$_.Title -match $KB}) New-Object PSObject -Property @{ Id = $UpdateSearched.Id.UpdateId.ToString() Title = $UpdateSearched.Title Source = $UpdateSearched.UpdateSource.ToString() } } Else { #List every update and output some basic info about it ForEach ($update in $updates) { New-Object PSObject -Property @{ Id = $update.Id.UpdateId.ToString() Title = $update.Title Source = $update.UpdateSource.ToString() } } } } }
Remove Windows Update from WSUS
Function Remove-UpdateFromWSUS { [CmdletBinding()] param ( [Parameter(Mandatory=$false)] [String]$WSUSServer = "localhost", [Parameter(Mandatory=$false)] [Int32]$PortNumber = 8530, [Parameter(Mandatory=$false)] [Boolean]$useSecureConnection = $False, [Parameter(Mandatory=$false)] [String]$KB = "", [Parameter(Mandatory=$false)] [String]$RemoveUpdateID = "" ) Process { # Load .NET assembly [void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") $WSUS = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($WSUSServer,$False,$PortNumber) Write-Host "Connected sucessfully" -foregroundcolor "Green" #UpdateID (GUID of the update) to delete If (!$RemoveUpdateID) { $IDOfUpdateToRemove = ($WSUS.GetUpdates() | ? {$_.Title -match $KB}).Id.UpdateId.ToString() $RemoveUpdateID = $IDOfUpdateToRemove } $updatescope = New-Object Microsoft.UpdateServices.Administration.UpdateScope $u=$WSUS.GetUpdates($updatescope) Foreach ($u1 in $u) { $a=New-Object Microsoft.UpdateServices.Administration.UpdateRevisionId $a=$u1.id If ($a.UpdateId -eq $RemoveUpdateID) { Write-Host "Deleting update " $a.UpdateId "..." $WSUS.DeleteUpdate($a.UpdateId) } } trap { write-host "Error Occurred" write-host "Exception Message: " write-host $_.Exception.Message write-host $_.Exception.StackTrace } } }
Error: Cannot Delete RevisionID: XXXX Because it is still deployed to a Non DSS Target Group
Solution
- Change the Approval-Status to "Not Approved"