Summary: Learn how to use Windows PowerShell to easily capitalize a string.
How can I use Window PowerShell to make all the text upper case so it is all in the
same form prior to writing to a database?
Use the ToUpper method from the String class:
"string".ToUpper()