Skip to content

Instantly share code, notes, and snippets.

@geoffrepoli
Last active March 21, 2017 14:03
Show Gist options
  • Save geoffrepoli/908ba25dd722ecbff03f6817404de516 to your computer and use it in GitHub Desktop.
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
@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