An open API service indexing awesome lists of open source software.

https://github.com/tinuwalther/psnettools

PsNetTools is a cross platform PowerShell module to test network features on Windows, Linux and Mac.
https://github.com/tinuwalther/psnettools

class dig hosts-file network networkadapter nslookup ping powershell routing-table tcp udp webrequest

Last synced: about 2 months ago
JSON representation

PsNetTools is a cross platform PowerShell module to test network features on Windows, Linux and Mac.

Awesome Lists containing this project

README

        

# Generate UML-Diagram

To write automated UML-Diagrams, you need PSClassUtils from Stéphane van Gulick.

## Install Module PSClassUtils

You can install PSClassUtils from the PowerShell Gallery:

````powershell
Install-Module -Name PSClassUtils
Import-Module -Name PSClassUtils
Install-CUDiagramPrerequisites
````

## Write Diagrams

Write a Diagram for a single class:

````powershell
Write-CUClassDiagram -Path D:\03_github.com\PsNetTools\Code\Classes\\02-PsNetDig.ps1 -OutPutType Combined -OutputFormat jpg -ExportFolder D:\03_github.com\PsNetTools\Doc
````

Write a Diagram for all classes in a folder:

````powershell
Write-CUClassDiagram -Path D:\03_github.com\PsNetTools\Code\Classes\ -OutPutType Combined -OutputFormat jpg -ExportFolder D:\03_github.com\PsNetTools\Doc
````