Powershell Tip #140: Convert string to Title Case By powershellgu | November 18, 2018 0 Comment Tip: You can convert a string to title case (every word start with a capital letter). PowerShell $user = 'JOHN SMITH' $textInfo = (Get-Culture).TextInfo $textInfo.ToTitleCase($user.ToLower()) 123 $user = 'JOHN SMITH'$textInfo = (Get-Culture).TextInfo$textInfo.ToTitleCase($user.ToLower()) Note: You have to convert the string to lower case (if not already) to ensure all words are converted in title case.