Having a bit of difficulty installing some drivers as part of a Task Sequence in SCCM2012r2. I have the drivers in the DriverSource folder and intend to use the pnputil to install
A bit of a noob so not sure how to go about doing this (eg. commandline variables, %_SMS, etc)
any pointers?
there us a NO_SMS_ON_DRIVE.SMS file in the C:\. How do i find out the variable so i can complete the command? (eg. cmd.exe /c PnPutil.exe -i -a %??????%\*.inf)
...was thinking:
cmd.exe /c PNPUTIL.exe -i -a "\\Server00\Share\Drivers\DriverSources\Print\HPUniversalDriverPCL5x64\*.inf"
& cmd.exe /c PNPUTIL.exe -i -a "\\Server00\Share\Drivers\DriverSources\Print\RicohMPC4501PCL6x64\*.inf"
& cmd.exe /c PNPUTIL.exe -i -a "\\Server00\Share\Drivers\DriverSources\Print\RicohMPC4503PCL6x64\*.inf"
but this looks messy. can it run recursively somehow?
...