Listing 1: PowerShell script generated to create a new mailbox New-Mailbox -Name 'James Dalton' -Alias 'JDA' ` -OrganizationalUnit 'xyz.com/Exchange Users' ` -UserPrincipalName 'JDA@xyz.com' -SamAccountName 'JDA' ` -FirstName 'James' -Initials 'JDA' -LastName 'Dalton' ` -Password 'System.Security.SecureString' ` -ResetPasswordOnNextLogon $false ` -Database 'Mailbox Database' 1