mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
12 lines
371 B
PowerShell
12 lines
371 B
PowerShell
Describe "WDK" {
|
|
It "WDK exists" {
|
|
$WDKVersion = (Get-CimInstance -ClassName Win32_Product -Filter "Name = 'Windows Driver Kit'").Version
|
|
$WDKVersion| Should -Not -BeNullOrEmpty
|
|
}
|
|
|
|
It "WDK version from system" {
|
|
$version = Get-VSExtensionVersion -PackageName "Microsoft.Windows.DriverKit"
|
|
$version | Should -Not -BeNullOrEmpty
|
|
}
|
|
}
|