Deploy Provisioning Packages with MDT!
In this video, we go over how to creat a provisioning package in Windows ICD and then deploying it with MDT. I’m using MDT Build 8443 and the latest Windows ADK installation files. Here is the command used in the video:
DISM.exe /Image=C:\ /Add-ProvisioningPackage /PackagePath:%SCRIPTROOT%\BTNHDv1.0\BTNHDv1.0.ppkg
%SCRIPTROOT% = the Script folder inside the deploymentshare root folder
BTNHDv1.0 = is the folder that I created and dropped the ICD package into – I copied the entire folder inside the Script folder
BTNHDv1.0.ppkg = the name I provided when I export/build the package inside Windows ICD application.
I know this is old now, I’ve done the above but keep getting “System cannot find the file specified”. I’ve tried Zair’s suggestion above.
Thanks
Ken
I have just tried this with MDT and it appears to have worked and added the device into Airwatch. My question is if I was to then capture this image and then deploy it back down via WDS would all the new device likewise be added into Airwatch or is this a once only method?
For those annoyed trying to get this to work and are getting weird errors, it’s possibly because MDT decides the OS install drive is not C: during installation. The following will resolve it: DISM.exe /Image=%OSDisk% /Add-ProvisioningPackage /PackagePath:%SCRIPTROOT%\…\Your_Package.ppkg
Thank you for adding this for us. Great stuff!!