From 93f7ce5c393cfed8b79caf0fd7de531eb14ad17e Mon Sep 17 00:00:00 2001 From: Timothy Sutton Date: Thu, 1 Aug 2013 12:07:01 -0400 Subject: [PATCH] Call Boot Camp MSI with /qr option, fixes issues with some components not getting installed - particularly nVidia drivers --- brigadier | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brigadier b/brigadier index 21c2813..25365e0 100755 --- a/brigadier +++ b/brigadier @@ -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:")