mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-10 05:17:44 +02:00
Improve the comment-based section
This commit is contained in:
@ -1,8 +1,14 @@
|
||||
<#
|
||||
.SYNTAX send-tcp.ps1 [<target-IP>] [<target-port>] [<message>]
|
||||
.DESCRIPTION sends a TCP message to the given IP address and port
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
.SYNOPSIS
|
||||
send-tcp.ps1 [<target-IP>] [<target-port>] [<message>]
|
||||
.DESCRIPTION
|
||||
Sends a TCP message to the given IP address and port
|
||||
.EXAMPLE
|
||||
PS> .\send-tcp.ps1 192.168.100.100 8080 "TEST"
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($TargetIP = "", [int]$TargetPort = 0, $Message = "")
|
||||
|
Reference in New Issue
Block a user