Updating to fix one scenario where NDISVersion was not properly detected

This commit is contained in:
Dan Cuomo 2021-08-04 12:33:03 -07:00 коммит произвёл GitHub
Родитель 7cc7e25ec4
Коммит 6b1d9b09dc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -138,7 +138,7 @@ function Test-NICAdvancedProperties {
# Test Minimum Required NDIS Version
$NDISInfo = (Get-NetAdapter -Name $thisAdapter.Name).NDISVersion
[Bool] $TestedOSVersion = Test-OSVersion -DefinitionPath $NDISDefinition -ConfigurationData $NDISInfo.NDISVersion -OrGreater
[Bool] $TestedOSVersion = Test-OSVersion -DefinitionPath $NDISDefinition -ConfigurationData $NDISInfo -OrGreater
if ($TestedOSVersion) {
Write-WTTLogMessage "[$PASS] The in use NDIS version for adapter $($thisAdapter.Name) was greater than or equal to the version required for this OS (Required Version: $NDISDefinition)"