:

    Copilot mit Conditional Access schützen

    Wollt ihr den Zugriff auf den Microsoft 365 Copilot und Security Copilot über Condtitional Access schützen, müsst ihr erst die Service Principals in eurem Tenant aktivieren. Hier erfahrt ihr, wie das geht.



    Die Aktivierung der Service Principals wird über Powershell durchgeführt.



    Probleme bei deinem Cloud-Projekt?

    Melde dich bei uns!



    Enable-CopilotServicePrincipals.ps1

    <#
    .SYNOPSIS
       Service Principals für Copilot aktivieren
     
    .DESCRIPTION
       Die Befehle in diesem Script aktivieren die benötigten Service Principals, um diese dann im Conditional Access als Ziel-App zu nutzen.
    .NOTES
      Version:        1.0
      Author:         Thomas Thaler
      Creation Date:  2024-12-20
      Purpose/Change: Creation
    #>
    
    # Install MG Graph Powershell Module
    Install-Module Microsoft.Graph -Scope CurrentUser
    
    # Connect with the appropriate scopes to create service principals
    Connect-MgGraph -Scopes "Application.ReadWrite.All"
    
    # Create service principal for the service Enterprise Copilot Platform (Microsoft 365 Copilot)
    New-MgServicePrincipal -AppId fb8d773d-7ef8-4ec0-a117-179f88add510
    
    # Create service principal for the service Security Copilot (Microsoft Security Copilot) 
    New-MgServicePrincipal -AppId bb5ffd56-39eb-458c-a53a-775ba21277da