Hello!
I have a list (*.csv) of names of local user accounts (~500) to create on a new Windows Server 2008 based server:
Example 1:
User001,
User002,
User003,
...
How can I generate random passwords (preferable using [System.Web.Security.Membership]::GeneratePassword(10,2)) and append them to a file:
Example 2:
User001,Password001
User002,Password002
User003,Password003
...
Thanks in advance!