mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
20 lines
569 B
PowerShell
20 lines
569 B
PowerShell
################################################################################
|
|
## File: Validate-WDK.ps1
|
|
## Desc: Validate the installation of the Windows Driver Kit
|
|
################################################################################
|
|
|
|
function Get-WDKVersion
|
|
{
|
|
$WDKVersion = (Get-CimInstance -ClassName Win32_Product -Filter "Name = 'Windows Driver Kit'").Version
|
|
|
|
if (!$WDKVersion)
|
|
{
|
|
Write-Host "WDK was not found"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
Get-WDKVersion
|
|
$null = Get-VSExtensionVersion -packageName "Microsoft.Windows.DriverKit"
|
|
|