Skip to content

Commit

Permalink
Call Boot Camp MSI with /qr option, fixes issues with some components…
Browse files Browse the repository at this point in the history
… not getting installed

- particularly nVidia drivers
  • Loading branch information
timsutton committed Aug 1, 2013
1 parent cb8b62b commit 93f7ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brigadier
Original file line number Diff line number Diff line change
Expand Up @@ -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:")
Expand Down

0 comments on commit 93f7ce5

Please sign in to comment.