Skip to content

Commit

Permalink
Fixing O365 overviews from the manual User Audit using the wrong tena…
Browse files Browse the repository at this point in the history
…nt name sometimes.
  • Loading branch information
chrisjantzen committed Jun 7, 2024
1 parent a6979a7 commit 1f6e428
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions User Audit.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4295,6 +4295,10 @@ if ($ExportChoice -eq 'Yes') {

# Create a custom overview document (or update it)
$TenantName = $OrgFullName
$TenantDetails = Get-AzureADTenantDetail
if ($TenantDetails -and $TenantDetails.DisplayName) {
$TenantName = $TenantDetails.DisplayName
}
$LicenseList_FlexAssetBody =
@{
type = 'flexible-assets'
Expand Down
2 changes: 1 addition & 1 deletion currentversion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.19.2
2.19.3

0 comments on commit 1f6e428

Please sign in to comment.