ps/Modules/Cole.PowerShell.Developer/Public/Test-IsWindowsPlatform.ps1
2023-05-30 22:51:22 -07:00

12 lines
317 B
PowerShell

function Test-IsWindowsPlatform {
<#
.SYNOPSIS
Returns true if the platform is Windows
#>
[CmdletBinding()]
[OutputType([bool])]
param (
)
return @([System.PlatformID]::Win32NT,[System.PlatformID]::Win32Windows,[System.PlatformID]::Win32S).Contains([System.Environment]::OSVersion.Platform)
}