I have a csv file like this:
samaccountname,enabled
user1,false
user2,false
I want to take each entry in the samaccaountname column and add this exact text:
C:\Users\
then I need to create a new csv file that only contains a single column with the new data like this:
header
C:\Users\User1
C:\Users\User2
C:\Users\User3
what is the best way to accomplish this?