Updated the Markdown manuals

This commit is contained in:
Markus Fleschutz
2024-01-25 13:31:10 +01:00
parent 27ca36b317
commit 46a49b5291
607 changed files with 984 additions and 769 deletions

View File

@ -17,7 +17,7 @@ Example
-------
```powershell
PS> ./ping-local-hosts.ps1
Hippo Jenkins01 Jenkins02 Rocket Vega are up.
Up: Hippo Jenkins01 Jenkins02 Rocket Vega
```
@ -39,7 +39,7 @@ Script Content
This PowerShell script pings the computers in the local network and lists which one are up.
.EXAMPLE
PS> ./ping-local-hosts.ps1
✅ Hippo Jenkins01 Jenkins02 Rocket Vega are up.
Up: Hippo Jenkins01 Jenkins02 Rocket Vega
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -76,7 +76,7 @@ try {
$queue.Enqueue($obj)
}
Write-Progress -completed "Done."
Write-Host "✅ $($result)are up."
Write-Host "✅ Up: $($result)"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
@ -84,4 +84,4 @@ try {
}
```
*(generated by convert-ps2md.ps1 using the comment-based help of ping-local-hosts.ps1 as of 01/03/2024 12:10:50)*
*(generated by convert-ps2md.ps1 using the comment-based help of ping-local-hosts.ps1 as of 01/25/2024 13:28:38)*