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

Class

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


Table of Contents

Class

A file, could have a psm1-Extension.

Class PsNetTools {...}

Properties

[string]$message = $null

Constructor

PsNetTools(){
    $this.message = "Loading PsNetTools"
}

Methods

[object]static dig() {...}

[object]static tping() {...}

[object]static uping() {...}

[object]static wping() {...}

Export-Members

The Function should be exported within a Module manifest, see here Module

See also

About Classes on Microsoft Docs


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