Skip to content

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 # success

Specifies the text to write

An interactive directory of PowerShell scripts.