Write-Lowercase
Writes text in lowercase letters
param([string]$text = "")
if ($text -eq "" ) { $text = Read-Host "Enter the text to write" }
Write-Output $text.ToLower()
exit 0 # successSpecifies the text to write
Writes text in lowercase letters
param([string]$text = "")
if ($text -eq "" ) { $text = Read-Host "Enter the text to write" }
Write-Output $text.ToLower()
exit 0 # successSpecifies the text to write