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
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,8 +46,37 @@ You can also configure writeback settings for a group on the property page for t
46
46
47
47
:::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":::
48
48
49
+
## Read the Writeback configuration using PowerShell
50
+
51
+
You can use PowerShell to get a list of writeback enabled group using the following PowerShell Get-MgGroup cmdlet.
## Reading the Writeback configuration using Graph Explorer
65
+
66
+
Open [Microsoft Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer) and use the following endpoint ```https://graph.microsoft.com/beta/groups/{Group_ID}```.
67
+
68
+
Replace the Group_ID with a cloud group id, the click on Run query.
69
+
In the **Response Preview** scroll to the end to see the part of the JSON file
70
+
```JSON
71
+
"writebackConfiguration": {
72
+
"isEnabled": true,
73
+
```
74
+
75
+
49
76
## Next steps
50
77
51
78
Check out the groups REST API documentation for the [preview writeback property on the settings template](../hybrid/how-to-connect-group-writeback.md).
52
79
53
80
For more about group writeback operations, see [Azure AD Connect group writeback](../hybrid/how-to-connect-group-writeback.md)
81
+
82
+
For more information about the writebackConfiguration resource, read [writebackConfiguration resource type](https://docs.microsoft.com/en-us/graph/api/resources/writebackconfiguration?view=graph-rest-beta)
0 commit comments