Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing Adobe Reader preferences with VBScript

Status
Not open for further replies.

brian32

Vendor
Mar 20, 2005
35
0
0
US
Hi. Is there a way to change the preferences in Adobe Reader 7 or 8 using VBscript?

Specifically, I want to go to Edit > Preferences > Internet > and UNcheck 'Display PDF in browser'

Any weblinks or snippets of code (even incomplete) will be helpful. Thanks.
 
Sometimes I find the easiest way is to edit the registry. [Use regmon.]

The key your looking for is
[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\8.0\Originals]

"bBrowserIntegration"=dword:00000000

so create
WshShell.RegWrite "HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\8.0\Originals\bBrowserIntegration", 0, "REG_DWORD
 
A little googleing and I think what your looking for is DISABLE_BROWSER_INTEGRATION = YES
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top