Last active
March 21, 2017 14:03
-
-
Save geoffrepoli/908ba25dd722ecbff03f6817404de516 to your computer and use it in GitHub Desktop.
silent gclp + no itunes install bat. sets launchpad name to the computer name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enableextensions | |
for /F "usebackq" %%x in (`hostname`) do ( | |
set COMPUTERNAME=%%x | |
) | |
msiexec /i <Path>\AppleApplicationSupport.msi /q /norestart && | |
msiexec /i <Path>\AppleApplicationSupport64.msi /q /norestart && | |
msiexec /i <Path>\AppleMobileDeviceSupport6464.msi /q /norestart && | |
msiexec /i <Path>\GroundControlInstall.msi GCHOST=launchpad.groundctl.com GCLPNAME=%COMPUTERNAME% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment