Hi everyone, I noticed that when running New-DCConditionalAccessPolicyDesignReport, the AppID column in the generated Excel file is empty due to an incorrect Microsoft Graph path.
To fix this, go to line 7969 and replace, in C:\Program Files\WindowsPowerShell\Modules\DCToolBox.psm1:
$Applications = foreach ($Application in $Policy.conditions.applications.AppId) {
with:
$Applications = foreach ($Application in $Policy.conditions.applications.includeApplications) {
After this change, the report correctly populates the AppID column. Let me know if anyone else has encountered this issue!
Hi everyone, I noticed that when running New-DCConditionalAccessPolicyDesignReport, the AppID column in the generated Excel file is empty due to an incorrect Microsoft Graph path.
To fix this, go to line 7969 and replace, in C:\Program Files\WindowsPowerShell\Modules\DCToolBox.psm1:
with:
After this change, the report correctly populates the AppID column. Let me know if anyone else has encountered this issue!