Windows/exchange: Unterschied zwischen den Versionen

Aus SchnallIchNet
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „ == PowerShell == powershell commands === add mailbox permissions === Add full access to mailbox 'mailbox@arifleet.de' for user 'DOMAIN\user': Add-Mailb…“)
 
Zeile 10: Zeile 10:
  
 
  Add-MailboxPermission -Identity mailbox@arifleet.de -User DOMAIN\user -AccessRights Fullaccess -InheritanceType All
 
  Add-MailboxPermission -Identity mailbox@arifleet.de -User DOMAIN\user -AccessRights Fullaccess -InheritanceType All
 +
 +
 +
=== move mailbox between exchange-databases ===
 +
 +
Move Mailboxes between exchange >= 2010 servers <br/>
 +
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

Version vom 5. März 2015, 16:23 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