mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 13:34:55 -06:00
37 lines
1.1 KiB
PowerShell
37 lines
1.1 KiB
PowerShell
function Remove-WinUtilAPPX {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Removes all APPX packages that match the given name
|
|
|
|
.PARAMETER Name
|
|
The name of the APPX package to remove
|
|
|
|
.EXAMPLE
|
|
Remove-WinUtilAPPX -Name "Microsoft.Microsoft3DViewer"
|
|
|
|
#>
|
|
param (
|
|
$Name
|
|
)
|
|
|
|
Try {
|
|
Write-Host "Removing $Name"
|
|
Get-AppxPackage "*$Name*" | Remove-AppxPackage -ErrorAction SilentlyContinue
|
|
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*$Name*" | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue
|
|
}
|
|
Catch [System.Exception] {
|
|
if ($psitem.Exception.Message -like "*The requested operation requires elevation*") {
|
|
Write-Warning "Unable to uninstall $name due to a Security Exception"
|
|
}
|
|
else {
|
|
Write-Warning "Unable to uninstall $name due to unhandled exception"
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
}
|
|
}
|
|
Catch{
|
|
Write-Warning "Unable to uninstall $name due to unhandled exception"
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
}
|
|
}
|