mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
13 lines
204 B
PowerShell
13 lines
204 B
PowerShell
|
$os = [Environment]::OSVersion
|
||
|
$major = $os.Version.Major
|
||
|
$minor = $os.Version.Minor
|
||
|
$ok = $false
|
||
|
|
||
|
if(($major -gt 6)){
|
||
|
$ok = $true
|
||
|
}
|
||
|
elseif (($major -eq 6) -and ($minor -ge 3)){
|
||
|
$ok = $true
|
||
|
}
|
||
|
|
||
|
$ok
|