Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Gz-Core
0.1.0
private/Get-OsPlatform.ps1
function
Get-OsPlatform
(
)
{
[
CmdletBinding
(
)
]
Param
(
)
PROCESS
{
return
[Environment]
::
OSVersion
.
Platform
.
ToString
(
)
;
}
}