/build/static/layout/Breadcrumb_cap_w.png

How to deploy safari

deploy apple safari

0 Comments   [ + ] Show comments

Answers (2)

Answer Summary:
You can use /passive for a progress bar or /quiet for a silent install.
Posted by: dchristian 12 years ago
Red Belt
3
You can use /passive for a progress bar or /quiet for a silent install.

Comments:
  • VBScript commands to install Safari (without a desktop shortcut) once you get the source files...



    Set objWshShell = WScript.CreateObject("WScript.Shell")



    Set objFSO = CreateObject("Scripting.FileSystemObject")



    strScriptFileDirectory = objFSO.GetParentFolderName(wscript.ScriptFullName)



    objWshShell.Run "msiexec /i """ & strScriptFileDirectory & "\Safari.msi"" DESKTOP_SHORTCUTS=0 /qn", 1, True



    (I use "strScriptFileDirectory" because I place the installation VBScript in the same folder as the source files, so you may need to adjust this if executing from another location) - amjadrehman24 12 years ago
Posted by: amjadrehman24 12 years ago
Third Degree Blue Belt
0
VBScript commands to install Safari (without a desktop shortcut) once you get the source files...



Set objWshShell = WScript.CreateObject("WScript.Shell")



Set objFSO = CreateObject("Scripting.FileSystemObject")



strScriptFileDirectory = objFSO.GetParentFolderName(wscript.ScriptFullName)



objWshShell.Run "msiexec /i """ & strScriptFileDirectory & "\Safari.msi"" DESKTOP_SHORTCUTS=0 /qn", 1, True



(I use "strScriptFileDirectory" because I place the installation VBScript in the same folder as the source files, so you may need to adjust this if executing from another location)
 
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