Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
microsoft_exchange [2024/09/05 09:13] jango [AutoResponder] |
microsoft_exchange [2025/04/01 08:07] (aktuell) jango |
||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
Die Microsoft Implementierung eines Email Server. | Die Microsoft Implementierung eines Email Server. | ||
+ | |||
+ | < | ||
+ | # Welche Service laufen | ||
+ | Get-Service | Where-Object { $_.Name -like " | ||
+ | |||
+ | # Welche Logs gibt es | ||
+ | Get-WinEvent -ListLog *Exchange* | Select-Object LogName | ||
+ | |||
+ | # Welche Logs sind registriert | ||
+ | wevtutil el | Select-String " | ||
+ | |||
+ | </ | ||
=====Transport Dienste===== | =====Transport Dienste===== | ||
+ | |||
+ | Siehe auch [[https:// | ||
====Frontend Transport==== | ====Frontend Transport==== | ||
Zeile 128: | Zeile 142: | ||
<code powershell> | <code powershell> | ||
// Ohne Ende | // Ohne Ende | ||
- | Set-MailboxAutoReplyConfiguration -Identity user@domain.local -AutoReplyState Enabled -InternalMessage "Ihre Nachricht für interne Mails." | + | Set-MailboxAutoReplyConfiguration -Identity |
// Mit Start und Enddatum | // Mit Start und Enddatum | ||
- | Set-MailboxAutoReplyConfiguration -Identity user@domain.local -AutoReplyState Scheduled -InternalMessage "Ihre Nachricht für interne Mails." | + | Set-MailboxAutoReplyConfiguration -Identity |
+ | |||
+ | // Deaktivieren | ||
+ | Set-MailboxAutoReplyConfiguration -Identity " | ||
</ | </ | ||
====Adressbuch==== | ====Adressbuch==== | ||
Zeile 148: | Zeile 165: | ||
Remove-AddressList -Identity "< | Remove-AddressList -Identity "< | ||
+ | </ | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | <code powershell> | ||
+ | [PS] C: | ||
+ | |||
+ | Name DisplayName | ||
+ | ---- ----------- | ||
+ | All Contacts | ||
+ | All Distribution Lists All Distribution Lists ((Alias -ne $null) -and (ObjectCategory -like ' | ||
+ | All Groups | ||
+ | -eq ' | ||
+ | All Users All Users | ||
+ | Öffentliche Ordner | ||
+ | Public Folders | ||
+ | All Rooms All Rooms | ||
+ | |||
+ | [PS] C: | ||
+ | |||
+ | Name RecipientFilter | ||
+ | ---- --------------- | ||
+ | Globale Standardadressliste ((Alias -ne $null) -and (((((((((((ObjectClass -eq ' | ||
+ | (ObjectClass -eq ' | ||
+ | |||
+ | [PS] C: | ||
+ | |||
+ | Name | ||
+ | ---- | ||
+ | Standard-Offlineadressliste (Ex2013) {Version4} {\Globale Standardadressliste} | ||
+ | |||
+ | [PS] C: | ||
+ | |||
+ | |||
+ | Name : Standard-Offlineadressliste (Ex2013) | ||
+ | AddressLists : {\Globale Standardadressliste} | ||
+ | |||
+ | [PS] C: | ||
+ | |||
+ | [PS] C: | ||
+ | |||
+ | [PS] C: | ||
+ | |||
+ | |||
+ | Name : Standard-Offlineadressliste (Ex2013) | ||
+ | AddressLists : {\TestContactList, | ||
+ | |||
+ | [PS] C: | ||
</ | </ | ||
====Kalender==== | ====Kalender==== | ||
Zeile 164: | Zeile 229: | ||
- | Get-MailboxFolderPermission -Identity | + | Get-MailboxFolderPermission -Identity |
- | Add-MailboxFolderPermission -Identity | + | Add-MailboxFolderPermission -Identity |
- | Set-MailboxFolderPermission -Identity | + | Set-MailboxFolderPermission -Identity |
- | Remove-MailboxFolderPermission -Identity | + | Remove-MailboxFolderPermission -Identity |
</ | </ | ||
Zeile 222: | Zeile 287: | ||
=====ActiveSync===== | =====ActiveSync===== | ||
- | Exchange ActiveSync ist ein von Microsoft entwickeltes Protokoll zur Synchronisierung von E-Mails, Kontakten, Kalendern und Aufgaben zwischen einem E-Mail-Server und mobilen Geräten wie Smartphones und Tablets. Es ermöglicht eine nahtlose Integration von E-Mail-Diensten, | + | Exchange |
+ | <code powershell> | ||
+ | # Finde alle Exchange Active Sync Geräte | ||
+ | PS C:\> Get-MobileDevice | ||
+ | |||
+ | RunspaceId | ||
+ | FriendlyName | ||
+ | DeviceId | ||
+ | DeviceImei | ||
+ | DeviceMobileOperator | ||
+ | DeviceOS | ||
+ | DeviceOSLanguage | ||
+ | DeviceTelephoneNumber | ||
+ | DeviceType | ||
+ | DeviceUserAgent | ||
+ | DeviceModel | ||
+ | FirstSyncTime | ||
+ | UserDisplayName | ||
+ | DeviceAccessState | ||
+ | DeviceAccessStateReason : Global | ||
+ | DeviceAccessControlRule : | ||
+ | ClientVersion | ||
+ | ClientType | ||
+ | IsManaged | ||
+ | IsCompliant | ||
+ | IsDisabled | ||
+ | AdminDisplayName | ||
+ | ExchangeVersion | ||
+ | Name : iPhone5sGlobal§sophfw5x48gu9ryw66f5tnmu9nlg8ip4 | ||
+ | DistinguishedName | ||
+ | Identity | ||
+ | Guid : 044e412d-c004-4530-9ed9-19eb70a3ef91 | ||
+ | ObjectCategory | ||
+ | ObjectClass | ||
+ | WhenChanged | ||
+ | WhenCreated | ||
+ | WhenChangedUTC | ||
+ | WhenCreatedUTC | ||
+ | OrganizationId | ||
+ | Id : dom.local/ | ||
+ | OriginatingServer | ||
+ | IsValid | ||
+ | ObjectState | ||
+ | </ | ||
+ | |||
+ | <code powershell> | ||
+ | $all_devices = Get-MobileDevice | ||
+ | Get-MobileDeviceStatistics -Identity $all_devices[0].Guid.toString() | ||
+ | </ | ||
+ | |||
+ | <code powershell> | ||
+ | [PS] C:\> Get-Mailbox -ResultSize Unlimited | Get-CasMailbox | Where-Object { $_.ActiveSyncEnabled -eq $true } | ||
+ | </ | ||
=====Links===== | =====Links===== | ||