Search Results for

    Show / Hide Table of Contents

    Configure authentication

    The Microsoft 365 Assessment tool uses Azure AD based authentication and requires a configured Azure AD application to run. The Microsoft 365 Assessment tool supports both application permissions (app-only) and delegated (user) permissions and various ways to authenticate.

    Important

    If you want the assessment tool to read all sites in your tenant then using application permissions is strongly recommended as that's the only way to guarantee that the Microsoft 365 Assessment tool can read all the sites. When you want to only assess a couple of sites and your account has permissions to these sites then using delegated permissions is an option.

    Setting up the Azure AD application

    A configured Azure AD application is a pre-requisite for using the Microsoft 365 Assessment tool. When you start an assessment you'll be able to specify the Azure AD application to use and how you want to authenticate. When you don't specify an Azure AD application when starting an assessment the PnP Management Shell application will be assumed, if you're using a recent PnP PowerShell version then this application most likely was setup.

    Note

    It's strongly recommended to create a dedicated Azure AD application so you can limit the needed permissions to what's needed by the module you're using in the Microsoft 365 Assessment tool. Also as throttling rules are bound to applications there's less throttling impact if you use a dedicated Azure AD application for the assessments.

    Permissions required

    The Microsoft 365 Assessment tool aims to be able to perform the assessment task at hand using minimal read permissions, but for certain assessments not all features work when using minimal permissions. To understand which Microsoft Graph and SharePoint permissions are required please checkout the permission requirements of the respective modules.

    • SharePoint Syntex adoption
    • Workflow 2013 deprecation

    Creating an Azure AD application using PnP PowerShell

    Using PnP PowerShell creating an Azure AD application becomes really simple. The Register-PnPAzureADApp cmdlet will create a new Azure AD application, will create a new self-signed certificate inside the Personal node (= My) of the CurrentUser certificate store, and will hookup that cert with the created Azure AD application. Finally the right permissions are configured and you're prompted to consent these permissions.

    Important

    If you encounter errors during below steps it's likely that you do not have the needed permissions. Please contact your tenant / Azure AD admins for help.

    # Sample for the SharePoint Syntex adoption module. Remove the application/delegated permissions depending on your needs
    # and update the Tenant and Username properties to match your environment.
    #
    # If you prefer to have a password set to secure the created PFX file then add below parameter
    # -CertificatePassword (ConvertTo-SecureString -String "password" -AsPlainText -Force)
    #
    # See https://pnp.github.io/powershell/cmdlets/Register-PnPAzureADApp.html for more options
    #
    Register-PnPAzureADApp -ApplicationName Microsoft365AssessmentToolForSyntex `
                           -Tenant contoso.onmicrosoft.com `
                           -Store CurrentUser `
                           -GraphApplicationPermissions "Sites.Read.All" `
                           -SharePointApplicationPermissions "Sites.FullControl.All" `
                           -GraphDelegatePermissions "Sites.Read.All", "User.Read" `
                           -SharePointDelegatePermissions "AllSites.Manage" `
                           -Username "joe@contoso.onmicrosoft.com" `
                           -Interactive
    
    Note

    Replace contoso.onmicrosoft.com with your Azure AD tenant name and ensure you replace joe@contoso.onmicrosoft.com with the user id that's an Azure AD admin (or global admin). If you're unsure what your Azure AD tenant name is then go to https://aad.portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Overview and check for the value of Primary domain.

    Once you've pressed enter on above command, you'll be prompted to sign-in and you should sign-in using the user you've specified for the Username parameter. After that's done the Azure AD application will be created and configured, followed by a wait of 60 seconds to ensure the creation has been propagated across all systems. The final step is the admin consent flow: you'll again be prompted to sign-in with the specified admin user, followed by a consent dialog showing the permissions that are being granted to the application. Press Accept to finalize the consent flow. In the resulting output you'll get some key information:

    Pfx file               : D:\assessment\Microsoft365AssessmentTool.pfx
    Cer file               : D:\assessment\Microsoft365AssessmentTool.cer
    AzureAppId/ClientId    : 95610f5d-729a-4cd1-9ad7-1fa9052e50dd
    Certificate Thumbprint : 165CCE93E08FD3CD85B7B25D5E91C05B1D1E49FE
    

    Running the Register-PnPAzureADApp did not only create and configure the Azure AD application, it also did create a certificate for the application permission flow. This certificate has been added to the current user's certificate store, under the personal node. You can use certmgr on the command line to open up the local user's certificate store.

    Note

    The certificate is also exported as PFX file and cer file on the file system, feel free to delete these exported files as it's easier to use the certificate from the certificate store.

    When you now want to use the certificate for starting an assessment, you need to set --authmode to application and tell the Microsoft 365 Assessment tool which certificate to use via the certificate path parameter: --certpath "My|CurrentUser|165CCE93E08FD3CD85B7B25D5E91C05B1D1E49FE". Next to that you also need to specify the Azure AD application to use via the --applicationid parameter. More details on how to configure authentication when starting an assessment can be found here.

    Important

    Notice that the last part in the --certpath string is the certificate thumbprint to use. If you've not captured that thumbprint earlier on you can get it by looking up your certificate via certmgr, opening it to the Details tab and scrolling down to the Thumbprint field. Select the shown value and press CTRL-C to copy it.

    Creating an Azure AD application using the Azure AD Portal

    Previous chapter described approach that creates and configures an Azure AD application by using PnP PowerShell. If you want to manually create the Azure AD application that's an option as well. Follow below steps to create and configure your Azure AD application:

    1. Navigate to Azure AD Portal and click on Azure Active Directory from the left navigation
    2. Click on Add in the toolbar and choose App registration, this will open up the Register an application page
    3. Provide a Name for your Azure AD application (e.g. Microsoft365AssessmentToolForWorkflow)
    4. Select Public client/native (mobile & desktop) and enter http://localhost as redirect URI
    5. Click on Register and the Azure AD application gets created and opened
    6. Choose API permissions from the left navigation and add the needed delegated and/or application permissions. See the requirements page of the module you want to use for the exact permissions
    7. Click on Grant admin consent for... to consent the added permissions

    When you want to use the Device authentication then also:

    1. Under Authentication set Allow public client flows to Yes

    When you want to use Application authentication then also:

    1. Ensure you've defined the needed application permissions via the API permissions link the left navigation. See the requirements page of the module you want to use for the exact permissions and don't forget to click on Grant admin consent for... to consent the added permissions
    2. Go to Certificates & secrets, click on Certificates and Upload certificate, pick the .cer file of your certificate and add it.
    Note

    If you don't have a certificate available then you can use Windows PowerShell to create one: https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-self-signed-certificate.

    Back to top Microsoft 365 Assessment Tool
    Generated by DocFX with Material UI