internet explorer - IE11 crashes when printing without Print dialog -


ie11 crashes during unprompted printing (without print dialog) when running in ie10 compatibility mode.

this sample html code causes ie11 crash:

<html lang="en">     <head>         <meta http-equiv="x-ua-compatible" content="ie=10" />         <meta charset="utf-8"></meta>         <title>microsoft internet explorer print test</title>          <script language="vbscript">             sub print()                 olecmdid_print = 6                 olecmdexecopt_dontpromptuser = 2                 olecmdexecopt_promptuser = 1                 call wb.execwb(olecmdid_print, olecmdexecopt_dontpromptuser,1)             end sub             document.write "<object id='wb' width='0' height='0' classid='clsid:8856f961-340a-11d0-a96b-00c04fd705a2'></object>"         </script>      </head>     <body>         print test.         <a href="#" onclick="print()">print</a>          </body> </html> 

this error reported in event log:

faulting application name: iexplore.exe, version: 11.0.9600.17840, time stamp: 0x555fe1bb faulting module name: shlwapi.dll, version: 6.1.7601.17514, time stamp: 0x4ce7b9e2 exception code: 0xc0000005 fault offset: 0x0001bb3a faulting process id: 0x2434 faulting application start time: 0x01d0a69151fbbc71 faulting application path: c:\program files (x86)\internet explorer\iexplore.exe faulting module path: c:\windows\syswow64\shlwapi.dll report id: 92c64479-1284-11e5-b1ca-005056c00008 

this started happening after kb3021952 installed. uninstalling kb3021952 doesn't fix problem.

is there known workaround problem? other options unprompted printing in ie? maybe there undocumented command line parameter available purpose (an equivalent '--kiosk-printing' in chrome)?

fix released microsoft: https://technet.microsoft.com/en-us/library/security/ms15-106 , described in https://support.microsoft.com/en-gb/kb/3099587.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -