# Status ermitteln Get-MailboxAutoReplyConfiguration “Administrator” # Abwesenheitsagent einschalten Set-MailboxAutoReplyConfiguration “Administrator” -AutoReplyState Enabled # Abwesenheitsagent ausschalten Set-MailboxAutoReplyConfiguration “Administrator” -AutoReplyState Disabled Powershell Exchange – Abwesenheitsagent einschalten ausschalten Status
WeiterlesenTag: 4. Juni 2016
Powershell Exchange – Postfach Statistik erstellen und exportieren
Postfach Statistik erstellen und exportieren Get-MailboxStatistics “Administrator” | ft DisplayName, TotalItemSize, ItemCount > C:\Temp\Statistik.txt
WeiterlesenPowershell AD – Proxy Adressen
Proxy Adressen auslesen Get-ADUser “Administrator” | Select Name,ProxyAddresses Powershell AD – Proxy Adressen
WeiterlesenPowershell Exchange – E-Mail Adresse aus Adressbuch ausblenden
E-Mail Adresse aus Adressbuch ausblenden # verstecken, hide Get-Mailbox -identity “Administrator” | Set-Mailbox -HiddenFromAddressListsEnabled $true # anzeigen, unhide Get-Mailbox -identity “Administrator” | Set-Mailbox -HiddenFromAddressListsEnabled $false
WeiterlesenPowershell Exchange – Postfach verschieben Status anzeigen
Postfach verschieben Status anzeigen Get-MoveRequest –MoveStatus InProgress Get-MoveRequest | ?{ $_.Status -ne “Completed” -and $_.Status -ne “CompletedWithWarning” } | group targetdatabase | sort Count -Descending
WeiterlesenPowershell Exchange – Postfach Beschränkungen auslesen
Get-Mailbox -Identity ‘”Administrator” | Fl *quota
WeiterlesenPowershell Exchange – Postfach Letzte Anmeldung, Statistik, Speicher
Postfach Letzte Anmeldung, Statistik, Speicher Get-MailboxStatistics -Identity “Administrator” | FL DisplayName, StorageLimitStatus, TotalDeletedItemSize, TotalItemSize, ItemCount, LastLoggedOnUserAccount, LastLogoffTime, LastLogonTime
WeiterlesenPowershell Exchange – Postfächer zählen Explizite CustomAttribute auslesen
Postfächer zählen Explizite CustomAttribute auslesen # Auslesen (Get-Mailbox | where {$_.customattribute15 -eq ‘MEINWERT’ }).Count # Attribute setzen Set-Mailbox -Identity “Administrator” -CustomAttribute15 MEINWERT
WeiterlesenPowershell Exchange – Postfach Ordner und Typen auslesen
Postfach Ordner und Typen auslesen Get-MailboxFolderStatistics -identity “Administrator” | FL Name, FolderPath, FolderType
WeiterlesenPowershell Exchange – Postfach Attribute auslesen
Postfach Attribute auslesen Gezielte Attribute eines Exchange-Postfaches auslesen. Get-Mailbox -Identity ‘Administrator’ | fl Name,DisplayName,alias,LinkedMasterAccount,PrimarySMTPAddress,EmailAddresses,OrganizationalUnit,ServerName,Database,IsMailboxEnabled,CustomAttribute7,CustomAttribute15,ProtocolSettings,ExchangeGuid,RecipientTypeDetails,CustomAttribute1,CustomAttribute2,CustomAttribute3, CustomAttribute4,CustomAttribute5,CustomAttribute6,CustomAttribute7,CustomAttribute8,CustomAttribute9,CustomAttribute10,CustomAttribute11,CustomAttribute12,CustomAttribute13,CustomAttribute14,CustomAttribute15,WhenChangedUTC,WhenCreatedUTC
WeiterlesenPowershell Exchange – Wann wurde ein Postfach erstellt
Wann wurde das Mail Postfach erstellt Get-Mailbox -Identity ‘JoernWalter’ | fl Name, LinkedMasterAccount,PrimarySMTPAddress,WhenChangedUTC,WhenCreatedUTC Powershell Exchange – Wann wurde ein Postfach erstellt
WeiterlesenPowershell Exchange – Postfach Anzeigen aller Ordner Größen
Get-MailboxFolderStatistics “Joern.Walter” | FL Date, Name, FolderPath, FolderType, ItemsInFolder, DeletedItemsInFolder, FolderSize, ItemsInFolderAndSubfolders, DeletedItemsInFolderAndSubfolders, FolderAndSubfolderSize Powershell Exchange – Postfach Anzeigen aller Ordner Größen
Weiterlesen