ps/Modules/Cole.PowerShell.Developer/Public/Test-IsWindowsPlatform.ps1

12 lines
317 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
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)
}