create mailboxes from csv file. variable first name, sure name, password and Origanizational unit

By |2016-10-26T12:43:04+01:00January 18th, 2015|Exchange, Microsoft|

i had to create bulk mailboxes on exchange 2010 in my hosted environment, so i search on the internet for scripts and put them together to fit my environment. so i wanted to use, first name, surename, Display name, username, variable password and put the users in certain OU map in AD so my CSV file will look somehing like this fname,lname,username,password,OUPath els,konnick,els.konnick,Test123!,domain.local/customer/cust01 here is the script you can copy paste in a notepad and save it as .ps1 #csv file with fields:fname,lname,username,password,OUPath import-csv 'C:pathtocsvfileuserlist.csv' | Foreach-object { $Fname = $_.FName $LName = $_.LName $DisplayName = "$FName $LName" $User = [...]

Exchange 2003 to exchange 2013 migration

By |2014-11-09T22:05:00+01:00November 9th, 2014|Microsoft|

i'm not going to write the entire procedure here since there are a lot of good articles out there. here are some I always use when im migrating exchange servers from 2003 or 2007 to 2010 or 2013 so thank you Pete Long For migrating exchange 2003 to 2013 you will need an additional step and migrate to exchange 2010 first. The following links are very good to follow all migrations Exchange 2003 to 2010 Exchange 2010 to 2013 enjoy and good luck

Go to Top