NOTICE: Deprecation of the Quickpass Desktop App The Quickpass Desktop app is in the process of being deprecated. While you may continue to use the app until the deprecation date, please note that active development and technical support for the desktop app have been discontinued. The Screen Connect credential injection functionality will be transitioned to a dedicated Screen Connect Helper to provide a more streamlined experience moving forward. For further assistance or questions regarding this change, please reach out to your CyberQP contact. |
Background
For partners that which to script the uninstallation of the Quickpass Software desktop application.
Scripted Uninstall
Open Powershell As Administrator, or run from your RMM tool with elevated permissions:
PowerShell Script
$app1 = Get-AppxPackage -AllUsers | Where-Object { $_.Publisher -like "*CyberQP*" }
if ($app1) {
Write-Host "Removing: $($app1.Name)"
Remove-AppxPackage -Package $app1.PackageFullName -AllUsers
} else {
Write-Host "No package found for publisher '*CyberQP*'"
}
$app2 = Get-AppxPackage -AllUsers | Where-Object { $_.Publisher -like "*Quickpass*" }
if ($app2) {
Write-Host "Removing: $($app2.Name)"
Remove-AppxPackage -Package $app2.PackageFullName -AllUsers
} else {
Write-Host "No package found for publisher '*Quickpass*'"
}
Comments
0 comments
Article is closed for comments.