-
1
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
1
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Notebooks
- Notebook Software and How To Questions
- uninstall HP Support Assistant for all users

Create an account on the HP Community to personalize your profile and ask a question
02-23-2023 08:44 AM
I need to uninstall HP Support Assistant v9 for all users, if i remove the software using Apps removal the software isn''t uninstalled but only for the current logged in user. As soon as another user logs in the software is there again
I also tried using Remove-AppxPackage as it looks like a version of the new universal apps but it doesn't show under the list of installed apps.
How can i uninstall the software for all users and not just the current logged in user ?
Solved! Go to Solution.
Accepted Solutions
02-24-2023 05:25 AM
I noticed that the file after removing using the powershell commands still noticed as staged, so the application is not completely removed.
The solution is luckily much easier, in the c:\swsetup\sp folder is a file UninstallHPSA.exe and this finally removes/uninstalls the application completely
02-23-2023 10:38 AM
hi
I would have to create a second account, to test, not great!
but have you tried in safe mode, with an administrator account?
was this reply helpful , or just say thank you ? Click on the yes button
Please remember to mark the answers this can help other users
Desktop-Knowledge-Base
Windows 11 22h2 inside , user
------------------------------------------------------------------------------------------------------------
02-23-2023 11:07 AM
I found the problem using the logfiles found in c:\system.sav folder
The problem is indeed that it installs as a Windows Store App
I used the following powershell commands to uninstall the app:
# Search installed apps
Get-AppxPackage -AllUsers | Format-List -Property PackageFullName,PackageUserInformation
# The HP software was found using package name: AD2F1837.HPSupportAssistant_9.23.20.0_x64__v10z8vjag6ke6
# Uninstalled using
Remove-AppxProvisionedPackage -Online -PackageName AD2F1837.HPSupportAssistant_9.23.20.0_x64__v10z8vjag6ke6
Remove-AppxPackage -Package AD2F1837.HPSupportAssistant_9.23.20.0_x64__v10z8vjag6ke6
Hence .. it is not suficient to remove using the "normal" uninstallation procedure as the most guides mentioned found on the internet
02-24-2023 05:25 AM
I noticed that the file after removing using the powershell commands still noticed as staged, so the application is not completely removed.
The solution is luckily much easier, in the c:\swsetup\sp folder is a file UninstallHPSA.exe and this finally removes/uninstalls the application completely