Remove or Hide tabs in OpManager (version 11.0)
Question : How do I remove/hide tabs from OpManager?
Solution : OpManager has a built-in feature to customize tabs where you can hide unwanted tabs, to hide any tab , click on admin option on the top right corner > Edit tab > click on the required tab > click on "X" option to delete > save the changes. If it should be removed permanently from the database, run the following query by connecting to the database.
DELETE FROM TabItems where NAME='tabname ';
(To get the tab name , connect to the Opmanager database and run the following query "select * from TabItems;", make a note of the tabname to be removed and substitute the same in the above query)
Ex: If you would like to delete IT Pulse tabe , the following query should be executed :
DELETE FROM TabItems where NAME='webclient.tab.itpulse';
|
Related Articles
Migrating OpManager from 32 bit version to 64 bit version
OpManager migration from 32 bit Version to 64 bit Version: 1)Stop OpManager service 2) Take a backup of OpManager database Backup --------- To take a backup of the data and configurations in OpManager: Execute BackupDB.bat from OpManager ...
How to remove the ServiceDeskPlus details in OpManager?
ISSUE: To remove the ServiceDeskPlus details in the Add-On settings page and from the device snapshot page. SOLUTION: We need to delete entries in the three tables in the database. 1. Connect to the database using this command, ...
OpManager DB migration from PGSQL to MSSQL in Version 125230
For OpManager version 125230: PGSQL to MSSQL Migration Steps : In the PGSQL setup, go to OpManager home → bin, start Command Prompt with administrator privilege from this path and run DBConfiguration.bat. In the popup shown, please chose MSSQL, check ...
OpManager DB migration from PGSQL to MSSQL on the same server in Version 12.3
Please follow the below mentioned steps to migrate DB from PGSQL to MSSQL on the same server. These steps are applicable only on builds 12.3.045 and above. If you are in older versions below 12.3.045, please upgrade to 12.3.045 and follow these ...
How to uninstall and reinstall OpManager Service?
1)Stop OpManager service 2)Go to OpManager command prompt with Run as administrator Option 3)Change directory to OpManager/bin and execute " opmanagerservice.bat -r " Ex: C:\ManageEngine\OpManager\bin>OpManagerService.bat -r (The above ...