Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ For permissions and the most current information about Windows PowerShell for Sh
### Example 1

```powershell
Add-SPOContainerUser 423poi45 -LoginName [email protected] Owner
Add-SPOContainerUser 423poi45 -LoginName [email protected] -Role Owner
```

Example 1 assigns the role of owner to user with User Principal Name "[email protected]".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ For permissions and the most current information about Windows PowerShell for Sh
### Example 1

```powershell
Remove-SPOContainerUser 423poi45 -LoginName [email protected] Owner
Remove-SPOContainerUser 423poi45 -LoginName [email protected] -Role Owner
```

Example 1 removes the user with User Principal Name "[email protected]" from the role of an owner of container whose ContainerId is 423poi45 .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For permissions and the most current information about Windows PowerShell for Sh
### Example 1

```powershell
Set-SPOContainerUser 423poi45 -LoginName [email protected] Manager
Set-SPOContainerUser 423poi45 -LoginName [email protected] -Role Manager
```

Example 1 reassigns the role of User Principal Name "[email protected]" to manager.
Expand Down