Quantcast
Channel: Internet Explorer 8, 9, 10, 11 forum
Viewing all 10469 articles
Browse latest View live

Installtion of IE9 & Unstallaton of IE11

$
0
0

Hi,

I have Windows 7 & IE11 installed on my laptop. But I need IE9 to run one of my office application. When I tried to download IE9 from Microsoft site, I got a pop up window message that IE9 is already available on my system. I tried to locate IE11 symbol in Program uninstall menu. But I could not locate that. I want to know how shall I install IE9 & remove IE11 from my laptop.

Request you to please help me with a quick solution.

Regards

Aniruddha Karmarkar


IE11 Shows :Program not responding, on Desktop, after IE File is closed out

$
0
0

 Hi, I am looking for help with this odd problem and cannot find any other question like it.

My PC has Windows 7 64bit installed on HP pavilion g7 notebook. I use 32 bit browser I mostly go to in private as I have to erase all Temp internet files manually.(Different problem)   

  I always open IE , not in private first, and again before I close out to insure some needed      files are in temp internet files. I have done this for 3 years as this PC has a quirk and am        telling this just so you have all information. Still EI will close out, as below, no matter what!

After IE 11 update KB2962872 IE works well but very often after closing out IE file a message appears on my Desktop saying that the program is not responding....looks for solution.....then says to close out IE. But I had already closed it out???? The message takes 1 to 3 seconds to appear on my Desktop. Makes no sense and I have tried many things. Tried a compatibility       trouble-shooter and when  I give the file for IE it said this program cannot be tested.

IE does not show up in Programs and Files , from my control panel?

Event viewer shows Error:

Faulty Application name: IEXPLORER.EXE, version:11.0.9600.17207,time stamp:0x53a20c50

Faulty module name:MSHTML.dll, version:11.0.9600.17207                                                Execution code: 0xc0000005                                                                                               Faulty offset: 0x00482d4f                                                                                                   Faulty process id: 0x18eo                                                                                                   Faulty application start time: 0x01cf9df2ac176a84                                                                Faulty application path: C\: Program Files (x86)\ Internet Explorer\ IEXPLORE.EXE                  Faulty module path: C:\Windows\system32\MSHTML.dll

Action center shows this problem and thus my performance is about 2 on 10.

Thank you very much for looking at my question.       

                                                                                            

                                                   


IE 11 compatibility issues

$
0
0

Hi Support team,
My code works perfectly on IE 9 but does not work properly on IE 11. I have a list box which has some elements and has a button to select an element move it Up/Down. I am able to select an element and move it Up/Down, but only once.

I am not able to select any other element after that.

I am not allowed to use the below tag in my code.

<meta http-equiv="x-ua-compatible" content="IE=EmulateIE9" >

Below is my code u can open it on IE 11 browser and check.

<HTML><HEAD><STYLE type="text/css">
    body { font-family:Arial; }
    a { color:#00f; text-decoration:none; }</STYLE><SCRIPT type="text/javascript">
    function listbox_move(listID,direction){
    var listbox=document.getElementById(listID);
    var selIndex=listbox.selectedIndex;
    if(-1==selIndex){alert("Please select an option to move.");return;}
    var increment=-1;
    if(direction=='up')
        increment=-1;
    else
        increment=1;
    if((selIndex+increment)<0||(selIndex+increment)>(listbox.options.length-1)){return;}
    var selValue=listbox.options[selIndex].value;
    var selText=listbox.options[selIndex].text;
    listbox.options[selIndex].value=listbox.options[selIndex+increment].value;
    listbox.options[selIndex].text=listbox.options[selIndex+increment].text;
    listbox.options[selIndex+increment].value=selValue;
    listbox.options[selIndex+increment].text=selText;
    listbox.selectedIndex=selIndex+increment;
    }
    function listbox_moveacross(sourceID,destID){
    var src=document.getElementById(sourceID);
    var dest=document.getElementById(destID);
    var picked1 = false;
    for(var count=0;count<src.options.length;count++){
        if(src.options[count].selected==true){picked1=true;}
    }
    if(picked1==false){alert("Please select an option to move.");return;}
    for(var count=0;count<src.options.length;count++){
        if(src.options[count].selected==true){var option=src.options[count];
            var newOption=document.createElement("option");
            newOption.value=option.value;
            newOption.text=option.text;
            newOption.selected=true;
            try{dest.add(newOption,null);
            src.remove(count,null);
        }
            catch(error){dest.add(newOption);src.remove(count);
        }
        count--;
        }
    }}
    function listbox_selectall(listID,isSelect){
        var listbox=document.getElementById(listID);
        for(var count=0;count<listbox.options.length;count++){
            listbox.options[count].selected=isSelect;
            }
    }</SCRIPT><TITLE>Listbox JavaScript functions</TITLE></HEAD><BODY><table border="1" align="center" style="border-collapse:collapse;"><tr><td colspan="5" align="center"><font size="+2"><b>Listbox Functions</b></font></td></tr><tr valign="top"><th>Move up/down</th><td></td><th colspan="3">Move left/right</th></tr><tr valign="top"><td><SELECT id="a" size="10" multiple><OPTION value="a">Afghanistan</OPTION><OPTION value="b">Bahamas</OPTION><OPTION value="c">Barbados</OPTION><OPTION value="d">Belgium</OPTION><OPTION value="e">Bhutan</OPTION><OPTION value="f">China</OPTION><OPTION value="g">Croatia</OPTION><OPTION value="h">Denmark</OPTION><OPTION value="i">France</OPTION><OPTION value="j">Canada</OPTION></SELECT></td><td>&nbsp;&nbsp;&nbsp;</td><td><SELECT id="s" size="10" multiple><OPTION value="a">Afghanistan</OPTION><OPTION value="b">Bahamas</OPTION><OPTION value="c">Barbados</OPTION><OPTION value="d">Belgium</OPTION><OPTION value="e">Bhutan</OPTION><OPTION value="f">China</OPTION><OPTION value="g">Croatia</OPTION><OPTION value="h">Denmark</OPTION><OPTION value="i">France</OPTION><OPTION value="j">Canada</OPTION></SELECT></td><td valign="middle"><a href="#" onclick="listbox_moveacross('s', 'd')">?</a><br/><a href="#" onclick="listbox_moveacross('d', 's')">?</a></td><td><SELECT id="d" size="10" multiple><OPTION value="a">Albania</OPTION><OPTION value="b">Bohemia</OPTION><OPTION value="c">Brazil</OPTION><OPTION value="d">Bhutan</OPTION><OPTION value="e">Bolivia</OPTION><OPTION value="f">Chile</OPTION><OPTION value="g">Cuba</OPTION><OPTION value="h">Djibouti</OPTION><OPTION value="i">Finland</OPTION><OPTION value="j">Greece</OPTION></SELECT></td></tr><tr><td>
Move <a href="_____#" onclick="listbox_move('a', 'up')">? up</a>,<a href="#" onclick="listbox_move('a', 'down')">? dn</a></td><td></td><td></td><td></td><td></td></tr><tr><td>
Select<a href="#" onclick="listbox_selectall('a', true)">all</a>,<a href="#" onclick="listbox_selectall('a', false)">none</a></td><td></td><td>
Select<a href="#" onclick="listbox_selectall('s', true)">all</a>,<a href="#" onclick="listbox_selectall('s', false)">none</a></td><td></td><td>
Select<a href="#" onclick="listbox_selectall('d', true)">all</a>,<a href="#" onclick="listbox_selectall('d', false)">none</a></td></tr></table></BODY></HTML>

Deploy Internet explorer 11 with latest updates using SCCM 2012

$
0
0

Hello,

I'd like deploy IE11 with the latest updates included. The reason is that I want the IE 11 enterprise mode to be available as soon as IE11 gets installed.

I don't want to wait an update scan cycle to trigger the installation of the updates.

What is the best way to achieve that using SCCM 2012 ?

Regards,

Michel

IE sporadically aborting images being downloaded over SSL

$
0
0

For an out-of-the-box application deployed to our web servers, a few images are sporadically not being downloaded and the broken image (X) is displayed. The images that fail to download will vary from test to test but are typically restricted to the images in the left navigation menu bar. There are 5 navigation images and usually 1-3 will be broken for any given request to the page. The images are *.png and size ranges from 6000-8000 bytes.  There are several other images on the page but they never seem to be an issue. 

This problem only occurs using HTTPS and IE (tried versions 8, 9, 10, 11). IE works fine over HTTP and the web application works fine in Chrome and Firefox (both HTTP and HTTPS). This affects all users (small user base at this time).  Most users are running Windows 7 but this also fails when IE client is run from Windows Server 2008 R2.

In working with the web application vendor they were not able to replicate the issue in their local test environment. This problem occurs in all of our environments (test, uat, prod). Another out-of-the-box application provided by same vendor deployed to same web servers does not have the issue (but doesn’t have as many images).

While working the web application vendor, we were looking at a Wireshark trace that showed the client (IE) was cancelling the request for image(s) just milliseconds after the initial request was made for no apparent reason.

We have tried numerous IE setting changes (including IE Reset Settings).

Any suggestions on what could be causing this issue or how to further troubleshoot the issue to identify the problem?

Thanks in advance for any help you can provide.

Getting Java Script Error

$
0
0

Hi

when i click button in IE 8 . I am getting below JS erro.

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; MS-RTC LM 8)

could you please let me know how to resolve this . Thanks in Advance.

Include updated website lists from Microsoft - Not greyed out

$
0
0


Hi,

As per description of the Group Policy setting "Include updated website lists from Microsoft" on GPMC console, by disabling this setting, the Microsft-provided lists are not used and the user will not be able to activate the feature.

If you disable the setting under "Policies\Windows Components\Internet Explorer\Compatibility View\Include updated Web site lists from Microsoft" the checkbox is detached but it is not greyed out.

I have tried to set the policy under Computer Settings, User setting and also making a Registry edition under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\BrowserEmulation by setting "MSCompatibilityMode" to "1" but the behaviour is still not  the desired.

Does anybody know if there is any way to grey out this setting?

IE 10 and 11 freeze after KB2962872 - Web Application with File Upload/Download

$
0
0

IE 10 and 11 freeze after KB2962872 update with the following scenario:

Upload a file to a server, the server responses with a file download (like a simple conversion service).

Result: When the server is sending the file, IE freezes and process iexplore.exe is running with high CPU load.

IE 8 and 9 are not affected. And IE 10 and 11 without the KB2962872 update also work fine.

If IE 11 with KB2962872 is running in InPrivate mode, then it also works. In contrast to that, IE 10 with KB2962872 in InPrivate mode does not work.


Demo:

http://sharedspace.lima-city.de/upload.php

Just select any file. After clicking on "Upload", an empty text file "test.txt" should be returned. Instead nothing happens and the browser crashes/freezes.


Sourcecode:

upload.php

<form enctype="multipart/form-data" action="./service.php" method="POST"><input name="file" type="file" /><br><input type="submit" value="Upload" name="upload"/></form>

service.php

<?php header('Content-Type: application/x-download'); header('Content-DisPosition: attachment; filename="test.txt"'); ?>




Any solution so solve this problem?











IEAK11

$
0
0

I created a branding package for ie11 Favorites work  but trusted sites and other setting do NOT get deployed the log is 

Settings file is        "C:\Users\reale004\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\TBWPHI6G\install[1].ins";
07/15/2014 13:52:37         Target folder path is   "C:\Program Files (x86)\Internet Explorer\Custom".
07/15/2014 13:52:37     Done.

07/15/2014 13:52:37     Downloading additional customization files...
07/15/2014 13:52:37         Processing download of the cab files...
07/15/2014 13:52:37             Migrating cabs version information to per-machine settings...
07/15/2014 13:52:37             Per-machine settings already exist!

07/15/2014 13:52:37             Version checking and updating cab file...
07/15/2014 13:52:37             Required update information for "Branding" cab was not found!

07/15/2014 13:52:37             Version checking and updating cab file...
07/15/2014 13:52:37             Required update information for "Desktop" cab was not found!
07/15/2014 13:52:37         Done.
07/15/2014 13:52:37     Done.

07/15/2014 13:52:37         About to clear previous branding...
07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing migration of old settings...
07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing wininet setup...
07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing deletion of connection settings...
07/15/2014 13:52:37         Existing connection settings weren't specified to be deleted!
07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing zones HKCU settings...
07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing local machine policies and restrictions...
07/15/2014 13:52:37             ! processExtRegInfSectionHelper for section"ExtRegInf.Hklm".
07/15/2014 13:52:37             ! File "custsec.inf" doesn't exist.
07/15/2014 13:52:37             ! File "inetcorp.inf" doesn't exist.
07/15/2014 13:52:37             ! File "inetset.inf" doesn't exist.
07/15/2014 13:52:37             ! Key is  "SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}".
07/15/2014 13:52:37             ! File "seczones.inf" doesn't exist.
07/15/2014 13:52:37             ! File "programs.inf" doesn't exist.
07/15/2014 13:52:37             ! Key is  "SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}".
07/15/2014 13:52:37             Machine is not hardened

07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing current user policies and restrictions...
07/15/2014 13:52:37             ! processExtRegInfSectionHelper for section"ExtRegInf.Hkcu".
07/15/2014 13:52:37             ! File "custsec.inf" doesn't exist.
07/15/2014 13:52:37             ! File "inetset.inf" doesn't exist.
07/15/2014 13:52:37             ! File "inetcorp.inf" doesn't exist.
07/15/2014 13:52:37             ! Key is  "SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}".
07/15/2014 13:52:37             ! File "seczones.inf" doesn't exist.
07/15/2014 13:52:37             ! File "programs.inf" doesn't exist.
07/15/2014 13:52:37             ! Key is  "SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}".
07/15/2014 13:52:37             Machine is not hardened

07/15/2014 13:52:37         Done.

07/15/2014 13:52:37         Processing legacy policies and restrictions...
07/15/2014 13:52:37         There are no legacy *.inf files to process!
07/15/2014 13:52:37         Done.

I have added the server to the intranet zone and its set ti low


Gpupdate /force changes IE advanced option "play animations in webpages" and "Sounds"

$
0
0

Hello,

I installed IE11 in Windows 7. When I check http://www.buienradar.nl/ the animation is not playing. If I enable the advanced option "play animations in webpages'. It works. But when I do a gpupdate /force. the option is disabled again.

The strange thing is that the GPO setting 'play animations in webpages' is not configured. Gpresult /h or Group policy result also says there is no setting wich should do this. (as a domain admin so I see computer and user settings)

Does IE11 has a feature which resets this setting to default after a gpudate?

I prefer not to enable the  'play animations in webpages' because a user cannot change it anymore.

Setting a preference will result in the same behaviour as enable the option manually.

Thanks in advance,
Peter


tabs are tearing away into new windows

$
0
0

Hello!

I'm having a recurring issue with my Acer laptop, using IE 11 for Windows 7: periodically, a tab will seem to 'stick' to my finger and fly off and become its own window. I'd love to stop this happening, or at least to figure out how to reintegrate it back into the row of open tabs, to keep things to one browsing window.

Thanks a lot!

IE 11 View\Zoom\Custom Not Available

$
0
0

Surface Pro 2
Windows 8.1 Pro with Update

Windows Update upgraded my browser from IE 10 to IE 11.  Now View\Zoom\Custom doesn't bring up the window for entering the zoom level.

When I click on Custom the only thing that happens is the menu closes.

I need to be able to set it to 90% for an application I use.  How do I fix this?  


http://www.saberman.com

HTML Link to Current Directory Has Problem (s)

$
0
0

DOS 4.2 was almost, almost there. We seem to have a sleepy foot! To code a link to a current directory (local authoring), this link's shorthand is

<a href="./" target="_blank">Please don't blink!</a>

In spite of the target designation, Internet Explorer unloads current page data andreloads entire page, as Windows 8.1 Pro File Explorer opens. Y-A-W-N!

How to block dump-reload for literal local external links (maintaining adorable shorthand linking, of course)?


2014... 30 years an artist (web design, not development)



Can't download files from the Internet

$
0
0
I am running Winsows 7 Pro, Internet Explorer 11 on a new Dell desktop. Whenever I try to download a file from the Internet, a MSN File Download window opens up that says "Getting File Information". Then after a few seconds, a new window opens that says "We were unable to locate the file to download". What settings do I need to change to correct this?

"SCRIPT70: Permission denied" error when trying to access old document from reloaded iframe

$
0
0

Hi,

I am facing the issue similar to the one posted in the following thread and i see that its still active but i am not sure if this is fixed as i still see this issue happening while trying to access existing document from a reloaded frame. I see that there is a note from MS that its not being addressed currently but its so many months now and i am not sure if this has still not been addressed. Could some one please let me know if this issue is addressed if not any other generic work arounds ? as i see that most of the workarounds suggested are specific to their use cases and they dont fit in my case. Here is the link

https://connect.microsoft.com/IE/feedback/details/802251/script70-permission-denied-error-when-trying-to-access-old-document-from-reloaded-iframe

Thanks

Kamalesh.


kamalesh


ActiveX controls not downloaded when using Internet Explorer 10

$
0
0

We have many legacy applications developed using ASP and VB(InterDev). Our organization is moving to use Internet Explorer 10 in the near future.

We had a IE10 compatibility testing for our legacy applications and we observed that the applications using ActiveX controls are not working. Applications works perfectly fine with the older version of Internet Explorer.

We looked for the various workarounds but we did not find any.

Some application does nothing when we click on a button to generate the report but some applications throws the below error:

<div id="x_x_imcontent"> <div style="font-size: 9pt; direction: ltr;">"ActiveX control failed to load! -- This control is required to use the Address Book and Attachment features.  Please check your browser security settings and/or contact PC Support to install the digitally signed control."</div></div>

We will be glad if we get any assistance on this issue.

Unable to Select Checkbox using Toggle In Internet Explorer Version 11

$
0
0

Hi ,

I am using Many Check Box list in my Java Servlet Application

_______________________________________

I am able to Select All checkbox using 

<input name="toggleAll" id="toggleAll" onclick="ToggleAll(this)" type="checkbox" />

But While Selecting only one Check Box unable to check it.

<input name="ChckBx" id="chk1_4" onclick="Toggle(this)" type="checkbox" />

It throws error as "Toggle is undefined".

kindly Advice on this issue.

Internet Explorer Intranet Security Zone not Keeping Sites

$
0
0

At my work, whenever we log into sharepoint for the first time we have to actually input our name and password. After logging in, we add our sharepoint site to the local intranet security zone so that it automatically will sign us in from that point on. However, whenever I try to add the site to my personal local intranet zone (as in the one on my computer, as this has worked on many others) it does not stay. As soon as I exit the window where I added the site, it is completely erased from the face of the planet. I also have tried adding it to the Trusted Sites zone, but that doesn't seem to be working either.

In an attempt to fix this problem, I have looked at all of my settings, including advanced, but have not seen anything that looks particularly wrong. Being as this didn't seem to be the problem, I uninstalled and reinstalled IE 11. This still warranted no change. Has anyone else had this problem, or does anyone at least know what I can do to fix it?

problem

$
0
0

a blue screen show and written on it " bad pool caller " when i put modem 3g and this is the link of my dumps file

http://www.mediafire.com/download/rgarv63992x1x7h/dump.zip

help me !

 

IE 11 Hide Address bar but keep Forward and Back buttons or disable typing in address bar

$
0
0

Hi

I would like to hide the address bar but still be able to use the forward and back buttons and some other features.  I have add the rege key to remove nav bar but that removes everything.  Im using this in a citrix xendesktop environment.  I will deploy a site but don't want the users to navigate to other sites.  For instance go to our intranet site but stop them from going to our firewall gui page. So when they click on links I wont them to be able to go back to the previous page.  Any ideas?

Viewing all 10469 articles
Browse latest View live




Latest Images