Skip to content

Commit c956ebc

Browse files
Update Get users who create most flows.md
1 parent 8c6b046 commit c956ebc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/English/PowerPlatform/Get users who create most flows.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ Connect-PnpOnline
2323
$environment = Get-PnPPowerPlatformEnvironment
2424
$Flows = Get-PnPFlow -Environment $environment -AsAdmin | select -expandProperty Properties
2525
```
26-
<img src="/articles/images/flows18.PNG" width="400">
26+
<img src="/articles/images/flows18.PNG" width="600">
2727

2828
One of those properties is the Creator. If you expand it, you obtain ObjectId, which is Azure Active Directory ObjectId.
29-
<img src="/articles/images/flows104.PNG" width="400">
29+
<img src="/articles/images/flows104.PNG" width="600">
3030

3131
Using ```Group-Object``` and ```Sort-Object``` cmdlets, you get the users who created most flows.
3232
```
3333
$props.Creator | Group-Object -Property ObjectId -NoElement | Sort-Object -Descending
3434
```
3535

36-
<img src="/articles/images/flows19.PNG" width="400">
36+
<img src="/articles/images/flows19.PNG" width="600">
3737
<br/>
3838

3939

@@ -67,6 +67,6 @@ $MostProlific | Foreach-Object {
6767
$user | Export-CSV -Path yourcsvpath.csv -Append
6868
}
6969
```
70-
<img src="/articles/images/flow21.PNG" width="400">
70+
<img src="/articles/images/flow21.PNG" width="600">
7171

7272

0 commit comments

Comments
 (0)