Inhalt |
---|
1.
...
Einleitung
Registrierung einer Applikation in Azure AD is only necessary for environments when:
the archive system is connected to Exchange
Migrations from/to Exchange are to be performed
The step-by-step instructions are presented as an example for swap.
2. step by step instruction
...
ist nur für Umgebungen notwendig wenn:
das Archivsystem an Exchange angebunden wird
Migrationen von/nach Exchange durchgeführt werden soll
Die Schritt für Schritt - Anleitung wird exemplarisch für swap dargestellt.
2. Schritt für Schritt-Anleitung
2.1. Azure Active Directory
Azure Active Directory -> App registrations
...
...
Copy application Application (client) ID , will be needed later in stanoc configurationkopieren, wird später in der stanoc Konfiguration benötigt
Search
for Suche nach
Office 365 Exchange Online
...
Copy
and save value (needed for stanoc configurationValue kopieren und sichern (wird für stanoc Konfiguration benötigt)
Zugriff der App auf bestimmte Postfächer einschränken:
Per Powershell: Exchange Online Management Modul https://learn.microsoft.com/en-us/powershell/module/exchange/new-applicationaccesspolicy?view=exchange-ps&preserve-view=true#example-2
Codeblock |
---|
$appid = "AppID der registrierten App"
$groupname = "Gruppe der Postfächer, auf die der Zugriff erlaubt werden soll"
New-ApplicationAccessPolicy -AccessRight RestrictAccess -AppId $appid -PolicyScopeGroupId $groupname -Description "Zugriff stanoc SWAP nur auf die Mailboxen der Gruppe $groupname erlauben" |