If you are a Microsoft employee or partner performing the assessment for a customer please see the Wiki for the Assessment Guide.
If you run into any errors please see the FAQ section at the end of this document.
Install-Module AzureADAssessment -Force -AcceptLicense -Scope CurrentUser
## If you have already installed the module, run the following instead to ensure you have the latest version.
Update-Module AzureADAssessment -Force -AcceptLicense -Scope CurrentUser
Data collection from Azure AD can be run from any client with access to Azure AD. However, data collection from hybrid components such as AD FS, AAD Connect, etc. are best run locally on those servers.
Verify that you have authorized credentials to access these workloads:
- Azure Active Directory as Global Administrator or Global Reader (email OTP policy won't be reported by Global Reader)
- Domain or local administrator access to ADFS Servers
- Domain or local administrator access to Azure AD Proxy Connector Servers
- Domain or local administrator access to Azure AD Connect Server (Primary)
- Domain or local administrator access to Azure AD Connect Server (Staging Server)
Run following commands to produce a package of all the Azure AD data necessary to complete the assessment.
## Authenticate using a Global Admin or Global Reader account.
Connect-AADAssessment
## Export data to "C:\AzureADAssessment" into a single output package.
Invoke-AADAssessmentDataCollection
The output package will be named according to the following pattern: AzureADAssessmentData-<TenantDomain>.zip
To collect data from hybrid components (such as AAD Connect, AD FS, AAD App Proxy), you can export a portable version of this module that can be easily copied to servers with no internet connectivity.
## Export Portable Module to "C:\AzureADAssessment".
Export-AADAssessmentPortableModule "C:\AzureADAssessment"
On each server running hybrid components, copy the module file "AzureADAssessmentPortable.psm1" and import it there.
## Import the module on each server running hybrid components.
Import-Module "C:\AzureADAssessment\AzureADAssessmentPortable.psm1"
## Export Data to "C:\AzureADAssessment" into a single output package.
Invoke-AADAssessmentHybridDataCollection
Once data collection is complete, provide the output packages to whoever is completing the assessment.
If you are generating and reviewing the output yourself, please see the Wiki for the Assessment Guide.
## If you prefer to use your own app registration for automation purposes, you may connect using your own ClientId and Certificate like the example below. Your app registration should include Directory.Read.All and Policy.Read.All permissions to MS Graph for a complete assessment. Once added, ensure you have completed admin consent on the service principal for those application permissions.
Connect-AADAssessment -ClientId <ClientId> -ClientCertificate (Get-Item 'Cert:\CurrentUser\My\<Thumbprint>') -TenantId <TenantId>
## If you would like to specify a different directory, use the OutputDirectory parameter.
Invoke-AADAssessmentDataCollection "C:\Temp"
Invoke-AADAssessmentHybridDataCollection "C:\Temp"
When trying to install the module I'm receiving the error 'A parameter cannot be found that matches parameter name 'AcceptLicense'
Run the following command to update PowerShellGet to the latest version.
## Update Nuget Package and PowerShellGet Module
Install-PackageProvider NuGet -Force
Install-Module PowerShellGet -Force
Once completed, close all open PowerShell windows, open a new PowerShell window and run the command below to install the module.
Install-Module AzureADAssessment -Force -AcceptLicense -Scope CurrentUser
If you are using PowerShell Core (ie PowerShell 6 or 7) and your tenant has a conditional access policy that requires a Compliant or Hybrid Azure AD Joined device, you may not be able to sign in.
To work around this issue use Windows PowerShell (instead of PowerShell 6 or 7). To launch Windows PowerShell go to Start > Windows PowerShell
File/folder | Description |
---|---|
build |
Scripts to package, test, sign, and publish the module. |
src |
Module source code. |
tests |
Test scripts for module. |
.gitignore |
Define what to ignore at commit time. |
README.md |
This README file. |
LICENSE |
The license for the module. |
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.