Call Boot Camp MSI with /qr option, fixes issues with some components not getting installed

- particularly nVidia drivers
This commit is contained in:
Timothy Sutton 2013-08-01 12:07:01 -04:00
parent cb8b62b26d
commit 93f7ce5c39

View file

@ -96,7 +96,7 @@ def findBootcampMSI(search_dir):
def installBootcamp(msipath):
logpath = os.path.abspath("/BootCamp_Install.log")
cmd = ['cmd', '/c', 'msiexec', '/i', msipath, '/qn', '/norestart', '/log', logpath]
cmd = ['cmd', '/c', 'msiexec', '/i', msipath, '/qr', '/norestart', '/log', logpath]
status("Executing command: '%s'" % " ".join(cmd))
subprocess.call(cmd)
status("Install log output:")