Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSSlack
0.0.35
Private/Test-IsWindows.ps1
function
Test-IsWindows
{
[
CmdletBinding
(
)
]
[
OutputType
(
[bool]
)
]
param
(
)
end
{
!
(
Test-Path
-Path
Variable:\IsWindows
)
-or
$IsWindows
}
}