Skip to content

Commit 1035bd5

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#108199
Updated line number 69 From Get-MgGroup -All |Where-Object {$_.AdditionalProperties.writebackConfiguration.isEnabled -Like $true} |Select-Object Displayname,@{N="WriteBackEnabled";E={$_.AdditionalProperties.writebackConfiguration.isEnabled}} To Get-MgGroup -All |Where-Object {$_.writebackConfiguration.isEnabled -Like $true} |Select-Object Displayname,@{N="WriteBackEnabled";E={$_.writebackConfiguration.isEnabled}}
1 parent 1a9efb1 commit 1035bd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/enterprise-users/groups-write-back-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ You can use PowerShell to get a list of writeback enabled group using the follow
6666
```powershell-console
6767
Connect-MgGraph -Scopes @('Group.Read.all')
6868
Select-MgProfile -Name beta
69-
PS D:\> Get-MgGroup -All |Where-Object {$_.AdditionalProperties.writebackConfiguration.isEnabled -Like $true} |Select-Object Displayname,@{N="WriteBackEnabled";E={$_.AdditionalProperties.writebackConfiguration.isEnabled}}
69+
PS D:\> Get-MgGroup -All |Where-Object {$_.writebackConfiguration.isEnabled -Like $true} |Select-Object Displayname,@{N="WriteBackEnabled";E={$_.writebackConfiguration.isEnabled}}
7070
7171
DisplayName WriteBackEnabled
7272
----------- ----------------

0 commit comments

Comments
 (0)