Libraries/Lib.MacOS.Darwin/Lib.MacOS.Darwin.psm1
<#
.SYNOPSIS Get the family of the OS #> function Get-OSFamily { [CmdletBinding()][OutputType([String])]Param ( [switch]$Online, [string]$Root = "/" ) Begin { Write-PwShFwOSEnterFunction } Process { return "macOS" } End { Write-PwShFwOSLeaveFunction } } |