Converts all of the characters in the given string to lower case, using the rules of the default locale.
$[ScriptVariable]::toLowerCase()
None
The following example illustrates the syntax for the toLowerCase string method:
$str = "AAA"
$str::toLowerCase()
print($str)
aaa