mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
14 lines
556 B
PowerShell
14 lines
556 B
PowerShell
Describe "WDK" {
|
|
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
|
|
}
|
|
}
|