Skip to content

Commit 4283eae

Browse files
authored
Fix README runbook example to use HTMLReportPath instead of ExportPath (#119)
The example Azure Automation runbook was using ExportPath (which controls CSV export) instead of HTMLReportPath (which controls HTML report output). Fixes #118
1 parent 9428486 commit 4283eae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ param(
416416
[string]$TenantId,
417417
[string]$CertificateThumbprint,
418418
[string]$ClientSecret,
419-
[string]$ExportPath = "C:\\Temp\\IntuneAssignmentReport.html"
419+
[string]$HTMLReportPath = "C:\\Temp\\IntuneAssignmentReport.html"
420420
)
421421
422422
# Ensure IntuneAssignmentChecker is available
@@ -429,7 +429,7 @@ $authParams = @{
429429
GenerateHTMLReport = $true
430430
AppId = $AppId
431431
TenantId = $TenantId
432-
ExportPath = $ExportPath
432+
HTMLReportPath = $HTMLReportPath
433433
}
434434
435435
if ($CertificateThumbprint) {

0 commit comments

Comments
 (0)