diff --git a/Azure/Azure-Licensing-Report.ps1 b/Azure/Azure-Licensing-Report.ps1 index 780ce8d..a624caa 100644 --- a/Azure/Azure-Licensing-Report.ps1 +++ b/Azure/Azure-Licensing-Report.ps1 @@ -1,3 +1,30 @@ +<# +.SYNOPSIS + Generates an Azure license report, including license usage data, and sends it via email. + +.DESCRIPTION + This PowerShell script connects to the Microsoft Graph API, retrieves available licenses and licensed users, and calculates the assigned and available licenses. + It then generates an HTML report and sends it to the specified recipients. A summary report is also generated and saved to a file. + +.PARAMETER None + This script does not require any parameters. + +.EXAMPLE + .\Azure-License-Report.ps1 + +.NOTES + This script is intended for use in a test or production environment. Make sure to test the script in a non-production environment before running it in production. + Author: D.de Kooker - info@dcomputers.nl + Version: 1.0 + + DISCLAIMER: Use scripts at your own risk, if there is anything I can help you with I will try but I do not take responsibility for the way that anyone else uses my scripts. + Sharing is caring. Share your knowledge with the world so that everybody can learn from it. + +.LINK + The latest version can Always be found on my GIT page on the link below: + https://git.dcomputers.nl/Dcomputers/PowershellScripts +#> + #region Global script settings and variables #General $Version = "v1.0"