emmathews83 Posted December 15, 2010 Report post Posted December 15, 2010 Does anyone know how to deploy IE7 silently using SMS 2003? Quote Share this post Link to post Share on other sites More sharing options...
0 Eswar Koneti Posted December 15, 2010 Report post Posted December 15, 2010 Does anyone know how to deploy IE7 silently using SMS 2003? Doesn't it work with this commnd line: IE_explorer_name.exe /quiet /update-no /norestart Quote Share this post Link to post Share on other sites More sharing options...
0 emmathews83 Posted December 15, 2010 Report post Posted December 15, 2010 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. Quote Share this post Link to post Share on other sites More sharing options...
0 Eswar Koneti Posted December 16, 2010 Report post Posted December 16, 2010 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 Quote Share this post Link to post Share on other sites More sharing options...
0 emmathews83 Posted December 16, 2010 Report post Posted December 16, 2010 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 Quote Share this post Link to post Share on other sites More sharing options...
Does anyone know how to deploy IE7 silently using SMS 2003?
Share this post
Link to post
Share on other sites