Mod Edit: Split from http://www.bleepingcomputer.com/forums/t/602839/ie-11-issues/ - Hamluis.
We deploy IE 10 via SCCM 2007 and had the same issue so hopefully its the same for IE 11. The problem is caused by IE setup only allowing 10 seconds for the WMI query to finish, but WMI could take up 20 seconds to complete so it fails on a random number of machines. The next step taken by IE is to get the patch from the Internet and if your like most businesses the computer system account won't have proxy access to get out so the installation fails.
The fix or I should say workaround is to run the following script before the installation, which will then cache the result and will typically allow the IE install to complete as the query will for us anyway respond in about 5 seconds. We depoly this script about 5 minutes before the maintenance window for patch installation which opens at 11:00PM which gives us much better success.
So if your a deploy unattended another way or manually just run the script before installation.
Hope that helps
On Error Resume NextstrComputer = "."SET objWMIService = GETOBJECT("winmgmts:\\" & strComputer & "\root\cimv2")SET colItems = objWMIService.ExecQuery("Select HotFixID from Win32_QuickFixEngineering where HotFixID='KB2729094'")FOR EACH objItem in colItemsWscript.Echo objItem.HotFixIDNEXTWSCRIPT.ECHO "DONE!"WSCRIPT.QUIT
how do i run this script on SCCM 2007? i'm assuming it's not DOS command line?
tried saving as a .cmd file but doesn't appear to do anything.. is there a script format/file type for this?
also, is this the entire contents of the script? the "On error.." line at the top looks like it should follow something..
just did some searching online- is this vbscript or something else?
thank you!
Edited by hamluis, 20 January 2016 - 08:33 AM.