everydayintech
everydayintech
I think this is due to new text formatting that was added with Az.Accounts Version 2.16.0. Az.Accounts Version 2.15.1 does not have this formatting and looks fine in WinPE. Az.Accounts...
I wrote a little function to update the Surface driver catalog "Just-In-Time" [https://everydayintech.com/update-surface-driver-catalog-just-in-time/](https://everydayintech.com/update-surface-driver-catalog-just-in-time/)
Added parameter DriverOSVersion to control the OSVersion specified in Get-OSDCloudDriverPack. Surface driver msi for Windows 11 can't be installed on Windows 10, therefore this added control is necessary.
> Just a quick note — unless I’m mistaken, the current implementation using $remote = Invoke-WebRequest -UseBasicParsing -Method Head -Uri $SourceUrl may not handle scenarios where $SourceUrl is invalid or...
Does this happen using PowerShell 7 or Windows PowerShell? (5.1)
@OSDeploy this issue is fixed in #326
This issue should be resolved as #326 was merged by @OSDeploy @astavitsky can you verify on your end?
I was able to disable the DriverPack like this using `$Global:MyOSDCloud`: ```powershell $Global:MyOSDCloud = @{ DriverPackName = 'None' } Start-OSDCloud @OSDCloudParams ```