Standalone IE installer?

2

I have been trying to use this IE11 installer labeled Internet Explorer 11 for IT Professionals and Developers--Windows 7 64-bit Edition and Windows Server 2008 R2 64-bit Edition (recommended), to upgrade IE9->IE11 on multiple PCs.

I try with the arguments /quiet /update-no /norestart as documented here. And yet it still fails with errors pertaining to updates:

00:04.524: WARNING: PauseAUThread: Failed to resume Automatic Updates: 0x80070005
00:04.555: INFO:    Setup exit code: 0x00009C47 (40007) - 
00:04.586: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1BD19.tmp
00:04.711: INFO:    Unable to remove directory C:\Windows\TEMP\IE1BD19.tmp, marking for deletion on reboot.
00:04.727: INFO:    Released Internet Explorer Installer Mutex

Is there a full standalone installer so it doesn't attempt updates to make automated deployment more reliable?

Google seems to indicate this error is as permission issue, but this is running under domain & local admin (both the user deploying it and any possible user logged in).

windows-7
internet-explorer
asked on Super User Oct 27, 2015 by Zeno • edited Nov 2, 2015 by Zeno

1 Answer

1

What you have is the full installer (it should be around 50MB in size).

Even though the installer is "standalone", it is still a Microsoft update (.msu) at it's core, not an independent MSI application. As such, it requires Windows Update to be working properly. The error you are seeing in the log is probably due to some other update that is pending, or Windows Updates being broken in general.

Basically, the error code (0x80070005) is an access denied error, which means it failed to update some file or registry setting that it expected to have access to. It should have prompted for elevation when you ran it. If you are not logged on as an admin, the prompt won't happen if UAC is off. If you are logged on as an admin, it shouldn't matter if UAC is on or off, but try right-clicking it and hitting "Run as Administrator" anyway and see if that helps.

This MS KB article might be helpful also. It contains a script that grants the Administrator account access to the central registry hives and Windows directories (in case permissions are broken).

answered on Super User Oct 30, 2015 by Wes Sayeed

User contributions licensed under CC BY-SA 3.0