Merge pull request #14 from macjustice/master

Change msiexec flag to prevent modal dialog
This commit is contained in:
Timothy Sutton 2016-03-07 11:26:14 -05:00
commit ffef49cd0c

View file

@ -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:")