Adobe Acrobat X Pro/Std - hide Product Registration Menu Item
Every post I have seen states that in order to remove the Product Registration from the Help menu is the enter this line into the HideMenuItems.js file: app.hideMenuItem("AMTDynamic1");
In fact as soon as it is launched and the file takes into effect, it does indeed disappear. However, if you go back to the Help Menu, it will reappear, but be greyed out. Then if you go back to it yet later on, it will be present and available for a user to select...
If you were to hide the entire Help Menu option, then nothing appears...
What gives? How do I keep the Help -> About options but ensure that the Product Registration will not appear? I am at Adobe Acrobat X Professional 10.1.3...
Answers (4)
;***************************************************************
;Adobe Installer External Configuration File: Abcpy.ini
;***************************************************************
;***************************************************************
;Main Section
;The (Product) key is a required key
;***************************************************************
[MAIN]
Product=Adobe(R) Acrobat(R) XI
AbcpyVersion=11.0
;***************************************************************
;OEM Installation Options
;***************************************************************
[OEM Install]
ISX_SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx
USERNAME=
COMPANYNAME=xxx
INSTALLDIR=
Registration_SUPPRESS=YES
SUPPRESS_APP_LAUNCH=YES
EULA_ACCEPT=YES
---------------------------------------------------
You are done, you will definitely see register option under help but will be greyed down.
Hi Guys, After much debugging into Adobe sites, I finally resolved it.
To disable Product Registration from Adobe Acrobat, create a HideMenu.js file under "C:\Program files\Adobe\Acrobat 10.0\Acrobat\Javascripts\" with the below contents.
app.hideMenuItem("AMTDynamic1");
Hope that helps.
Below is a list of other menu items which u can disable using the same method:
//HideMenu.js
//Hides Help > Repair Adobe Reader Installation
app.hideMenuItem("DetectAndRepair");
//Hides Help > Purchase Adobe Acrobat
app.hideMenuItem("BuyAcro");
//Hides "File" on main toolbar
//app.hideMenuItem("File");
//Hides File - Open
app.hideMenuItem("Open");
//Hides File - Attach to email
app.hideMenuItem("AcroSendMail:SendMail");
//Hides Edit - Check Spelling
app.hideMenuItem("Spelling:Spelling");
//Hides Edit - Preferences
app.hideMenuItem("GeneralPrefs");
//Hides View - Menu Bar
app.hideMenuItem("ShowHideMenuBar");
//Hides View - Toolbars
app.hideMenuItem("Toolbars");
//Hides View - Navigation Panels
app.hideMenuItem("Navigation");
//Hides View - Automatically Scroll
app.hideMenuItem("AutoScroll");
//Hides View - Read Out Loud
app.hideMenuItem("ReadAloud");
//Hides "Document" on main toolbar
app.hideMenuItem("Document");
//Hides "Tools" on main toolbar
//app.hideMenuItem("Tools");
//Hides Tools - Object Data
app.hideMenuItem("DataToolsItem");
//Hides Tools - Customize Toolbars
app.hideMenuItem("CustomizeToolbars");
//Hides Help - Beyond Adobe Reader
app.hideMenuItem("GettingStarted");
//Hides Help - How to
app.hideMenuItem("HelpHowTo");
//Help - Online Support
app.hideMenuItem("OnlineSupport");
//Hides Help - Online Support - Knowledge Base
//app.hideMenuItem("KnowledgeBase");
//Hides Help - Online Support - Adobe Support Programs
//app.hideMenuItem("AdobeExpertSupport");
//Hides Help - Online Support - Accessibility Resource Center
//app.hideMenuItem("AccessOnline");
//Hides Help - Online Support - Generate System Report
//app.hideMenuItem("SystemInformation");
//Hides Help - Repair Adobe Reader Installation
app.hideMenuItem("DetectAndRepair");
//Hides Help - Purchase Adobe Acrobat
//app.hideMenuItem("BuyAcro");
//Hides View - Read Out Loud (Great for Terminal Server)
//app.hideMenuItem("ReadLoud");