Product registration issue in Adobe acrobat 10
I am using Adobe customization wizard for packaging Adobe Acrobat 10. I created a mst using it. I did all the things which I found in the package KB in appdeploy. But I am facing issue with the "Product Registration" sub menu under "HELP" menu. I want to either grey it out or remove it completely. when I launch the shortcut and check, "Product registration" under help menu do not appear at all . if I wait for some time, "Product registration" tab appears in greyed out state and after some time it will get enabled automatically. Installrite capture is also not helping me to figure out the problem.
To Disable Registration, I used this registry
[HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\10.0\AVGeneral]
"bSerialized"=dword:00000001
"bAppInitialized"=dword:00000001
There is also a "bActivated" key whose DWORD value is x00000000 under HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\10.0\AVGeneral but playing with these registry values is also not solving my problem.
Any help folks !!! or do you need any more information from me??
Regards,
Nikhil
Answers (9)
The following procedure (supplied by the Adobe engineer) provides a list of menu items in case other menu items need to be disabled. Have fun with it.
A full list of menu items can be found by doing the following:
1)Enable the interactive console under “Preferences->JavaScript->Enable Interactive Consoleâ€Â
2)Open the interactive console using “Control + Jâ€Â
3)app.listMenuItems(); and press “control + enterâ€Â
I have made a case with Adobe and sent them my .mst file, but so far none of their solutions fixed the problem.
Comments:
-
Add "REGISTRATION_SUPPRESS- Yes" Property in .mst it will remove popping up of Product registration Window - PM 11 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");
so that the conversation will remain readable.