Windows/exchange

Aus SchnallIchNet
Wechseln zu: Navigation, Suche

PowerShell

powershell commands


add mailbox permissions

Add full access to mailbox 'mailbox@arifleet.de' for user 'DOMAIN\user':

Add-MailboxPermission -Identity mailbox@arifleet.de -User DOMAIN\user -AccessRights Fullaccess -InheritanceType All


move mailbox between exchange-databases

Move Mailboxes between exchange >= 2010 servers
the output is piped into 'ft' (format table) to get complete output and not stripped it...

New-MoveRequest –Identity mailbox@arifleet.de –TargetDatabase ‘Whatever Database-Name 001’ | ft –AutoSize -Wrap