mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
14 lines
577 B
PowerShell
14 lines
577 B
PowerShell
Describe "WDK" -Skip:(Test-IsWin25) {
|
|
It "WDK exists" {
|
|
$regKey = "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*"
|
|
$installedApplications = Get-ItemProperty -Path $regKey
|
|
$WDKVersion = $installedApplications | Where-Object DisplayName -eq 'Windows Driver Kit' | Select-Object -First 1 -ExpandProperty DisplayVersion
|
|
$WDKVersion | Should -Not -BeNullOrEmpty
|
|
}
|
|
|
|
It "Windows Driver Kit VSIX extension" {
|
|
$version = Get-VSExtensionVersion -packageName "Microsoft.Windows.DriverKit"
|
|
$version | Should -Not -BeNullOrEmpty
|
|
}
|
|
}
|