Skip to content

Latest commit

 

History

History
148 lines (112 loc) · 4.01 KB

File metadata and controls

148 lines (112 loc) · 4.01 KB

import Global from '../../_global.mdx'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

spo user ensure

Ensures that a user is available on a specific site

Usage

m365 spo user ensure [options]

Options

`-u, --webUrl <webUrl>`
: Absolute URL of the site.

`--entraId [entraId]`
: Id of the user in Entra ID. Specify either `entraId`, `userName`, `loginName`, `entraGroupId` or `entraGroupName`.

`--userName [userName]`
: User's UPN (user principal name, e.g. [email protected]). Specify either `entraId`, `userName`, `loginName`, `entraGroupId` or `entraGroupName`.

`--loginName [loginName]`
: The login name of the principal. Specify either `entraId`, `userName`, `loginName`, `entraGroupId` or `entraGroupName`.

`--entraGroupId [entraGroupId]`
: ID of the Microsoft Entra group. Specify either `entraId`, `userName`, `loginName`, `entraGroupId` or `entraGroupName`.

`--entraGroupName [entraGroupName]`
: Display name of the Microsoft Entra group. Specify either `entraId`, `userName`, `loginName`, `entraGroupId` or `entraGroupName`.

Examples

Ensure a user by its Entra Id.

m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/project --entraId e254750a-eaa4-44f6-9517-b74f65cdb747

Ensure a user by its user principal name.

m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/project --userName [email protected]

Ensure a user by its login name.

m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/Marketing --loginName "i:0#.f|membership|[email protected]"

Ensure a Microsoft Entra group by ID.

m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/Marketing --entraGroupId e08e899f-ba40-4e91-ab36-44d4fbaa454e

Ensure a Microsoft Entra group by display name.

m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/Marketing --entraGroupName "Marketing team"

Response

{
  "Id": 35,
  "IsHiddenInUI": false,
  "LoginName": "i:0#.f|membership|[email protected]",
  "Title": "John Doe",
  "PrincipalType": 1,
  "Email": "[email protected]",
  "Expiration": "",
  "IsEmailAuthenticationGuestUser": false,
  "IsShareByEmailGuestUser": false,
  "IsSiteAdmin": false,
  "UserId": {
    "NameId": "1003200274f51d2d",
    "NameIdIssuer": "urn:federation:microsoftonline"
  },
  "UserPrincipalName": "[email protected]"
}
Email                         : [email protected]
Expiration                    :
Id                            : 35
IsEmailAuthenticationGuestUser: false
IsHiddenInUI                  : false
IsShareByEmailGuestUser       : false
IsSiteAdmin                   : false
LoginName                     : i:0#.f|membership|[email protected]
PrincipalType                 : 1
Title                         : John Doe
UserId                        : {"NameId":"1003200274f51d2d","NameIdIssuer":"urn:federation:microsoftonline"}
UserPrincipalName             : [email protected]
Id,IsHiddenInUI,LoginName,Title,PrincipalType,Email,Expiration,IsEmailAuthenticationGuestUser,IsShareByEmailGuestUser,IsSiteAdmin,UserId,UserPrincipalName
35,,i:0#.f|membership|[email protected],John Doe,1,[email protected],,,,,"{""NameId"":""100320009d80e5de"",""NameIdIssuer"":""urn:federation:microsoftonline""}",[email protected]
# spo user ensure --webUrl "https://contoso.sharepoint.com" --userName "[email protected]"

Date: 18/02/2023

## John Doe (35)

Property | Value
---------|-------
Id | 35
IsHiddenInUI | false
LoginName | i:0#.f\|membership\|[email protected]
Title | John Doe
PrincipalType | 1
Email | [email protected]
Expiration |
IsEmailAuthenticationGuestUser | false
IsShareByEmailGuestUser | false
IsSiteAdmin | false
UserPrincipalName | [email protected]