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

Internet Explorer

$
0
0
Can Microsoft give me a correct answer to my problem or do I need to use Linux or Mac?

IE11 fails to reach any website after update

$
0
0

Hello,

we run IE9 in our company. In fact, if we try to update a client's IE9 to IE11, he can't reach any website anymore. This happens often after hibernation mode but in my case directly after the update. 

It loads infinitely long. If we restart the client, the problem is gone for a while.

I used WireShark to get a look into, with the following results.

The first errors10.99.246.4 is our Domain Controller.
10.199.150.146 is my client.

Best regards and thanks in advance,
Phillip

Internet Explorer 11 installation WMI Timeout KB2729094

$
0
0

Hey,

I have a lot of Win7 SP1 PCs here on which I receive an WMI timeout error during Internet Explorer 11 installation.
Error is the following (always with the same hotfix):

WMI query for Hotfixes timed out. Query string: 'Select HotFixID from Win32_QuickFixEngineering WHERE HotFixID="KB2729094"'  Error: 0x00040004 (262148).
If I run the same query in powershell it takes long, but it ends with success.
Get-WMIObject -Query $('Select HotFixID from Win32_QuickFixEngineering WHERE HotFixID="KB2729094"') -Namespace "ROOT\CIMv
What I already tried was to reinstall the hotfix.
I although applied hotfix KB2834140 of slow WMI and tried to repair the WMI with following batch:
sc config winmgmt start= disabled
net stop winmgmt /y
%SYSTEMDRIVE% >nul
cd %windir%\system32\wbem
For /f %%s in ('dir /b *.dll') do regsvr32 /s %%s
wmiprvse /regserver
winmgmt /regserver
net start winmgmt
for /f %%s in ('dir /b *.mof *.mfl') do mofcomp %%s
But all without success. If I reistall the device installation works without problems, but it is not possible for me to reinstall nearly all my devices newly.


Thank you for help in advance.

AXIS RSClientPrint Install fails without admin access to Downloaded Program Files protected folder.

$
0
0

We are trying to override being an admin for general users to use the RSClientPrint control through IE.  We would like all users to be able to click on the Print Icon and allow the install of the RSClientPrint control to complete and then run the control. We setup hosts for the SSRS servers and load balancers in trusted sites and Group Policy updates as recommended as well for trusted hosts.  Something is still preventing the install from occurring and believe it is still not having read/write access to the Downloaded Program Files folder.

The closest thing i have found thus far to anything close to resolving this problem would be IE settings are overwriting the AXIS settings.
https://social.technet.microsoft.com/Forums/windowsserver/en-US/f620e665-2128-4ea5-a4b2-808e81eda2d7/axis-gpo-ssrs-2012-and-rsclientprint-continues-to-prompt-for-install?forum=sqlreportingservices

Please help.


John

Microsoft Edge will close as soon as I open it.

$
0
0

Sorry I couldn't find the Edge option on the forum list.

What happens is I click on the Edge icon on the toolbar and it closes as soon as the window opens.

What could be the problem?

Setting IE as default browser in group policy and preventing users changing the default

$
0
0

I've ready many pages and threads so far about this, some helpful and some not, but I still haven't got a working solution. I need to ensure that our corporate desktops have IE11 set as their default browser, whilst allowing Chrome as a secondary browser, mostly on Windows 7 machines but also on some Windows 8+ machines. I need to apply this across the organisation preferably using Group Policy. I can't find anything so far that works for me. Any pointers would be helpful.

Mark

internet explorer is respondingvery slowly...keep gettting IE is not responding remarks

$
0
0
Inteternet Explorer is very, very slow iin responding ..keep getting error message "IE not responding

After IE11 rollout (via update) PDF's and attachments open in blank pages. ONLY with this window.

$
0
0

This is the window that makes it so NO attachments either open or save anywhere. If we have machines that don't use this pop-up but rather the one that comes from the bottom of the window (looks like a taskbar) asking you to save as or open that works. Then a PDF will open or save. This windows seems to hinder anything from happening. 

How do you get rid of this pop-up??


internet explorer

$
0
0

When on utube +google plus the spell checker used to work,but now its stop working.I contacted utube and they said it was something to do with IE10 setting.I have gone into tools manage add on and turn spell checker on but it still doesnt work.Any ideas please???

Window 7 OS

Where can I get ie9 64-bit install for windows server 2008 r2 sp1?

$
0
0

Hi,

I need to get an ie9 64-bit install for Windows Server 2008 R2 sp1. Where can I get it? I tried the download page for ie9 and it gives me a download where I get the error system not supported.

Many Thanks,

-Tony



Submit/Logins Buttons Only Work in InPrivate Browsing

$
0
0

Hello!

We found that AutoFill was not prompting/working for the website: https://wholesale.flagstar.com despite re-enabling the Prompt in IE10. I did find the "<formaction="/Lending/process/loginUser"name="formLogin"method="POST"autocomplete="off">" near the Login Field. We decided to upgrade to IE11 in hopes of getting past the 'autocomplete="off"' as I have read that IE11 bypasses it.

Upon upgrading to IE11, we accessed the above website, attempted to login using known credentials, and I am unable to select the "Login" button. Nothing appears to work. The only way I am able to login to the page (outside of using another Browser, which the client cannot use), is if I access the above webpage using InPrivate browsing. 

I also noticed I am unable to "View Source" in the users IE11. I have also ran IE11 with 0 plugins to no avail. 

This user describes the same issue to a "T" > http://answers.microsoft.com/en-us/ie/forum/ie10-windows_7/website-buttons-only-work-in-private-browsing/abb10ffa-f253-4a86-9631-877bb7bb6378

I am still researching, but I figured it was a good time to post. 


Edge browser drag and drop files not working

$
0
0

When I try to drag a file in from Windows Explorer to the browser, it just shows a "not allowed" symbol

It works in Internet Explorer, Chrome, Firefox, and Opera, but not Edge, what am I doing wrong?


+ function($) {
    'use strict';

    var dropZone = document.getElementById('drop-zone');
    var uploadForm = document.getElementById('js-upload-form');

    var startUpload = function(files) {
        console.log(files)
    }

    uploadForm.addEventListener('submit', function(e) {
        var uploadFiles = document.getElementById('js-upload-files').files;
        e.preventDefault()

        startUpload(uploadFiles)
    })

    dropZone.ondrop = function(e) {
        e.preventDefault();
        this.className = 'upload-drop-zone';

        startUpload(e.dataTransfer.files)
    }

    dropZone.ondragover = function() {
        this.className = 'upload-drop-zone drop';
        return false;
    }

    dropZone.ondragleave = function() {
        this.className = 'upload-drop-zone';
        return false;
    }

}(jQuery);



IE 11 not able to add Search Provider

$
0
0

This is brand new Windows 8.1 install, freshly installed O365 and all critical updates installed.

So I click on the gear in IE, select Manage add-ons.

This opens the Manage Add-ons window, I click on Search providers, it only shows Bing.

I click on Find more search providers... at the bottom of the window, this opens IE with a list of the search engines. I click on Google, which loads the google search page.  When I click the Add to Internet Explorer button nothing happen, nothing gets added, no message gets display, NOTHING.

I see the button wants to run a javascript, so I go back in add this site to trusted sites, thinking that will allow it to run.  Close browser, re-open, try again, same outcome .... NOTHING.

So next I go and reduce the security level to low for trusted sites, figuring this will allow the script to fire off.  No luck, still nothing.

Next I go to windows features, un check IE 11, reboot, go back in again check IE 11.  Try it again, still nothing.

Finally I installed the Google Toolbar for IE check the box for making google the default search, after install reboot, guess what .... still nothing but Bing listed in search providers.

Is there another way to repair IE 11 on Windows 8.1?  I have done this many times in the past, why now is this such an issue? Can I manually put this into the registry?


Cheers,
Curt Winter
Certified Microsoft Professional
Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied. If you found my post helpful, please mark it as the answer.

SSL Cerificate not prompting to choose in IE11.

$
0
0

Hi Guys,

I've been struggling to know how the IE or windows system behaves while SSL used for webservice call. As far as I know its simple to install pfx or p12 file into personal truststore and then install the Root singer certificates in Trusted root authorities. Now the problem Im facing is that I have 3 personal (key(pfx)) files installed in the Personal store and while accessing the webserivce url with mutual authentication, IE11 use to prompt which certificate should you use and I had selected respective certificates. While troubleshooting the issue I have removed 2 of 3 and tested with no success. Now I imported the other 2 that I removed and surprisinggly its not prompting to choose certificates as it did earlier. So is there any option that tells IE to use any default pfx or should we remove all of them and export again in the order that we want ??

 

IE11 throwing error - .xls couldnt be downloaded. Error is only with IE11. Working in other browsers.Its ASP.NET application.

$
0
0

Hi,

In my ASP.NET application (VS2013), excel file dowload function is written as below.

 Response.Clear()
 Response.AddHeader("content-disposition","attachment;filename=xyz.xls")
 Response.ContentType = "application/vnd.xls"
....
....
 Response.Flush()
 HttpContext.Current.ApplicationInstance.CompleteRequest()

It is working fine in IE8, Mozilla and chrome

but in IE11 its not working properly.Giving error "xyz.xls couldnt be downloaded"

Strange thing is that, on very few client systems it works in IE11 too.

Please help on this.

Thanks in advance for your help !


icon missing from desk top

$
0
0
I just downloaded windows 10 and my internet explorer icon did not reappear. I use this for connections to my place of employment. I cannot down load it again for the system is telling me I have it downloaded already. Please advise.

Eliminate social media buttons

$
0
0

I often encounter social media buttons while browsing.

I must use a "zoom" setting to read browser content.

The buttons cover the browser text.

The below image shows about the left third of the browser content window, in an example session.

These buttons have ruined my ability to browse.

I have no use whatever for them (I use neither Facebook or Twitter).

I've grown to despise them, actually.

Is there any way to configure IE (or another browser) to never, ever display them?

Thanks

Green Online Videos/previews?

$
0
0

I recently upgraded to windows 10 and then got into very frustrating experience. I cannot watch any videos online as now they all appear to be 'green'. I have explorer 11. and until yesterday everything was fine. However, all my video files, and online viewing got messed up since I upgraded to windows 10. Please help, otherwise I have no option but to go back to windows 7.

Regards,

Rez

After installing Windows 10, I cannot find my bookmarks. How can I get them back?

$
0
0

After installing Windows 10, I cannot find my bookmarks. How can I get them back?

How to Make Internet Explorer work with Youtube 60Fps

$
0
0

Hello!

I've came up with this problem with my IE 11 where I can't load 60fps youtube videos, since my laptop is low end now a days, I can't run 60fps on chrome because of too high CPU usage and low RAM memory.

Althought I know it is possible to run 60fps video on IE since it is less demanding, the only problem is that it won't work, I've gone into youtube.com/html5 and activated it and all I can get is 720P resolution therefore i'm asking for your help with figuring out what's going on.

h ttp ://prntscr. com/7zo2f3 -After Activating HTML5

h ttp ://prntscr. com/7zo2xb -Before Activating HTML5

h ttp ://prntscr. com/7zo3hh -Evidence that HTML5 was activated

I'm running Windows 7 ultimate, Acer aspire 5742 I3 380M 4Gb RAM, Intel HD Graphics

Sorry for having to space out the links, my account isn't verified yet?

Viewing all 10469 articles
Browse latest View live




Latest Images