Files
runner-images-temp/images/win/scripts/Tests/WDK.Tests.ps1
T

14 lines
565 B
PowerShell
Raw Normal View History

2022-06-01 15:13:31 +02:00
Describe "WDK" {
2020-07-30 12:12:49 +05:00
It "WDK exists" {
2022-06-01 15:13:31 +02:00
$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
2020-07-30 12:12:49 +05:00
$WDKVersion| Should -Not -BeNullOrEmpty
}
It "WDK version from system" {
2020-09-10 17:04:24 +03:00
$version = Get-VSExtensionVersion -packageName "Microsoft.Windows.DriverKit"
2020-07-30 12:12:49 +05:00
$version | Should -Not -BeNullOrEmpty
}
}