#First Name
$GivenName = Import-Csv .\Documents\db1.csv | select GivenName
$UserF = (Get-Culture).TextInfo.ToTitleCase($GivenName)
$UserF | Export-Csv .\Documents\UsersF.txt –NoTypeInformation
When I run the script I get a .txt file with
#TYPE System.String
"Length"
"98"
What I want is the FirstName category with the proper Title Case.