Summary: Use Windows PowerShell to adjust the case of an entire string.
How can I adjust the case of an entire string?
Charlotte PowerShell User Group member Brian Wilhite says: One way to adjust the case (upper or lower) of an entire string object is to call the ToUpper or ToLower methods of the string object.
(‘this string should be upper case’).ToUpper()
(‘THIS STRING SHOULD BE LOWER CASE’).ToLower()