Jump to content


  • 0
emmathews83

How to deploy IE7 silently using SMS 2003

Question

4 answers to this question

Recommended Posts

  • 0

I tried it the way that you were saying and it does install IE7 without user interaction or restarting the computer, but after it's installed and the only way to tell it's installed is check add/remove program. If you try to launch Internet Explorer it doesn't come up and it keeps adding shortcuts on your desktop till I restart the computer then it works fine.

Share this post


Link to post
Share on other sites

  • 0

I tried it the way that you were saying and it does install IE7 without user interaction or restarting the computer, but after it's installed and the only way to tell it's installed is check add/remove program. If you try to launch Internet Explorer it doesn't come up and it keeps adding shortcuts on your desktop till I restart the computer then it works fine.

 

 

You can use Internet Explorer Administration Kit (IEAK) to customise the IE as per the requirement and deploy it Via SMS. Check this link on IEAK http://technet.microsoft.com/en-us/ie/bb219524

Share this post


Link to post
Share on other sites

  • 0

OK I ended up finding a script to install IE7 except I can't get the message box to popup at the end to have the user restart their computer. Can anyone tell me if I have the code wrong at the end?

 

on error resume next

 

Dim WshSHell, oEnv

Dim sAllUsersProfilePath, sLocaldirectory, strComputer

 

set WshShell = CreateObject("WScript.Shell")

sAllUsersProfilePath = WshShell.Environment("PROCESS").Item("ALLUSERSPROFILE")

set objFSO = CreateObject("Scripting.FileSystemObject")

 

sLocalDirectory = objFSO.GetFile(WScript.ScriptFullName).ParentFolder

 

'Removes "Open File - Security Warning" check

set oEnv = WshShell.Environment("PROCESS")

oEnv("SEE_MASK_NOZONECHECKS") = 1

 

'Install IE7

 

wshShell.Run sLocalDirectory & "\IE7-WindowsXP-x86-enu.exe /Passive /update-no /norestart",0,TRUE

 

'Stop The "Run Once" Settings for Current User

 

WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\RunOnceComplete", "1", "REG_DWORD"

WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\RunOnceHasShown", "1", "REG_DWORD"

 

'Open Home Page in new Tab for Current User'

 

WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\TabbedBrowsing\ShowTabsWelcome", "0", "REG_DWORD"

WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\TabbedBrowsing\UseHomepageForNewTab", "1", "REG_DWORD"

 

'Stop The "Run Once" Settings for Default User

 

WSHShell.RegWrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main\RunOnceComplete", "1", "REG_DWORD"

WSHShell.RegWrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main\RunOnceHasShown", "1", "REG_DWORD"

 

'Open Home Page in new Tab For Default User

 

WSHShell.RegWrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\TabbedBrowsing\ShowTabsWelcome", "0", "REG_DWORD"

WSHShell.RegWrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\TabbedBrowsing\UseHomepageForNewTab", "1", "REG_DWORD"

 

'Restores "Open File - Security Warning" check

oEnv.Remove("SEE_MASK_NOZONECHECKS")

 

set fso = Nothing

set WSHShell = Nothing

wscript.echo "Internet Explorer Install Complete - Please restart your computer"

 

 

 

Wscript.Quit

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.