Adobe Reader 6 "Check browser settings when starting Reader"
Hello,
I'm new here and am having an issue with an Adobe Reader 6 rollout. I can't seem to locate the "Check browser settings when starting Reader" registry entry. So far this site has saved me, but I'm encountering this problem that I can't find anywhere!! Regmon and Filemon don't show anything!! I thought it was the following, but it is not working:
"HKCU\Software\Adobe\Acrobat Reader\6.0\RememberedViews\iRememberView",00000001,"REG_DWORD"
Anyone have any suggestions at all? I'm nearing my deadline and am completely clueless.
This is what my script looks like so far:
Dim regedit
Dim oFSO
Const pluggin = "C:\Program Files\Internet Explorer\PLUGINS\nppdf32.dll"
Set regedit = CreateObject("WScript.Shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
Function RegEntryExists(ByVal regEntryPath) 'as Boolean
Dim bFound : bFound = False
Dim regedit
Set regedit = CreateObject("WScript.Shell")
On Error Resume Next
regedit.RegRead(regEntryPath)
If Err.Number = 0 then
bFound = true
End If
RegEntryExists = bFound
End Function
If RegEntryExists("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/pdf\CLSID") then
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/pdf\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.fdf\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.adobe.xfdf\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.adobe.xdp+xml\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.adobe.xfd+xml\CLSID")
End If
If oFSO.FileExists(pluggin)Then
oFSO.DeleteFile(pluggin) 'deletes the .dll for IE
wscript.echo "file deleted"
End If
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\AdobeViewer\EULA",00000001,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\AdsInReader\bShowAds",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Originals\bDisplayAboutDialog",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Updater\bShowAutoUpdateConfDialog",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Updater\bShowNotifDialog",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Updater\iUpdateFrequency",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\RememberedViews\iRememberView",00000001,"REG_DWORD"
regedit.RegWrite "HKLM\Software\Adobe\Acrobat Reader\6.0\AdobeViewer\EULA",00000001,"REG_DWORD"
regedit.RegWrite "HKLM\Software\Adobe\Acrobat Reader\6.0\FeatureLockdown\bShowAdsAllow",00000000,"REG_DWORD"
regedit.RegWrite "HKLM\Software\Adobe\Acrobat Reader\6.0\FeatureLockdown\bUpdater",00000000,"REG_DWORD"
Thanks in advance!!!
Nick - the newb!
I'm new here and am having an issue with an Adobe Reader 6 rollout. I can't seem to locate the "Check browser settings when starting Reader" registry entry. So far this site has saved me, but I'm encountering this problem that I can't find anywhere!! Regmon and Filemon don't show anything!! I thought it was the following, but it is not working:
"HKCU\Software\Adobe\Acrobat Reader\6.0\RememberedViews\iRememberView",00000001,"REG_DWORD"
Anyone have any suggestions at all? I'm nearing my deadline and am completely clueless.
This is what my script looks like so far:
Dim regedit
Dim oFSO
Const pluggin = "C:\Program Files\Internet Explorer\PLUGINS\nppdf32.dll"
Set regedit = CreateObject("WScript.Shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
Function RegEntryExists(ByVal regEntryPath) 'as Boolean
Dim bFound : bFound = False
Dim regedit
Set regedit = CreateObject("WScript.Shell")
On Error Resume Next
regedit.RegRead(regEntryPath)
If Err.Number = 0 then
bFound = true
End If
RegEntryExists = bFound
End Function
If RegEntryExists("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/pdf\CLSID") then
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/pdf\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.fdf\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.adobe.xfdf\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.adobe.xdp+xml\CLSID")
regedit.RegDelete ("HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/vnd.adobe.xfd+xml\CLSID")
End If
If oFSO.FileExists(pluggin)Then
oFSO.DeleteFile(pluggin) 'deletes the .dll for IE
wscript.echo "file deleted"
End If
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\AdobeViewer\EULA",00000001,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\AdsInReader\bShowAds",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Originals\bDisplayAboutDialog",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Updater\bShowAutoUpdateConfDialog",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Updater\bShowNotifDialog",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\Updater\iUpdateFrequency",00000000,"REG_DWORD"
regedit.RegWrite "HKCU\Software\Adobe\Acrobat Reader\6.0\RememberedViews\iRememberView",00000001,"REG_DWORD"
regedit.RegWrite "HKLM\Software\Adobe\Acrobat Reader\6.0\AdobeViewer\EULA",00000001,"REG_DWORD"
regedit.RegWrite "HKLM\Software\Adobe\Acrobat Reader\6.0\FeatureLockdown\bShowAdsAllow",00000000,"REG_DWORD"
regedit.RegWrite "HKLM\Software\Adobe\Acrobat Reader\6.0\FeatureLockdown\bUpdater",00000000,"REG_DWORD"
Thanks in advance!!!
Nick - the newb!
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
nickv
19 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.