-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUninstall.psm1
81 lines (48 loc) · 1.77 KB
/
Uninstall.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
<#PSScriptInfo
.VERSION 1.0
.GUID 27c80b64-2c07-43ee-ae20-4d94965295eb
.AUTHOR Dima Stadub
.COMPANYNAME
.COPYRIGHT
.TAGS uninstall msiexec
.LICENSEURI
.PROJECTURI https://github.com/stadub/PowershellScripts
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
#>
<#
.SYNOPSIS
Uninstall Application
.DESCRIPTION
Allows to Uninstall Application from system
.EXAMPLE
Uninstall-Application "Microsoft*4.5*"
.PARAMETER SoftwareName
Application name(Or application name format)
#>
function Uninstall-Application {
param(
[Parameter(Mandatory=$True, ValueFromPipeline=$True,
ValueFromPipelineByPropertyName=$True, HelpMessage='Enter the Application to uninstall.')]
[Alias('Application')]
[string] $SoftwareName
)
$uninstallX86RegPath="HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
$uninstallX64RegPath="HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall"
$uninstallString=""
$uninstall32 = gci $(uninstallX64RegPath) | foreach { gp $_.PSPath } | ? { $_ -like $SoftwareName } | select UninstallString
$uninstall64 = gci $(uninstallX86RegPath) | foreach { gp $_.PSPath } | ? { $_ -like $SoftwareName } | select UninstallString
if($uninstall64) {$uninstallString=$uninstall64;}
if($uninstall32) {$uninstallString=$uninstall32;}
if(!$uninstallString) {
Write-Error "Application was is not found"
}
$uninstallString = $uninstallString.UninstallString -Replace "msiexec.exe","" -Replace "/I","" -Replace "/X",""
$uninstallString = $uninstallString.Trim()
Write "Uninstalling..."
start-process "msiexec.exe" -arg "/X $uninstallString /qb" -Wait
}
export-modulemember -function Uninstall-Application