Update check-vpn.ps1

This commit is contained in:
Markus Fleschutz
2023-07-17 11:25:30 +02:00
parent e5b66841dc
commit 1efe1f73eb
3 changed files with 13 additions and 11 deletions

View File

@ -2,11 +2,12 @@
.SYNOPSIS
Writes text in lowercase letters
.DESCRIPTION
This PowerShell script writes text in lowercase letters.
This PowerShell script writes the given text in lowercase letters.
.PARAMETER text
Specifies the text to write
.EXAMPLE
PS> ./write-lowercase "Hello World"
hello world
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -15,7 +16,7 @@
param([string]$text = "")
if ($text -eq "" ) { $text = read-host "Enter the text to write" }
if ($text -eq "" ) { $text = Read-Host "Enter the text to write" }
write-output $text.ToLower()
Write-Output $text.ToLower()
exit 0 # success