-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×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 TechPulse

Create an account on the HP Community to personalize your profile and ask a question
04-04-2023 02:33 AM
Hi all,
Does anybody know how can I uninstall HP TechPulse and prevent it from being automatically re-installed? I do the normal removal via Programs and Features, but then it will get automatically reinstalled right after rebooting.
Thanks!
Solved! Go to Solution.
Accepted Solutions
04-11-2023 07:12 AM - edited 04-11-2023 07:13 AM
I managed to get it accomplished by running the command below via PowerShell, with an elevated session:
$MyApp = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq "HP TechPulse"}
$MyApp.Uninstall()
After that, several reboots were done and it was not reinstalled again.
04-11-2023 07:12 AM - edited 04-11-2023 07:13 AM
I managed to get it accomplished by running the command below via PowerShell, with an elevated session:
$MyApp = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq "HP TechPulse"}
$MyApp.Uninstall()
After that, several reboots were done and it was not reinstalled again.