Tinus EngOps Wiki

Logo

OpsaC - Operating as PowerShell code

Links

Home

PowerShell Blog

PowerShell Index

PowerShell Search

Additional Websites

View my GitHub Profile

View my GitHub Gists

View Tinus IT Wiki

View my Photo Website

Module

published: January 29, 2019 author: Tinu tags: PowerShell categories: PowerShell-Class


Table of Contents

Module

A file with psm1-Extension.

Functions

function Test-PsNetDig {...}

function Test-PsNetTping {...}

function Test-PsNetUping {...}

function Test-PsNetWping {...}

Export-Members

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

See also

About Modules on Microsoft Docs


← Previous Post [ Top ] Copyright © 2024 by tinuwalther [ Blog ] Next Post →