The drivers are now posted at https://www.microsoft.com/en-us/download/details.aspx?id=57514
Surface Pro 6 - Driver Pack?
With previous Surface Pro tablets, there are pages on the Microsoft Download Center to download the entire driver pack for each model Surface Pro tablet. The "Download drivers and firmware for Surface" page shows all the links from the Microsoft Download Center for the drivers packs for all the various model tablets.
However, the new Surface Pro 6 tablet is not listed here and I cannot find a driver pack anywhere else for this tablet. We need the driver pack to include as part of our Windows 10 image.
Does anyone know when a driver pack will be made available for the Surface Pro 6? (Or perhaps it is located somewhere else?)
Thank you.
Surface | Surface Pro | Install and update
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
6 additional answers
Sort by: Most helpful
-
Anonymous
2018-11-06T22:30:30+00:00 You could use PowerShell to import all of the drivers you saved off of the source computer. Try this?:
Get-ChildItem -Path "C:\Temp" -Filter "*.inf" -Recurse | ForEach-Object { PNPUTIL.EXE /Add-Driver ($_.FullName) /Install }
-
Anonymous
2018-11-09T19:04:39+00:00 Thank you Barb. Those are the files we need.
-
Anonymous
2018-11-06T22:18:15+00:00 Thank you for the info, but we are not using WDS and we need the .msi driver pack installer.
-
Anonymous
2018-11-06T21:59:18+00:00 You could do the following until Microsoft actually posts the official Firmware/Driver pack:
- On an existing Surface Pro 6, apply all Windows Updates (including updated drivers) and reboot.
- Open an elevated PowerShell console and run the following command:
Export-WindowsDriver -Online -Destination "C:\Temp" 3. Import the resulting files into your driver pack for WDS.
More information:
https://docs.microsoft.com/en-us/powershell/module/dism/export-windowsdriver?view=win10-ps