We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ade4e1 commit 3c432bbCopy full SHA for 3c432bb
Modules/CIPPCore/Public/Functions/Get-CIPPTenantAlignment.ps1
@@ -52,7 +52,7 @@ function Get-CIPPTenantAlignment {
52
53
# Get standards comparison data
54
$StandardsTable = Get-CIPPTable -TableName 'CippStandardsReports'
55
- $AllStandards = Get-CIPPAzDataTableEntity @StandardsTable
+ $AllStandards = Get-CIPPAzDataTableEntity @StandardsTable -Filter "PartitionKey ne 'StandardReport'"
56
57
# Filter by tenant if specified
58
$Standards = if ($TenantFilter) {
@@ -263,6 +263,7 @@ function Get-CIPPTenantAlignment {
263
return $Results
264
} catch {
265
Write-Error "Error getting tenant alignment data: $($_.Exception.Message)"
266
+ Write-Information $_.InvocationInfo.PositionMessage
267
throw
268
}
269
0 commit comments