You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/enterprise-users/groups-write-back-portal.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,8 +58,36 @@ You can also configure writeback settings for a group on the property page for t
58
58
- Targeted the writeback type as a security group
59
59
60
60
:::image type="content" source="./media/groups-write-back-portal/groups-properties-view.png" alt-text="Screenshot of changing writeback settings in the group properties." lightbox="media/groups-write-back-portal/groups-properties-view.png":::
61
+
62
+
## Read the Writeback configuration using PowerShell
63
+
64
+
You can use PowerShell to get a list of writeback enabled group using the following PowerShell Get-MgGroup cmdlet.
## Read the Writeback configuration using Graph Explorer
78
+
79
+
Open [Microsoft Graph Explorer](https://developer.microsoft.com/graph/graph-explorer) and use the following endpoint ```https://graph.microsoft.com/beta/groups/{Group_ID}```.
80
+
81
+
Replace the Group_ID with a cloud group id, and then click on Run query.
82
+
In the **Response Preview**, scroll to the end to see the part of the JSON file.
83
+
84
+
```JSON
85
+
"writebackConfiguration": {
86
+
"isEnabled": true,
87
+
```
61
88
62
89
## Next steps
63
90
64
91
- Check out the groups REST API documentation for the [preview writeback property on the settings template](/graph/api/resources/group?view=graph-rest-beta&preserve-view=true).
65
-
- For more about group writeback operations, see [Azure AD Connect group writeback](../hybrid/how-to-connect-group-writeback.md)
92
+
- For more about group writeback operations, see [Azure AD Connect group writeback](../hybrid/how-to-connect-group-writeback.md).
93
+
- For more information about the writebackConfiguration resource, read [writebackConfiguration resource type](/graph/api/resources/writebackconfiguration?view=graph-rest-beta).
0 commit comments