- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Remote Server Management
- >
- Silent uninstall HP System Management Homepage
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2021 06:21 AM - last edited on 08-15-2021 06:47 PM by support_s
08-09-2021 06:21 AM - last edited on 08-15-2021 06:47 PM by support_s
Silent uninstall HP System Management Homepage
Hello.
Any way to silently uninstall the SMH?
I have tried following without success.
setup.exe /s /f
or
msiexec.exe /qn /x {produtcode}
The setup needs a promt every time.
Any other ideas?
- Tags:
- Prolaint server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2021 09:26 PM
08-12-2021 09:26 PM
Re: Silent uninstall HP System Management Homepage
Uninstalling HP SMH on a Windows operating system:
Use the Programs and Features feature, and complete the following steps to remove HP SMH:
1. Select Start, Control Panel, Programs and Features.
2. Right click HP System Management Homepage.
3. Select Uninstall.
HP SMH is uninstalled.
Uninstalling HP SMH on a CLI-based Windows system:
To uninstall the HP SMH application on a CLI-based Windows system, complete the following steps.
1. Stop the HP SMH service.
2. Execute the uninstall.bat from the command prompt to uninstall the HP SMH application.
The uninstall.bat file is available at the location c:\hp\hpsmh\uninstall.bat.
NOTE: The uninstaller uninstall.bat batch file is shipped along with the HP SMH package.
or Use below command to uninstall HP SUM silently.
setup.exe /s /removeonly
For more information, please refer HPE SystemManagementHomepage7.6 Installation Guide HP-UX,Linux,and Windows Operating Systems
https://support.hpe.com/hpesc/public/docDisplay?docId=emr_na-c05330582
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2021 01:45 AM
08-17-2021 01:45 AM
Re: Silent uninstall HP System Management Homepage
Silent uninstalling the SMH does not work. I have tried several options.
If I run c:\hp\hpsmh\uninstall.bat >> a user interaction is needed.
If I try to uninstall directley via msiexec.exe .. >> same problem
setup.exe /s /removeonly >> doesnt work as well
That's really painful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2022 04:12 AM - edited 02-02-2022 06:03 AM
02-02-2022 04:12 AM - edited 02-02-2022 06:03 AM
Re: Silent uninstall HP System Management Homepage
Hi all,
I made a PowerShell script to remove SMH from multiple servers. I use SCCM to deploy it. Note, you must use the install source setup.exe to make it work.
Here is the removal part:
Get-Service -DisplayName "HP System Management Homepage" | Stop-Service
& $sourcepath\setup.exe /s /removeonly | out-null
I hope this helps.
Vincent