You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Dump all environment variables so as to help debug error:
99
99
Write-Output"Environment variables {"
100
-
gci env:*|sort-object name
100
+
Get-ChildItem env:*|Sort-Object name
101
101
Write-Output"Environment variables }"
102
102
103
103
Write-Error"Could not determine build environment."
104
104
exit1
105
105
}
106
106
#
107
107
# Get the WDK extension version from installed packages
108
-
$wdk_extension_ver=ls"${env:ProgramData}\Microsoft\VisualStudio\Packages\Microsoft.Windows.DriverKit,version=*"| Select -ExpandProperty Name
108
+
$wdk_extension_ver=Get-ChildItem"${env:ProgramData}\Microsoft\VisualStudio\Packages\Microsoft.Windows.DriverKit,version=*"|Select-Object-ExpandProperty Name
0 commit comments