Skip to content

Commit

Permalink
Merge pull request #47 from kayasax/reporting
Browse files Browse the repository at this point in the history
resolving pests
  • Loading branch information
kayasax authored May 3, 2024
2 parents 75fd6d3 + 61b5ec5 commit 16fe5e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion EasyPIM/functions/Show-PIMReport.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ function Show-PIMReport {
$tenantID
)
try {
$Script:tenantID = $tenantID

$allresults = @()

$top=100
Expand All @@ -44,7 +46,7 @@ function Show-PIMReport {
}

#filter activities from the PIM service
$allresults = $allresults |Where-Object{$_.initiatedby.values.userprincipalname -ne $null}
$allresults = $allresults |Where-Object{ $null -ne $_.initiatedby.values.userprincipalname }


$props=@{}
Expand Down

0 comments on commit 16fe5e1

Please sign in to comment.