For Adobe Acrobat X Pro version 10.1.2 how to hide Product Registration Option in Help Menu
I need to hide the entry for Product Registration in help menu.
But the value doesnot get hidden after I use customization tool. Even if I add the entry app.hideMenuItem("AMTDynamic1") it doesnot gets suppressed.
Firstly when the Window is launched it doesnot appear, but after few seconds the Product Registration tab appears Grey Out, after few seconds it is available for user to select.
So wht should be done in this case so as to hide "Product Registration..."
Answers (6)
Short answer: use the Adobe Customization Wizard.
read this document:
http://helpx.adobe.com/content/dam/kb/en/837/cpsid_83709/attachments/Customization_Wizard.pdf
section 2.16 on Online and Acrobat.com features
Comments:
-
hmm, that will teach me to read posts before I answer, looks like you're already using the CW, and I can't delete my reply, my apologies - pjgeutjens 12 years ago
I don't know if it will translate to Pro, but for an earlier version, I used the following install command:
/sAll /rs /l /msi /qb- /norestart
You can also try adding:
EULA_ACCEPT=YES REGISTRATION_SUPPRESS=YES
Comments:
-
I even tried this but of no use - AbraYogi 12 years ago
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");