Internet Explorer 9 has many command line switches that can be used with the installer. To use the switch, you need to run the setup program in the command prompt (cmd.exe) in the following format (using Windows 7 as an example):
IE9-Windows7-86-enu.exe [switch1] [switch2] ...
Options:
Command Line Switch
Description
/help
Displays this document.
Setup Modes:
/passive
Run the installation without any input from the user.
/quiet
Identical to /passive, however, do not show any user interface.
/update-no
Do not check for Internet Explorer updates.
/ieak-full:<path>
Reserved for Internet Explorer Administration Kit use.
/ieak-branding:<path>
Reserved for Internet Explorer Administration Kit use.
/closeprograms
Close programs automatically to allow installation without rebooting the system.
Restart Options:
/norestart
Do not restart after installation has completed.
/forcerestart
If a restart is required after installation, restart automatically.
Miscellaneous Options:
/log:<path>
Create a log file at :<path>.
/x:<path>
Extract the installation package contents at :<path>.
Custom Inventory Rule for K1K:
RegistryValueGreaterThan(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer, Version, 9) AND RegistryValueLessThan(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer, Version, 10)
For an unattended install use IE9-Windows7-x64-enu.exe /quiet /norestart.
Modify the filename of the EXE to suit your version
Link to download different language versions
http://windows.microsoft.com/en-US/internet-explorer/downloads/ie-9/worldwide-languages
Internet Explorer Administration Kit 9
http://windows.microsoft.com/en-US/internet-explorer/downloads/ie-9/worldwide-languages
When doing our K2000 deployments, one of our sites asked us if we could do some customizations like default home page and stopping the run once screen in IE 9. The issue we have is that we do not do an image capture from a gold image. We use scripted installs because that is prefered in our enviroment. Because of this we lose the ability to easily customize the Default User profile which would enable us to do things like set a default home page or other settings.
The way we get around this is with the built in REG command in Windows. We load the default user profile registry, insert or update the registry keys we want then unload the default user profile (**Warning, do not forget to unload the default user registry if you modify the commands below)
Below are the lines for a batch file that you can use to modify the IE9 settings
ConfigIE.bat
REG LOAD HKU\DefaultUser %SystemDrive%\Users\Default\NTUSER.DAT
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "http://myintranet.mysite.com" /t REG_SZ /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "Show_ToolBar" /d "yes" /t REG_SZ /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "NoUpdateCheck" /d 1 /t REG_DWORD /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "PrivacyPolicyShown" /d 1 /t REG_DWORD /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "IE9RunOncePerInstallCompleted" /d 1 /t REG_DWORD /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "IE9TourShown" /d 1 /t REG_DWORD /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "IE9TourShownTime" /d "04220d0b3e95cf01" /t REG_BINARY /f
REG ADD "HKU\DefaultUser\Software\Microsoft\Internet Explorer\Main" /v "IE9RunOnceCompletionTime" /d "04220d0b3e95cf01" /t REG_BINARY /f
REG UNLOAD HKU\DefaultUser
View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.