OpsaC - Operating as PowerShell code
published: January 29, 2019 author: Tinu tags: PowerShell categories: PowerShell-Class
A file with psm1-Extension.
function Test-PsNetDig {...}
function Test-PsNetTping {...}
function Test-PsNetUping {...}
function Test-PsNetWping {...}
The Members should be exported within a Module manifest, see here FunctionsToExport
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
Export-ModuleMember -Function Test-PsNetDig, Test-PsNetTping, Test-PsNetUping, Test-PsNetWping
About Modules on Microsoft Docs