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.
You can use /passive for a progress bar or /quiet for a silent install.
Please log in to answer
Posted by:
dchristian
12 years ago
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
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)
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)