/build/static/layout/Breadcrumb_cap_w.png

Against Intuition Oy WOT for Internet Explorer

Version: 9

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 5.2k  |  Created: 11/28/2009

Average Rating: 0
WOT for Internet Explorer has 1 inventory records, 1 Questions, 0 Blogs and 4 links. Please help add to this by sharing more!

Deployment Tips (8)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 0 / 5 (Not Rated) based on 0 ratings
Most Commonly Reported Deployment Method
Not Determined
4
Command Line
---------------------------
Install Windows Internet Explorer 9
---------------------------
Help Options:
/help Display all Available switches.

Setup Modes:
/passive Run the installation without any interaction.
/quiet Identical to /passive, but without any GUI.

Setup Options:
/update-no Without Internet Explorer updates.

Restart Options:
/norestart No restart after installation.
/forcerestart Restart after installation.

Miscellaneous Options:
/log:<path> Generate a log file at <path>.
/x:<path> Extract the executable at <path>.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Command Line
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]

or use switches as needed (pkgmgr.exe -?)
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Note
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):

HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Main
"DisableFirstRunCustomize"=dword:00000001
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Command Line
@echo off
if not "%minimized%"=="" goto :minimized
set minimized=true
start /min cmd /C "%~dpnx0"
goto :EOF
:minimized

ver | find "2003" > nul
if %ERRORLEVEL% == 0 goto ver_2003

ver | find "XP" > nul
if %ERRORLEVEL% == 0 goto ver_xp

ver | find "2000" > nul
if %ERRORLEVEL% == 0 goto ver_2000

ver | find "NT" > nul
if %ERRORLEVEL% == 0 goto ver_nt

if not exist %SystemRoot%\system32\systeminfo.exe goto warnthenexit

systeminfo | find "OS Name" > %TEMP%\osname.txt
FOR /F "usebackq delims=: tokens=2" %%i IN (%TEMP%\osname.txt) DO set vers=%%i

echo %vers% | find "Windows 7" > nul
if %ERRORLEVEL% == 0 goto ver_7

echo %vers% | find "Windows Server 2008" > nul
if %ERRORLEVEL% == 0 goto ver_2008

echo %vers% | find "Windows Vista" > nul
if %ERRORLEVEL% == 0 goto ver_vista

goto warnthenexit

:ver_7
IF EXIST "%ProgramFiles(x86)%" (
goto S64bit
) ELSE (
goto S32bit
)

:ver_2008
goto exit

:ver_vista
IF EXIST "%ProgramFiles(x86)%" (
goto V64bit
) ELSE (
goto V32bit
)

:ver_2003
goto exit

:ver_xp
goto exit

:ver_2000
goto exit

:ver_nt
goto exit

:S64bit
IE9-Windows7-x64-enu.exe /quiet /update-no /norestart
goto exit

:S32bit
IE9-Windows7-x86-enu.exe /quiet /update-no /norestart
goto exit

:V64bit
IE9-WindowsVista-x64-enu.exe /quiet /update-no /norestart
goto exit

:V32bit
IE9-WindowsVista-x86-enu.exe /quiet /update-no /norestart
goto exit

:warnthenexit
echo Machine undetermined.

:exit
REM This script will delete everything in current folder even folder itself, use for %TEMP% only
CD ..
START CMD /C RMDIR /S /Q "%~dp0"
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
Below is an uninstall script I received from Microsoft.

'========================================================
'On Error Resume Next
Const TraceWindow = 0
Const HKEY_LOCAL_MACHINE = &H80000002
Dim LogFile :LogFile = "c:\temp\IE9_uninstall.log"
strComputer = "."

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")

strKeyPath = "SOFTWARE\Microsoft\Internet Explorer"
strEntryName = "Version"

objReg.GetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strEntryName,strValue

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
'=====================================================

Additional information:
http://technet.microsoft.com/en-us/library/cc748979(WS.10).aspx

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.

FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*9.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /norestart"
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Command Line
IE9-Windows7-x64-enu.exe /quiet /norestart /update-no

/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.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
-2
Note
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.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
-2
Note
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.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

WOT for Internet Explorer

Version

9.4.14.0

Uninstall String

MsiExec.exe /X{DB6BD5D5-8482-45C0-99CF-745C5B924497}

Questions & Answers (1)

Questions & Answers related to Against Intuition Oy WOT for Internet Explorer

3
ANSWERED

Blogs (0)

Blog posts related to Against Intuition Oy WOT for Internet Explorer

Reviews (0)

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