There are times when you may want to change string casing. You have a couple of options.
There are a couple of methods on the string class that you can use to modify the case of a string.
PS> 'aaa'.ToUpper()
AAA
PS> 'AAA'.ToLower()
aaa
Alternatively… Read the full text.