There's easier way to uninstall IE9:
Extract the downloaded .exe with /x:[YourFolder]
Run (in CMD) pkgmgr.exe /up /m:[YourFolder]/IE9-Win7.CAB /quiet /norestart /l:[LogFile]
To stop users from getting the "Set up Internet Explorer 9" screen on first run, add the following registry key (it can be distributed via Active Setup):
Set objshell = CreateObject("WScript.Shell")
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set regex = new regexp
regex.IgnoreCase = true
regex.Pattern = "Microsoft-Windows-InternetExplorer-[a-zA-Z-]+~[a-zA-Z0-9~-]+9.[a-zA-Z0-9.~]+.mum"
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")
If CINT(LEFT(strValue,instr(strValue,".")-1)) >= 9 Then
LogMessage ("Uninstalling Internet Explorer version: " & strValue)
Set oEnv = objshell.Environment("PROCESS")
sysFolder = oEnv("WINDIR")
Set rootFolder = objFSO.GetFolder(sysFolder & "\servicing\Packages")
Set colFiles = rootFolder.Files
For each file in colFiles
If (regex.test(file.name)) Then
If objFSO.FolderExists(sysFolder & "\SysWow64") Then
LogMessage ("Removing " & "%WINDIR%\SysWow64\pkgmgr /up:" & Replace(file.name,".mum","") & " /quiet /norestart")
'objshell.Run "%WINDIR%\SysWow64\pkgmgr /up:" & Replace(file.name,".mum","") & " /quiet /norestart",TraceWindow,True
Else
LogMessage ("Removing " & "pkgmgr /up:" & Replace(file.name,".mum","") & " /quiet /norestart")
MSGBOX "pkgmgr /up:" & Replace(file.name,".mum","") & " /quiet /norestart",TraceWindow,True
'objshell.Run "pkgmgr /up:" & Replace(file.name,".mum","") & " /quiet /norestart",TraceWindow,True
End If
End If
Next
If err.number <> 0 Then
LogMessage "Uninstall Error - " & err.description & ":" & err.number
Else
LogMessage ("Uninstalling Complete, Reboot Required")
End If
Else
LogMessage ("Found Internet Explorer version: " & strValue & " Exiting Script, No Action Taken...")
End If
Set objShell = nothing
Set objFSO = nothing
Sub LogMessage(msg)
on error resume next
Dim oLogFile
If IsEmpty(oLogFile) Then Set oLogFile = objFSO.OpenTextFile(LogFile, 8, True)
oLogFile.writeline Now & " " & msg
End Sub
'=====================================================
I tried to use the script below but received access denied errors. Running it a second time seemed to work, but was not functional for an automated uninstall.
/quiet >> Identical to /passive, however, do not show any user interface.
/norestart >>Do not restart after installation has completed.
/update-no>>Do not check for Internet Explorer updates.
Taken from IE9 FAQ for IT professionals:
http://technet.microsoft.com/en-au/library/ff973977.aspx
Which updates are required to install Internet Explorer 9 on Windows 7?
On Windows 7, Internet Explorer 9 requires the following updates:
Update for Windows 7 and Windows Server 2008 R2 - KB2454826 (http://technet.microsoft.com/en-au/library/http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d209996)
How do I upgrade to Internet Explorer 9 on computers that already run Windows 7?
You can upgrade to Internet Explorer 9 from the Internet Explorer home page.
Do I need to install the required updates before installing Internet Explorer 9?
You do not need to download and install the required updates. The installation process will automatically download and install the required updates. You must download the updates and add them to your Windows 7 images if you are adding Internet Explorer 9 to them, however. You must also add the updates to your Microsoft Deployment Toolkit 2010 deployment share if you add the Internet Explorer 9 update to it.
How do I automate the installation of Internet Explorer 9 by using the offline installer?
Run the offline installer with the /quiet command-line option. For a complete list of command-line options, run the offline installer with the /help command-line option.
Does the offline installer keep end usersâ settings during an upgrade?
Yes. Internet Explorer 9 migrates Internet Explorer 7 and Internet Explorer 8 settings after upgrading. Settings include: user interface layout; home page and groups; add-ons, accelerators, and search providers; favorites, feeds, and history; Status and Command bar settings; and settings in the Internet Options dialog box.
How do I add Internet Explorer 9 to existing Windows 7 images?
You can add the Internet Explorer 9 update package and its required updates to Windows 7 images by using Deployment Image Servicing and Management (DISM). You must extract the Internet Explorer 9 update package from the offline installer by using the /x command-line option. Download the required updates from the Microsoft Download Center. For detailed information about servicing a Windows 7 image, see Phase 5: Managing and Servicing Your Windows Image (http://technet.microsoft.com/en-au/library/http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d206568) in the Windows Automated Installation Kit. For detailed information about DISM command-line options, see Operating System Package Servicing Command Line Options (http://technet.microsoft.com/en-au/library/http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d206569).
Can I add Internet Explorer 9 to my Microsoft Deployment Toolkit 2010 deployment share?
Yes. You can add the prerequisite update packages and the Internet Explorer 9 update package to your deployment share. During deployment, Microsoft Deployment Toolkit 2010 automatically includes the updates in to the image during installation. You must extract the Internet Explorer 9 update package from the offline installer by using the /x command-line option. Download the required updates from the Microsoft Download Center. Then, right-click Packages in the deployment share, click Import OS Packages, and follow the instructions on screen.
How do I extract the Internet Explorer 9 from the offline installer?
To get the Internet Explorer 9 update package, run the offline installer with the /x command-line option to extract its contents.
Taken from IE9 FAQ for IT professionals:
http://technet.microsoft.com/en-au/library/ff973977.aspx
Which updates are required to install Internet Explorer 9 on Windows 7?
On Windows 7, Internet Explorer 9 requires the following updates:
Update for Windows 7 and Windows Server 2008 R2 - KB2454826 (http://technet.microsoft.com/en-au/library/http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d209996)
How do I upgrade to Internet Explorer 9 on computers that already run Windows 7?
You can upgrade to Internet Explorer 9 from the Internet Explorer home page.
Do I need to install the required updates before installing Internet Explorer 9?
You do not need to download and install the required updates. The installation process will automatically download and install the required updates. You must download the updates and add them to your Windows 7 images if you are adding Internet Explorer 9 to them, however. You must also add the updates to your Microsoft Deployment Toolkit 2010 deployment share if you add the Internet Explorer 9 update to it.
How do I automate the installation of Internet Explorer 9 by using the offline installer?
Run the offline installer with the /quiet command-line option. For a complete list of command-line options, run the offline installer with the /help command-line option.
Does the offline installer keep end users’ settings during an upgrade?
Yes. Internet Explorer 9 migrates Internet Explorer 7 and Internet Explorer 8 settings after upgrading. Settings include: user interface layout; home page and groups; add-ons, accelerators, and search providers; favorites, feeds, and history; Status and Command bar settings; and settings in the Internet Options dialog box.
How do I add Internet Explorer 9 to existing Windows 7 images?
You can add the Internet Explorer 9 update package and its required updates to Windows 7 images by using Deployment Image Servicing and Management (DISM). You must extract the Internet Explorer 9 update package from the offline installer by using the /x command-line option. Download the required updates from the Microsoft Download Center. For detailed information about servicing a Windows 7 image, see Phase 5: Managing and Servicing Your Windows Image (http://technet.microsoft.com/en-au/library/http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d206568) in the Windows Automated Installation Kit. For detailed information about DISM command-line options, see Operating System Package Servicing Command Line Options (http://technet.microsoft.com/en-au/library/http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d206569).
Can I add Internet Explorer 9 to my Microsoft Deployment Toolkit 2010 deployment share?
Yes. You can add the prerequisite update packages and the Internet Explorer 9 update package to your deployment share. During deployment, Microsoft Deployment Toolkit 2010 automatically includes the updates in to the image during installation. You must extract the Internet Explorer 9 update package from the offline installer by using the /x command-line option. Download the required updates from the Microsoft Download Center. Then, right-click Packages in the deployment share, click Import OS Packages, and follow the instructions on screen.
How do I extract the Internet Explorer 9 from the offline installer?
To get the Internet Explorer 9 update package, run the offline installer with the /x command-line option to extract its contents.
Reviews related to Against Intuition Oy WOT for Internet Explorer
This website uses cookies.
By continuing to use this site and/or clicking the "Accept" button you are providing consent
Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our
websites or when you do business with us. For more information about our
Privacy Policy and our data protection
efforts, please visit
GDPR-HQ