We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
7
Add HealthCheck if license usage has exceeded limit
No response
The text was updated successfully, but these errors were encountered:
VeeamCommunity/veeamcommunity-2023-Team-4#15
$vbolicense = Get-VBOLicense if ($vbolicense.usednumber -gt $vbolicense.TotalNumber) { write-host "VBO license exceeds limit" -ForegroundColor Red } else { write-host "VBO Licensed : OK" -ForegroundColor Green }
Sorry, something went wrong.
Code:
if ($OutObj) { Section -Style Heading2 'Licenses' { Paragraph "The following table summarizes the licensing information within $VeeamBackupServer backup server." BlankLine if ($chartFileItem -and ($sampleData.Values | Measure-Object -Sum).Sum -ne 0) { Image -Text 'License Usage - Chart' -Align 'Center' -Percent 100 -Base64 $chartFileItem } BlankLine $OutObj | Table @TableParams if ($HealthCheck -and ($Licenses.UsedNumber -gt $Licenses.TotalNumber)) { Paragraph "Health Check:" -Bold -Underline BlankLine Paragraph { Text "Best Practice:" -Bold Text "Warning: Your license has exceeded its user limit." } BlankLine } # Per user license information if ($InfoLevel.Infrastructure.License -ge 2) { Get-AbrVB365InstalledLicenseUser } } }
Add HealthCheck if license usage has exceeded limit AsBuiltReport#24
a9f3175
rebelinux
Successfully merging a pull request may close this issue.
Veeam Backup for Microsoft 365 version
7
Description
Add HealthCheck if license usage has exceeded limit
Additional Context
No response
Before submitting
The text was updated successfully, but these errors were encountered: