Share via

Surface Pro 6 - Driver Pack?

Anonymous
2018-11-06T20:49:52+00:00

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.

0 comments No comments

6 additional answers

Sort by: Most helpful
  1. 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 }

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2018-11-09T19:04:39+00:00

    Thank you Barb.  Those are the files we need.

    0 comments No comments
  3. 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.

    0 comments No comments
  4. Anonymous
    2018-11-06T21:59:18+00:00

    You could do the following until Microsoft actually posts the official Firmware/Driver pack:

    1. On an existing Surface Pro 6, apply all Windows Updates (including updated drivers) and reboot.
    2. 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

    0 comments No comments