mirror of
https://github.com/timsutton/brigadier.git
synced 2025-06-03 08:39:02 -04:00
Call Boot Camp MSI with /qr option, fixes issues with some components not getting installed
- particularly nVidia drivers
This commit is contained in:
parent
cb8b62b26d
commit
93f7ce5c39
1 changed files with 1 additions and 1 deletions
|
@ -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:")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue