Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes "entra m365group set" command. Closes #6061 #6384

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 33 additions & 15 deletions docs/docs/cmd/entra/m365group/m365group-set.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,34 @@ m365 aad m365group set [options]

```md definition-list
`-i, --id [id]`
: The ID of the Microsoft 365 Group to update
: The ID of the Microsoft 365 Group to update.

`-n, --displayName [displayName]`
: Display name of the Microsoft 365 Group to update
: Display name of the Microsoft 365 Group to update.

`--newDisplayName [newDisplayName]`
: New display name for the Microsoft 365 Group
: New display name for the Microsoft 365 Group.

`-d, --description [description]`
: Description for the Microsoft 365 Group
: Description for the Microsoft 365 Group.

`--owners [owners]`
: Comma-separated list of Microsoft 365 Group owners to add
`--ownerIds [ownerIds]`
: Comma-separated list of IDs of Microsoft Entra ID users that will be group owners. Specify either `ownerIds` or `ownerUserNames`, but not both.

`--members [members]`
: Comma-separated list of Microsoft 365 Group members to add
`--ownerUserNames [ownerUserNames]`
: Comma-separated list of UPNs of Microsoft Entra ID users that will be group owners. Specify either `ownerIds` or `ownerUserNames`, but not both.

`--memberIds [memberIds]`
: Comma-separated list of IDs of Microsoft Entra ID users that will be group members. Specify either `memberIds` or `memberUserNames`, but not both.

`--memberUserNames [memberUserNames]`
: Comma-separated list of UPNs of Microsoft Entra ID users that will be group members. Specify either `memberIds` or `memberUserNames`, but not both.

`--isPrivate [isPrivate]`
: Set to `true` if the Microsoft 365 Group should be private and `false` if it should be public.

`-l, --logoPath [logoPath]`
: Local path to the image file to use as group logo
: Local path to the image file to use as group logo.

`--allowExternalSenders [allowExternalSenders]`
: Indicates if people external to the organization can send messages to the group. Valid values: `true`, `false`.
Expand All @@ -60,7 +66,7 @@ m365 aad m365group set [options]

## Remarks

When updating group's owners and members, the command will add newly specified users to the previously set owners and members. The previously set users will not be replaced.
When updating group's owners and members, the command will remove existing owners/members from the group, and the specified users will be added.

When specifying the path to the logo image you can use both relative and absolute paths. Note, that ~ in the path, will not be resolved and will most likely result in an error.

Expand All @@ -84,16 +90,28 @@ Change Microsoft 365 Group visibility to public.
m365 entra m365group set --id 28beab62-7540-4db1-a23f-29a6018a3848 --isPrivate `false`
```

Add new Microsoft 365 Group owners of group.
Add new Microsoft 365 Group owners by UPNs.
nanddeepn marked this conversation as resolved.
Show resolved Hide resolved

```sh
m365 entra m365group set --id 28beab62-7540-4db1-a23f-29a6018a3848 --ownerUserNames "[email protected],[email protected]"
```

Add new Microsoft 365 Group owners by IDs.
nanddeepn marked this conversation as resolved.
Show resolved Hide resolved

```sh
m365 entra m365group set --id 28beab62-7540-4db1-a23f-29a6018a3848 --ownerIds "3527dada-9368-4cdd-a958-5460f5658e0e,e94b2cb8-7c9a-4651-b1af-207d81a010b6"
```

Add new Microsoft 365 Group members by UPNs.
nanddeepn marked this conversation as resolved.
Show resolved Hide resolved

```sh
m365 entra m365group set --displayName 'Project Team' --owners "[email protected],[email protected]"
m365 entra m365group set --id 28beab62-7540-4db1-a23f-29a6018a3848 --memberUserNames "[email protected],[email protected]"
```

Add new Microsoft 365 Group members.
Add new Microsoft 365 Group members by IDs.
nanddeepn marked this conversation as resolved.
Show resolved Hide resolved

```sh
m365 entra m365group set --displayName 'Project Team' --members "[email protected],[email protected]"
m365 entra m365group set --id 28beab62-7540-4db1-a23f-29a6018a3848 --memberIds "3527dada-9368-4cdd-a958-5460f5658e0e,e94b2cb8-7c9a-4651-b1af-207d81a010b6"
```

Update Microsoft 365 Group logo.
Expand All @@ -116,4 +134,4 @@ m365 entra m365group set --id 28beab62-7540-4db1-a23f-29a6018a3848 --autoSubscri

## Response

The command won't return a response on success.
The command won't return a response on success.
Loading