Upload files to "App Uninstall Scripts"
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
<#
|
||||
Author: Gabe Kerntke
|
||||
Date: 03-04-2025
|
||||
|
||||
.Synopsis
|
||||
Script checks to see if Dell Command Update is installed, if installed it will uninstall
|
||||
|
||||
.Modified
|
||||
2025-03-04 (GabeK) - Original script created
|
||||
|
||||
#>
|
||||
|
||||
# Variables #
|
||||
$Name = "Dell Command"
|
||||
|
||||
# Functions #
|
||||
|
||||
#Function checks for 32 or 64 bit processor and then pulls list of applications accordingly
|
||||
Function Get-Software ($CPU = $ENV:PROCESSOR_ARCHITECTURE) {
|
||||
If ($CPU -eq 'AMD64') {
|
||||
$64bit = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*
|
||||
$32bit = Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*
|
||||
$32bit + $64bit
|
||||
}
|
||||
Else { Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* }
|
||||
}
|
||||
|
||||
#Function to uninstall via WMIobject (control panel)
|
||||
Function Uninstall-App {
|
||||
$Uninstall = Get-WmiObject Win32_Product -filter "name like '$Name%'" | ForEach-Object { $_.Uninstall() }
|
||||
$Value = $Uninstall | Select-Object -ExpandProperty ReturnValue
|
||||
|
||||
If ($Value -eq "0") {
|
||||
Write-Host "$Name uninstalled successfully"
|
||||
}
|
||||
else {
|
||||
Write-Host "Failed to uninstall $Name, exiting script"
|
||||
}
|
||||
}
|
||||
|
||||
# Script start #
|
||||
|
||||
#Check to see if program is installed
|
||||
$Applist = Get-Software | Where-Object { $_.DisplayName -like "*$Name*" }
|
||||
If ($Applist.DisplayName -like "*$Name*") {
|
||||
Uninstall-App
|
||||
}
|
||||
Else {
|
||||
Write-Host "$Name is not installed, exiting script"
|
||||
}
|
||||
Reference in New Issue
Block a user