Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

can I install boot camp drivers using an automated command for deploying with sccm

I would like to include the boot camp installer as part of my SCCM task sequence. I have imported the drivers but they don't all install and in turn it fails to complete.


In order to include the installer I need to let the installer run unattended and I cannot find any command line switches for that purpose.

MacBook Pro with Retina display, Windows 7

Posted on Mar 24, 2015 11:23 AM

Reply
3 replies

Mar 24, 2015 12:01 PM in response to anthonyfromrochester hills

The Bootcamp setup.exe is a silent Installer. See the following part from AutoUnattend.xml.


</settings>

<settings pass="specialize">

<component name="Microsoft-Windows-Deployment"processorArchitecture="amd64"publicKeyToken="31bf3856ad364e35"language="neutral"versionScope="nonSxS"xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<RunSynchronous>

<RunSynchronousCommand wcm:action="add">

<Order>1</Order>

<Path>cmd /c "FOR %i IN (X F E D C) DO (FOR /F "tokens=6" %t in ('vol %i:') do (IF /I %t NEQ "" (IF EXIST %i:\BootCamp\BootCamp.xml Reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v AppsRoot /t REG_SZ /d %i /f )))"</Path>

</RunSynchronousCommand>

</RunSynchronous>

</component>

</settings>

<settings pass="oobeSystem">

<component name="Microsoft-Windows-Shell-Setup"processorArchitecture="amd64"publicKeyToken="31bf3856ad364e35"language="neutral"versionScope="nonSxS"xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<FirstLogonCommands>

<SynchronousCommand wcm:action="add">

<Description>AMD CCC Setup</Description>

<CommandLine>%AppsRoot%:\BootCamp\Drivers\ATI\ATIGraphics\Bin64\ATISetup.exe -Install</CommandLine>

<Order>1</Order>

<RequiresUserInput>false</RequiresUserInput>

</SynchronousCommand>

<SynchronousCommand wcm:action="add">

<Description>BootCamp setup</Description>

<CommandLine>%AppsRoot%:\BootCamp\setup.exe</CommandLine>

<Order>2</Order>

<RequiresUserInput>false</RequiresUserInput>

</SynchronousCommand>

</FirstLogonCommands>

</component>

</settings>

can I install boot camp drivers using an automated command for deploying with sccm

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.