Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Kommentar: Updating numbered headings
Inhalt

1. introduction

Registering Registration of an application in Azure AD is only necessary for environments whenif:

  • the archive system is connected to Exchange

  • Migrations from/to Exchange are to be performedcarried out

The step-by-step instructions are presented shown as an example for swap.

2. step by step

...

instructions

2.1. 2.1 Azure Active Directory

https://aad.portal.azure.com/

...

Copy application (client) ID, will be needed required later in the stanoc configuration

Search for

Office 365 Exchange Online

These restricted rights may also be sufficient:

...

...

Copy and save value (needed required for stanoc configuration)

2.2. 2.2 Restricting the app's access to certain mailboxes

Via Powershell: Exchange Online Management Module 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"