04.09.2019

Desinstaller Internet Explorer 11 Windows 10

Desinstaller Internet Explorer 11 Windows 10 Average ratng: 3,7/5 440 reviews

How to disable Internet Explorer 11 in Windows 8/8.1. Press the start key on your keyboard and the Windows Modern UI will then appear. Right click and select ‘all apps’. Once in ‘all apps’, search for ‘Control Panel’ and open it. Go to ‘Programs’, then go to ‘Uninstall a program’. Look for ‘Turn Windows features on or off’.

Categories: Internet Explorer

In other languages:

Español: desinstalar Internet Explorer por completo, Italiano: Disinstallare Completamente Internet Explorer, Deutsch: Den Internet Explorer vollständig deinstallieren, Português: Desinstalar o Internet Explorer Completamente, Русский: удалить Internet Explorer, Français: complètement désinstaller Internet Explorer, 中文: 彻底卸载Internet Explorer, Bahasa Indonesia: Menghapus Internet Explorer secara Keseluruhan, Nederlands: Internet Explorer verwijderen, العربية: إلغاء تثبيت متصفح انترنت إكسبلورر تماما, Tiếng Việt: Gỡ bỏ hoàn toàn Internet Explorer, ไทย: ปิดการทำงานของ Internet Explorer โดยสมบูรณ์, 한국어: 인터넷 익스플로러를 완전히 삭제하는 방법, हिन्दी: इंटरनेट एक्स्प्लोरर को पूरी तरह से अनइंस्टॉल करें, 日本語: Internet Explorerを完全にアンインストールする

  • Print
  • Edit
  • Send fan mail to authors

Apologies for the slightly vague question but I'm pulling my hair out. Since this update we have had numerous calls regarding printing from our web app. Our web app uses an iframe and we use css @media print to hide all but this iframe for printing purposes. Since the update the user receives an Error 404--Not Found instead of the actual page. It would seem from the network trace that IE creates a temp .htm file in the local directory like D3CD911.htm, it then downloads css/js resources and then finally it makes this call /D3CD911.htm. This is making a call to www.mywebsite.co.uk/D3CD911.htm. This obviously does not exist on the website so the 404 is returned.I struggling to find a pattern to the problem and it doesn't seem to be affecting other public sites. I think the issue is with window.print() method. I can semi reproduce it here at https://www.primefaces.org/showcase/ui/misc/printer.xhtml. If you click the print button you will get the error. Although this is using the jqprint javascript function if you then use the browser print button it also fails.

Any guidance would be much appreciated.

andyfinchandyfinch
5801 gold badge12 silver badges26 bronze badges

7 Answers

andyfinch, you're a genius! The following code appears to work for a print button contained within a frame:

Randell
4,7494 gold badges40 silver badges69 bronze badges
ThomThom

Update:Microsoft have now released a patch: Microsoft IE patch

Just wanted to summarise the workarounds I've found and which have been posted here.

1) If you are using your own print button change to use document.execCommand('print', false, null);. Test support using document.queryCommandSupported('print') and call window.print() if not supported (Prob just Firefox)

2) Use Print Preview. Additionally select the part of the page to print, right click and select print preview. Then select As selected on screen.

3) Use another browser like Chrome

4) Uninstall the update

5) Wait for Microsoft fix. Their KB page KB Link has been updated with this as a known issue. Therefore you assume a fix is on the way.

andyfinchandyfinch
5801 gold badge12 silver badges26 bronze badges

andyfinch's workaround is also working for us. Thanks Andy!

MS has flagged this issue with 'WON'T FIX' (6/15/17): https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/12349663/ Update: that flag might just indicate that it's not an issue with MS Edge so it won't get fixed by the Edge developers.

Installing KB4021558 breaks printing from our website (the pages are blank, the footer shows some variant of 'res://ieframe.dll/i273gyew.htm'). Uninstalling it restores printing functionality.

KB4021558 is also included in KB4022719, KB4022725 and KB4022727.

ScottDWScottDW

I found a workaround: if the iframe you're trying to print is visible, right click on it and choose Print preview.. instead of Print.. from the context menu. The preview seems to be printable (but may show only part of the frame contents).

Also, for the record, the problematic 64-bit Win7 update is KB4022719.

mcdmcd

MS released updates yesterday (June 27th) that address it for Windows 10:

This non-security update includes quality improvements. No new operating system features are being introduced in this update. Key changes include:

• Addressed an issue introduced by KB4022715 where Internet Explorer and Microsoft Edge printing from a frame may result in 404 not found or blank page printed.

Links:

Windows 10 (Initial Release - Build 10240)

Is my wifi secure test

Windows 10 Version 1511 (Initial Release - Build 10586)

Windows 10 Version 1607 (Initial Release - Build 14393)

Windows 10 Version 1703 (Initial Release - Build 15063)

I grabbed them from the Windows Update Catalog today, to use with WSUS.

techie007techie007

Heres the workaround I have been using for this in IE 11:

  1. Right click frame and choose select all, or [ctrl + A] in the frame
  2. Right click and choose print preview
  3. There should be an option in your preview for 'As selected on screen'. Choosing this allowed me to print everything in the frame.
Bobcat88Desinstaller Internet Explorer 11 Windows 10Bobcat88
3511 gold badge4 silver badges19 bronze badges

Install Internet Explorer 11 On Window…

We were having multiple frames in the print screen and calling document.execCommand('print', false, null); could not fix our issue. Instead window.parent[frameName].document.execCommand('print', false, null); fixed it.

an33shan33sh

protected by CommunityJun 14 '17 at 19:29

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Not the answer you're looking for? Browse other questions tagged internet-explorer-11 or ask your own question.