MS Internet Explorer Registry Key

I have a PC Windows 2000 Professional with Internet Explorer 6.0, and two version of Java Plug-in installed (14.1 and 1.4.2). Now, when I switch between the two versions, which keys of the registry are involved in the process?
In my case when I switch between the two versions with an Administrator account, all goes well, but when I try with an ordinary account the operation fails.

So, if I need to load a jar file into the ext directory of the plugin, this is the initial key that I would read to discover the actual location of the plugin on the client?
Get the default value and then read the key:
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in
using the version specified in the first location....
Is that correct? Or is there an easier way to discover the actual location of the current plugin?
pyro_dw
HKEY_LOCAL_MACHINE -> Software -> Classes -> CLSID ->
{8AD9C840-044E-11D1-B3E9-00805F499D93}

Similar Messages

  • How to make ENTER key in internet explorer run the  BIP report?

    In BI publisher 11g, users wanted that after entering the values for the parameter, they hit the ENTER key ( on the keyboard)  and the report should run .
    In Mozilla firefox, when I hit ENTER key on the keyboard report runs fine... but in Internet explorer, it does not ( infact in internet explorer TAB key works)
    How to make ENTER key in internet explorer run the report?
    Thanks
    Ashish

    Perform the following steps and tell us if it  resolve this issue:
    1. In Internet Explorer, click Tools, and then click Internet Options.
    2. Click the Security tab.
    3. There are four security zones listed:
    * Internet
    * Local intranet
    * Trusted sites
    * Restricted sites
    Click the zone being used by P6, which is noted at the bottom right hand corner of the browser window when the P6 URL is being accessed.
    4. Under Security level for this zone, click Custom Level.
    5. Under Downloads, under Automatic prompting for file downloads, click Enable, and then click OK two times.
    6. The browser will need to be restarted for the change to take effect.
    Refer to the following Microsoft Knowledge base article for additional file download and active x controls which should also be enabled: http://support.microsoft.com/kb/883255

  • Setup failed (Could not write value devenv.exe to key \SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BLOCK_CROSS_PROTOCOL_FILE_NAVIGATION)

    Hello, all,
    I encounter a really confused problem while installing Visual Studio 2013 Professional.
    It say Install cannot continue because some required components failed.
    And there is error information given by log file.
    [1868:0558][2015-04-18T00:55:46]i000: MUX:  ExecuteError: Package (vs_devenv) failed: Error Message Id: 1406 ErrorMessage: Could not write value devenv.exe to key \SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BLOCK_CROSS_PROTOCOL_FILE_NAVIGATION.
      Verify that you have sufficient access to that key, or contact your support personnel.
    [2058:2044][2015-04-18T00:55:47]e000: Error 0x80070643: Failed to install MSI package.
    [2058:2044][2015-04-18T00:55:47]e000: Error 0x80070643: Failed to execute MSI package.
    [1868:0558][2015-04-18T00:55:47]e000: Error 0x80070643: Failed to configure per-machine MSI package.
    Strange is that I cannot even find the key FEATURE_BLOCK_CROSS_PROTOCOL_FILE_NAVIGATION under
    FeatureControl.
    I have searched in Internet, but no one gives out a effective way to solve this problem.
    Could you help me!!! Thank you very much.

    Hello Forever_fzf,
    The problem is that Visual Studio is trying to write that key to your OS but failed. There are many possible reasons so it is hard to check it just from the above error info, I think you can take the following actions to test whether they can fix your problem:
    1. It is possible the the source(the installer) is corrupt on your OS. So our first step is to check the source. Please download the ISO format and verify its hash checksum sha-1 value by refer to the following page:
    https://www.visualstudio.com/en-us/downloads/visual-studio-2013-iso-sha1-vs
    2. If the source is alright, check that you are administrator and you have ran the setup as administrator. If you've already checked that and you still do not have privilege when install. We need to refer to the following blog:
    http://blogs.msdn.com/b/astebner/archive/2006/09/04/solving-setup-errors-by-using-the-subinacl-tool-to-repair-file-and-registry-permissions.aspx
    It contains a script, the script will involve subinacl tool to give all registries the Admin privilege, then you will be able to write keys to that registries.
    3. The reigistry key HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BLOCK_CROSS_PROTOCOL_FILE_NAVIGATION sounds related to IE. May I also know your IE version?
    Best regards,
    Best regards, 
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Turning off Internet Explorer 7 Standards Mode via registry? Help!

    Hi all
    In his infinite wisdom, my predecessor rolled out a few PCs with Windows 7 Home premium. There are a few scattered around at various sites of ours that connect back to Central office via VPN. Due to the functions they preform these PCs cant be domained and
    just use local accounts.
    We have a new web based finance system, that does not run correctly in Internet Explorer 7 Standards Mode - for the rest of the company I have turned it off via a GPO, but for these PCs (that dont even have local GP) I'm struggling to find the correct registry
    entry to disable Internet Explorer 7 Standards Mode! Help!
    The PCs are Windows & Home 32bit - I have searched and search and found nothing. Cheers guys

    Hi StevoHX,
    Thanks for posting in TechNet Forum.
    I will do more test on this requirement and will let you know the result as soon as possible.
    I wonder if we don't disable the Internet Explorer 7 Standards Mode, could you open the web based finance system?
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Disable Function Key F3 in Internet Explorer

    I would like to disable function keys F1 and F3 while playing
    my flash movie in internet explorer. I am using these keys within
    Flash to do some actions.
    I got the script working for Function Key F1 using the
    following script
    <script language="javascript">
    document.onhelp = function() {return(false);}
    window.onhelp = function() {return(false);}
    </script>
    But unable to make it to work for function key F3.
    Thanks in advance,
    Desmond

    Hi des_shun, I have workaround for this issue.
    First thing we have to do is disable keyboard event for F3 key on HTML document so that even if focus is on html document, default Search functionality will not popup. Next thing is, flash must contain KeyboardEvent listener for keyboard response. This is where we will keep our custom F3 functionality. This setting works well on Chrome & FireFox.
    Now IE thing.
    The prolem with IE is that if any one of F3, F5, F6,F7 & F11 key is pressed, when the focus is on flash movie it directly executes the default browser functions like searching, refreshing etc never allowing flash to execute its keyeventlistener. But if focus is on document body, then F3 and other keys work fine.
    Here is the catch.
    All we have to do is whenever focus is shifted to flash, we should revert that focus to document body.
    Here is how we can do this.
    Capture the MouseClick event in your flash movie. Then in this mouseclick event handler, call  javascript function to change focus to document again. Below is the sample code.
    //Flash Code
    stage.addEventListener(MouseEvent.CLICK,mClick);
    function mClick(event:MouseEvent)
              ExternalInterface.call("changeFocus");
    // Javascript Code
    <script type="text/javascript"</script>
              function changeFocus()
                             document.body.focus();
        </script>
    Thats it!

  • Java Applet problem in Internet Explorer 7 with Tab Key

    Hi
    I am developing some web pages in which iam using a java applet. so far the intended user are supposed to be using Internet Explorer 7. the problem i am facing is that when i press the tab key within the applet. the control get transferred to new tab position in the web page outside the applet and i have to click back to the applet to get control again transferred to the applet.
    i want to restrict the control of tab so that when tab is pressed within the applet the tab should not move to next tab position in the page and remain confined within the applet.
    Can someone please help me how can i achieve this and whether i have to do coding for it in the applet or in the web page...so that within the applet the Internet Explorer tab control should remain disabled..

    Hello all,
    I have the same problem, but I don't found a solution. Could you resolved the problem and who??
    Thank you.
    Jorge

  • Problem whitg keys in internet explorer.

    Hello:
    I speak only a bit english. I wait that you can understand me.
    I need execute sap in a internet explorer. When I push F1 or F2 etc. to execute an action of the programs I don't see that it's ok. The program don't run. I see, that is the i.e tha run this command. If a pust f1 I see the help of i.e.
    ¿How can I send the keys to sap and not no explorer?
    Thank you very mucho.

    what kind of sap application?
    is it ITS (internet transaction server) based applications
    or
    BSP (Business server pages) application
    or
    normal SAP GUI in browser?
    Raja

  • Since upgrading from Windows Vista to Windows 7 both Internet Explorer and Firefox will not recognize the numbers keys of my keyboard. I get numbers in Word and every other situation, just not in the internet programs.

    Since upgrading from Windows Vista to Windows 7 both Internet Explorer and Firefox will not recognize the numbers keys of my keyboard. I get numbers in Word and every other situation, just not in the internet programs. I have tried uninstalling Firefox and reinstalling with no results.

    If there are problems with importing the IE Favorites in Firefox then export the favorites in IE to an HTML file and import that file in the Firefox Bookmarks Manager.
    If you do not have the menu bar in IE then right-click the toolbar at the top to enable the Menu Bar.
    *Export the favorites in IE to an HTML file (bookmarks.html):<br>File > Import and Export
    *Import the HTML file in Firefox:<br>Bookmarks > Show All Bookmarks > Import & Backup > Import Bookmarks from HTML
    See "Import from another browser" and "Import from file":
    *http://kb.mozillazine.org/Import_bookmarks

  • Hot key settings on t540p internet explorer

    i have a t540p with the web hot key over the numpad. Running windows 8.1.  I have also the enhanced usb keyboard with a similar hotkey.
    the usb keyboard hotkey opens the desktop version of internet explorer, where as the one on the native keyboard tries to open the metro version.
    I would like to make the one on the native keyboard also open the desktop version.
    Aside from the fact that this is what I want it to do, our company policy has UAC disabled which means several Metro apps will not run unless it is enabled. Metro Internet explorer is one of these. 
    I know how to edit the USB keyboard but how can I change the native keyboard? 
    Solved!
    Go to Solution.

    nevermind found the answer
    in internet explorer - internet options - programs
    under opening internet explorer section change the pull down to "always on the desktop" and check the little check box underneath

  • In an outgoing email message the "attach" document icon does not work in firefox. It does work when using internet explorer. How can I get the "attach" key to work when using firefox?

    Using firefox, if I am composing a new message in my hotmail account the "attachment" icon is not active, so nothing happens when I click on it in order to attach one of my word documents.
    The "attachment" icon is active when I am using hotmail and internet explorer.

    Firefox 3 will not run on OS X 10.3.9, it requires at least 10.4
    Try one of these browsers to see if you can access Hotmail - [http://www.seamonkey-project.org/releases/seamonkey1.1.19/ SeaMonkey 1.1.19] or [http://caminobrowser.org/download/ Camino 1.6.11]

  • Windows failed to apply the Internet Explorer Zonemapping settings - the data was invald (event ID: 1085)

    Hi All,
    I have a large domain and a long list of websites that are trusted using the following group policy setting:
    Administrative Templates > Windows Components > Internet Explorer> Internet Control Panel > Security Page >
    Site to Zone Assignment List
    On all (XP/vista/win7) workstations across the domain I'm getting the following error:
    Log Name:  System
    Source:  Microsoft-Windows-GroupPolicy
    Event ID: 1085
    Task Category: None
    Level: Warning
    Keywords:   Description: Windows failed to apply the Internet Explorer Zonemapping settings. Internet Explorer Zonemapping settings might have its own log file.
    There's nothing either side of this error in the log that shines any more light on the issue.
    I know which group policy object its applying these settings but cant find which of the entries in the site to zone assignment list is causing this issue. I looked in the
    Group Policy/Operational log but all I see is the following entry which says "completed" but is logged as an error:
    After some research I'm guessing that the issue is an incorrect wild-card. This is what my trusted sites list looks like (with names removed of course):
    http://servername.*  
    *.internaldomain.com.au  
    *.domain.com.au  
    *.domain.*  
    *.externaldomain.com  
    *.domain.inernaldomain.com.au  
    *.domain.*  
    *.domain/name.*  
    *.domain.inernaldomain.au*  
    *.domain.com
    Is there something obviously incorrect here?
    Does anyone know where I could find an article that clearly outlines the acceptable wildcard syntax for the
    "Security page\ site to zone assignment list" group policy?  Ive read every forum post, website and blog I could find on the internet but nothing is clear and I wasn't able to find an MS document that steps it out. I've also changed the
    existing list a number of times based on blog posts etc but had no luck.
    **Please Note**
    I dont want to change to a different method or have an intellectual debate re why I would have these sites/wildacrd/policy set. I'm really looking to see what entry is invalid and where the documentation is for this policy setting so i can make sure they are
    always correct in the future. 
    thanks in advance for your time and assistance
    Simone
    PS: I've already read the following posts a number of times:
    I get no data but have identified the GP that is causing the issue:
    A test case for troubleshooting group policy application – Event ID 1085 and 7016 - http://blogs.technet.com/b/askds/archive/2008/08/21/a-test-case-for-troubleshooting-group-policy-application-event-id-1085-and-7016.aspx 
    I dont have any 2 letter domain names:
    Problems Adding Top-Level Domains to Zone Sites List - http://support.microsoft.com/kb/259493
    I tried formatting the list per this article:
    [Solved] The Group Policy client-side extension Internet Explorer Zonemapping failed to execute  - http://daily-it.blogspot.com.au/2008/09/solved-group-policy-client-side.html
    Has no domain wildcard format info:
    Behavior of Site to Zone Assignment List  - http://blogcastrepository.com/blogs/mattbro/archive/2006/09/07/2183.aspx
    Great article, no wildcard data:
    Internet Explorer Policy Settings  - http://technet.microsoft.com/en-us/library/bb457144.aspx
    Internet zonemapping problem: http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/a8756a27-b562-42ad-8782-87d284e6bcfb/
    Spiceworks Event 1085 (Warning) - http://community.spiceworks.com/windows_event/show/1582-microsoft-windows-grouppolicy-1085
    Event ID 1085 — Application of Group Policy - http://technet.microsoft.com/en-us/library/cc727303%28v=ws.10%29.aspx
    Application of group policy - http://technet.microsoft.com/en-us/library/cc727312%28v=ws.10%29.aspx
    Evt ID 1085 GP client-side extension IE ZoneMapping failed to exec  - http://www.winvistatips.com/evt-id-1085-gp-client-side-extension-ie-zonemapping-failed-exec-t706399.html
    Event 1085 - Internet Explorer Zonemapping - http://www.minasi.com/forum/topic.asp?TOPIC_ID=29206
    EventID.net - http://www.eventid.net/display.asp?eventid=1085&eventno=1412&source=Userenv&phase=1
    Event ID 1085 - Internet Explorer Zonemapping failed to execute - http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/2003_Server/Q_24897522.html
    UPDATE:
    I disabled the original policy and created a new one with only one trusted site address in it. Then I logged into a clean test machine did some testing.What I found after a few hours of testing was; regardless of the site that I have listed in group policy
    The HKCU\Software\Policies\Microsoft\Current version\Internet Settings\Zone Map Key registry entry is
    always updated with that entry on the workstation. So the workstation's registry always updates the key with
    *.sitename.com per the site that I have set in GP
    If I run GPUPDATE /FORCE over and over again, on the same machine, under the same user account, using the same DC I get:
    Failure, Failure, Failure, Success, Success, Success, Failure etc
    I wasn't able to determine any pattern to the failures, I tried stopping some of the processes on that machine but didn't find anything that would make it fail/succeed reliably.
    There is no AV or firewalls installed on my test machine
    Anyone have any more ideas?  I think I might install filemon and try to capture some more data unless there's a better tool?

    Yes, and that's straight from my Microsoft TAM. As long as you include an asterisk inside those site-to-zone mappings, you'll continue to see them. The key is whether or not they're working. In my environment, I've seen complete success using the
    http://*.domain.com, or
    https://*.domain.com, no matter if the site is http://www.domain.com or
    http://milk.does.a.body.good.domain.com. Despite the success, we continue to see the errors. It's much the same as Group Policy Preferences where you can apply a setting once, or repeatedly. If you apply
    something repeatedly and it's already set, lookout for some complaints in the application log. It really is annoying. There's potential to play with the logging levels, but I'll admit that my experience ranks as "novice" in this specific section of group policy.
    This link might get the creative juices flowing:
    http://blogs.technet.com/b/askds/archive/2008/07/18/enabling-group-policy-preferences-debug-logging-using-the-rsat.aspx
    I see you've already read a number of articles including "a test case for troubleshooting those event IDs"... I sympathize with your efforts. I despise warnings and errors that I can't solve or don't want to see, but I've researched a number of them to death
    and found that many are simply "normal". Uggg... I hope this helps, but please take my advice, as with anyone else's out here, with caution. I've seen some crazy recommendations. I saw a recommendation to install SQL on a DHCP server to get failover clustering
    up and running. I hope the guy asking for help didn't listen to that one! : ) - josh

  • Windows 7-Internet Explorer 8 and Mozilla Firefox 3.5

    Hi friends;
    I want to share that great news which is posted Steven Chan (Oracle Development) :
    I'm very pleased to announce that Microsoft Windows 7 desktop clients are certified for the Oracle E-Business Suite. Both Microsoft Internet Explorer 8 and Mozilla Firefox 3.5 are certified and supported on Windows 7 desktop clients.
    For more details, see:
    http://blogs.oracle.com/stevenChan/2009/12/win7_certified_ebs.html
    Regard
    Helios

    Hi,
    Apologize for the late reply and the misunderstanding about the ActiveX download location, we could change the location through the below registries:
    Use Registry Editor to change the "ActiveXCache" value to the location you want in the following registry key:
          HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    Use Registry Editor to change the "0" value to the location you want in the following registry key:
          HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ActiveX Cache
       NOTE: The values you enter in steps 1 and 2 must match.
    More information, please check
    How to Change the Download Location for ActiveX Files (registries exists in IE11).
    Regarding the urls that download the cab files into user profile directory, would you mind to share the URL?
    And here is some information regarding inf files:
    About INF File Architecture
    We may check the value of DestDir, DestDir can be set to 10 to place the file into the \Windows directory or to 11 to place the file into the \Windows\System directory. If no value is specified, the file is placed into the \Cache directory.
    Best regards
    Michael Shao
    TechNet Community Support

  • How to view PDF on Internet Explorer 11

    I have a new computer - Windows 7 Professional 64 bit, running Internet Explorer 11.  I have the Adobe Reader 32 bit and 64 bit add on enabled.  I am using the latest version of Adobe Reader XI (1.0.07).  I have my Internet Explorer options set to "Always Open Pop Ups in a New Tab", and "Open Links From Other Programs" is set to "The Current Tab or Window".  Some of my programs will generate a report as a PDF file.  When I open the report, I want it to open in a new tab in the current window (which I have always done with my old computer).  With this computer, the PDF opens in the stand alone Adobe Reader, and not in Internet Explorer.  Does anyone know how to make this PDF file open in a new tab using Internet Explorer 11 and Adobe Reader XI?

    The other issue, more rare, is that the reader module is not loading in IE.
    My problem was that IE11 was not automatically loading the PDF Reader module even though I had it enabled so I had to start by finding the Class ID of the add-on. You can find that by going to Tools, Manage Add-Ons, selecting the offending add-on (you might have to use the "Show All Add-ons" to see it), right click it, then choose More Information. That pulls up a window where you can see the Class ID. For my add-on the value was:
    {CA8A9780-280D-11CF-A24D-44553540000}
    You cannot copy and paste from that screen to the clipboard so you will need to carefully write down the Class ID. You will need an old-school analog input device like a pencil for that step (I know, so 20th century ).
    Next, go to the registry and find this entry:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\
    and see if there is an add-on listed under Settings with a matching Class ID. I did not have a matching key so I needed to create one.
    I added the missing key under Settings and then created a new DWORD value under that key. The DWORD is named "Flags" and needs a numeric value of 1 to enable the add-on or 0 to disable it. I wanted to use the add-on so I put in a value of 1.
    The combination of these two tweaks fixed my issue.  I am not sure if the step above is strictly needed because I initially screwed up and installed the TabProcGrowth key as  DWORD instead of String Value.  When I changed the value to correct type, I left the earlier step untouched cause if it ain't broken then don't fix it.  I also did a master reset of IE under Internet Options, Advanced.  That disables all the add-ons (as well as some other personal customizations) so you have to redo those changes as well.
    Mine was a clean install on a brand new, out of the box HDD following the untimely death of my old hard disk (RIP) so your mileage may vary if other apps have been messing with the registry.   I managed this with Win 7 Pro X64 and Adobe Acrobat Pro 11.7.

  • Flash Player not working in Windows 8.1 (Internet Explorer 11)

    Hi,
    I cannot get Flash Player to work in IE 11 on Windows 8.1 (on a Surface Pro). This has been going on for a while, and I was hoping that  I've tried the usual suggestions from this community:
    Ensure it's not disabled: the control is enabled.
    ActiveX filtering is OFF
    Removed IE as a feature and reinstalled it
    I tried reinstalling the latest MSU with Flash Player (13 now) from Microsoft's site (KB 2942844, 64-bit) and that installation fails. Attempting to install the Debug version from Adobe (also an MSU) fails as well.
    Before I did the above tests, I did notice that my ActiveX control was not from Microsoft or Adobe, it was from an unknown vendor. On another system, it reads it's from Microsoft Windows Third Party Application Component.
    Is there a way to clear this out and then hopefully successfully install the MSU?
    Please don't suggest to run Firefox or Chrome. I know I can do that, I am looking for a solution to run Flash in IE.
    SA.

    Speedbird_186 wrote:
    I tried reinstalling the latest MSU with Flash Player (13 now) from Microsoft's site (KB 2942844, 64-bit) and that installation fails. Attempting to install the Debug version from Adobe (also an MSU) fails as well.
    There are two registry keys and the KB patch that MUST BE manually removed before you can manually replace Flash Player ActiveX in Windows 8 or 8.1. I did it one time on a test machine and it was a MAJOR P.I.T.A.
    Before I did the above tests, I did notice that my ActiveX control was not from Microsoft or Adobe, it was from an unknown vendor. On another system, it reads it's from Microsoft Windows Third Party Application Component.
    ActiveX is a software framework created by Microsoft that adapts its earlier Component Object Model (COM) and Object Linking and Embedding (OLE) technologies for content downloaded from a network, particularly in the context of the World Wide Web. It was introduced 1996 (it's old enough to vote now - Yay!!!) and is commonly used in its Windows operating system. In principle it is not dependent on Microsoft Windows, but in practice, most ActiveX controls require either Microsoft Windows or a Windows emulator. Most also require the client to be running on Intel x86 hardware, because they contain compiled code. Adobe doesn't own or develop ActiveX. They write conformed code with it for the IE plug-in.
    Is there a way to clear this out and then hopefully successfully install the MSU?
    No. The ActiveX Flash Player plug-infor Win 8 or 8.1 can ONLY be modified, updated or repaired via Windows Update. You may need to repair IE first: http://support.microsoft.com/kb/318378  That'll fix the plug-in (in most cases) in Windows 8 & 8.1
    Please don't suggest to run Firefox or Chrome. I know I can do that, I am looking for a solution to run Flash in IE.
    Here's something to consider: Internet Explorer 11’s Many User-Agent Strings
    Microsoft is already trying to convince websites you visit THAT YOU ARE USING SOMETHING ELSE.
    Microsoft "rewrote" the User-Agent Strings for the abomination they call their latest and greatest browser.
    User-Agent Strings are what websites use to identify the browser you're using and provide the proper content for it's browser engine, like ActiveX stuff, and Flash or HTML5 video.
    Thanks to the "geniuses" in Redmond, WA, the User-Agent Strings for IE11 (which has a Trident engine), ID it as either "Gecko" (Firefox) or "Webkit" (Chrome, Opera, Safari).
    Trouble is: when the site the directs to the content for one of these two engines, the Trident engine in IE can't intepret it and the site then sees IE as an "unidentified" browser.
    The problem with an unidentified browser is that the plug-ins in that browser aren't recognized either, so even though you're up to date, it says you need the latest Flash Player when you use IE11. Or the content just doesn't play.
    YouTube... has converted to HTML5 video so if it doesn't detect Flash Player, it can display HTML5 (MP4) video which requires no plug-in to play. Not everyone has converted to HTML5 yet, though.
    Facebook and other game sites can't do that, because HTML5 doesn't apply to games... only video.
    Microsoft has no plans to "fix" the mess they've created because they think it's a great idea to block you out of content in the websites you visit.
    They recommend using "Compatibility View" and pretending that you're using an older verison of IE...
    Problem with that is that it's seen limited success, and you have to enable it for EVERY page that has problems... individually.
    I'm not big on "pretending" so I recommend using another browser, even if you don't like the idea. Since most of the websites you visit with IE11 already see it as Firefox or Chrome, you might as well actually be using one or the other.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that because it has its own Flash Player plugin built in.

  • Export to Excel button only launches in Internet Explorer window

    Hi Experts - A subset users that are experiencing issues with the option to Export to Excel via Web Analyzer on 7.0.  For others, including myself it works just fine.
    When they click the Export to Excel option after running a query, it only opens in an Internet Explorer window (no Excel options to manipulate data) and does not give them the typical MS Excel pop-up window (like I get) to OPEN or SAVE in Excel format.
    Thinking this would be an MS Excel or Internet Explorer setting somewhere, but don't know where to find it....
    Any help is appreciated!

    Hello,
    I think that you're right, the problem doesn't seem to come from anything in SAP servers (otherwise no user would be able to make it work right).
    If I understand well, you want to open an Excel window when selecting "export to Excel" option, not having the table opened in IE with an Excel tab. Am I right ?
    If it's the case, I think that this should work :
    In windows explorer, open tools -> folder options
    Tab "file type"
    find xls extension, and click "advanced" button
    uncheck "browse in the same window" button
    I'm using windows XP, therefore I can't guarantee that you'll find the same menus with another OS. Furthermore, I'm using a french OS, so my translations might differ slightly from what you'll actually have on screen. The result is reflected in the following registry key : HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Excel.Sheet.8
    (this could be a different key, depending on the MS Office version installed on your computer)
    You should now have a DWORD value BrowserFlags = 8
    If you have a helpdesk department in your company, that handles software installations, I guess that they should handle this problem (by broadcasting the change in registry ?). But if you're a small company, where everyone has the rights to change such settings, this method will be OK.
    Best regards,
    Giang DANG

Maybe you are looking for

  • How can I Use a Stored Procedure from Microsoft SQL Server?

    Hi All, Would like to use stored procedure as my data service in Visual Composer. Our version is VC7.0 SP20. Is stored procedure feasible? What is the system that i need to create  in Enterprise Portal? Currently i have BI JDBC System which only allo

  • Idoc configurations in PI7.3

    Hi Experts, For an Idoc scenario prior to PI 7.3, RFC destination, port, logical system and partner profile needs to be created in case of outbound Idoc scenario and again at XI side we need to create RFC destination, port and loading of meta data...

  • WUSB. Another Wireless DAQ solution?

    I wanted to begin doing data aquisition wirelessly. I think that using USB DAQcard and WiFi technology could be a good solution for a wireless DAQ application.  But I was wondering if using USB DAQcard with a WUSB hub (like the belkin cablefree usb h

  • Adding Google Chart in OBIEE 11g

    hi all.. I need to add google chart(interactive chart) in obiee 11g. Can any one please guide me in this... thanks and reagrds

  • LR4 drag to reorder images

    I hope LR4 includes being able to drag images around in "Grid View" to reorder them. This is a huge issue for a wedding photog who is working with assistant and has to order images from 4 or 5 camera bodies. Not good enough to select "sort by capture