mirror of
https://github.com/timsutton/brigadier.git
synced 2025-05-31 07:18:27 -04:00
Merge pull request #14 from macjustice/master
Change msiexec flag to prevent modal dialog
This commit is contained in:
commit
ffef49cd0c
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ def findBootcampMSI(search_dir):
|
|||
|
||||
def installBootcamp(msipath):
|
||||
logpath = os.path.abspath("/BootCamp_Install.log")
|
||||
cmd = ['cmd', '/c', 'msiexec', '/i', msipath, '/qr', '/norestart', '/log', logpath]
|
||||
cmd = ['cmd', '/c', 'msiexec', '/i', msipath, '/qb-', '/norestart', '/log', logpath]
|
||||
status("Executing command: '%s'" % " ".join(cmd))
|
||||
subprocess.call(cmd)
|
||||
status("Install log output:")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue