IE10 - Disable Adobe Reader Plugin
Results 1 to 6 of 6

Thread: IE10 - Disable Adobe Reader Plugin

  1. #1
    Join Date
    Apr 2002
    Posts
    2,122

    IE10 - Disable Adobe Reader Plugin

    Good morning all,

    I am looking for a way to automatically disable or remove the Adobe Reader Plugin from IE10. Perhaps there is a registry setting I can modify via script? Or maybe there is a Group Policy setting I can do this with?

    If anyone has any suggestions, please let me know!

    Thanks!!

    TB
    The only barrier to knowledge is the perception that you already have it.

  2. #2
    Join Date
    Apr 2005
    Location
    Maryland, USA
    Posts
    17,806
    In Internet Explorer, click Tools > Manage add-ons. Down in the left pane, change the "Currently loaded add-ons" option to "All add-ons". In the right pane, right-click "Adobe PDF Reader" and select Disable.

  3. #3
    Join Date
    Apr 2002
    Posts
    2,122
    Thanks for replying SpywareDR, but I think you missed the word 'automatically' in my post. I'd rather not walk around to every PC in my domain and manually make this change.

    TB
    The only barrier to knowledge is the perception that you already have it.

  4. #4
    Join Date
    Apr 2005
    Location
    Maryland, USA
    Posts
    17,806
    Oops, sorry.

    The following two .reg files toggle the "Adobe PDF Reader" add-on between "Enabled" and "Disabled" for me on Windows 7 Ultimate with Internet Explorer 11

    Filename: disable_adobe_pdf_reader_in_ie11.reg
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_USERS\S-1-5-21-1437314408-227437667-2795815062-500\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{CA8A9780-280D-11CF-A24D-444553540000}]
    "Flags"=dword:00000001
    "Version"="*"
    Filename: enable_adobe_pdf_reader_in_ie11.reg
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_USERS\S-1-5-21-1437314408-227437667-2795815062-500\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{CA8A9780-280D-11CF-A24D-444553540000}]
    "Flags"=dword:00000000
    "Version"="*"
    Microsoft.com > How to add, modify, or delete registry subkeys and values by using a .reg file
    Distributing Registry Changes

    You can send a .reg file to users in an e-mail message, put a .reg file on a network share and direct users to the network share to run it, or you can add a command to the users' logon scripts to automatically import the .reg file when they log on. When users run the .reg file, they receive the following messages:

    Registry Editor
    Are you sure you want to add the information in path of .reg file to the registry?

    If the user clicks Yes, the user receives the following message:

    Registry Editor
    Information in path of .reg file has been successfully entered into the registry.

    Regedit.exe supports a /s command-line switch to not display these messages. For example, to silently run the .reg file (with the /s switch) from a login script batch file, use the following syntax:

    regedit.exe /s path of .reg file

    You can also use Group Policy or System Policy to distribute registry changes across your network. For additional information, visit the following Microsoft Web site:

    http://msdn2.microsoft.com/en-us/library/ms954395.aspx

  5. #5
    Join Date
    Apr 2002
    Posts
    2,122
    SpywareDr, thanks again! I don't have that exact key since it's domain specific. I did find it on my PC, but looks like it's a different key for every PC on the domain. Apparently, the -500 in your key is specific to your computer. Mine was -1149, another was -1084. Great catch on finding the setting to begin with. Did you use a utility that monitors registry changes on the fly?

    TB
    The only barrier to knowledge is the perception that you already have it.

  6. #6
    Join Date
    Apr 2005
    Location
    Maryland, USA
    Posts
    17,806
    You're welcome, and thanks. To help me zero in on it, I used FC on before and after copies of the registry.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •