forked from kliebenberg/PSWindowsUpdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-WUUninstall.ps1
74 lines (57 loc) · 1.55 KB
/
Get-WUUninstall.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
Function Get-WUUninstall
{
<#
.SYNOPSIS
Uninstall update.
.DESCRIPTION
Use Get-WUUninstall to uninstall update.
.PARAM KBArticleID
Update ID that will be uninstalled.
.EXAMPLE
Try to uninstall update with specific KBArticleID = KB958830
Get-WUUninstall -KBArticleID KB958830
.NOTES
Author: Michal Gajda
Blog : http://commandlinegeeks.com/
.LINK
http://gallery.technet.microsoft.com/scriptcenter/2d191bcd-3308-4edd-9de2-88dff796b0bc
.LINK
Get-WUInstall
Get-WUList
#>
[CmdletBinding(
SupportsShouldProcess=$True,
ConfirmImpact="High"
)]
Param
(
[parameter(Mandatory=$true)]
[Alias("HotFixID")]
[String]$KBArticleID
)
Begin
{
$User = [Security.Principal.WindowsIdentity]::GetCurrent()
$Role = (New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)
if(!$Role)
{
Write-Warning "To perform some operations you must run an elevated Windows PowerShell console."
} #End If !$Role
}
Process
{
If ($pscmdlet.ShouldProcess($Env:COMPUTERNAME,"Uninstall update $KBArticleID"))
{
If($KBArticleID)
{
$KBArticleID = $KBArticleID -replace "KB", ""
wusa /uninstall /kb:$KBArticleID
} #End If $KBArticleID
Else
{
wmic qfe list
} #End Else $KBArticleID
} #End If $pscmdlet.ShouldProcess($Env:COMPUTERNAME,"Uninstall update $KBArticleID")
} #End Process
End{}
} #In The End :)