Windows/exchange: Unterschied zwischen den Versionen

Aus SchnallIchNet
Wechseln zu: Navigation, Suche
Zeile 17: Zeile 17:
 
the output is piped into 'ft' (format table) to get complete output and not stripped it...
 
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
+
  New-MoveRequest -Identity mailbox@arifleet.de -TargetDatabase ‘Whatever Database-Name 001’ | ft -AutoSize -Wrap

Version vom 18. März 2015, 09:52 Uhr

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