Change HTTPS Listener Port Im Default Mode setzen wir für den HTTPS Listener der Port 5986 ein. Der kann bei Bedarf geändert werden. Die Gründe
WeiterlesenSchlagwort: Custom
Powershell 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 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
Weiterlesen