importing users through text files
dear
i use the following commant to import users to exchange 2007 through exchange shell
$Password = Read-Host Type the default password for the new accounts: -AsSecureString
Import-Csv users.csv | foreach { New-Mailbox FirstName $_.FirstName LastName $_.LastName name $_.Name alias $_.Alias UserPrincipalName $_.UPN Database $_.Database OrganizationalUnit $_.OrganizationalUnit Password $Password ResetPasswordOnNextLogontrue }
but i face 2 problems
1 - i use arabic names and it always make problems in the csv file
2- second it alawys prompt fro password even i put it in csv file and and i want to make a unique password to everyone
and it prompt to put password and it apply to all
thanks
November 25th, 2008 9:57am
Hi,
Please check whether the below thread can help you:
http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3971568&SiteID=17
Thanks
Allen
Free Windows Admin Tool Kit Click here and download it now
November 28th, 2008 6:14am