File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
whiteboard/whiteboard-ps/whiteboard Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,22 @@ Gets one or more Whiteboards from the Microsoft Whiteboard service and returns t
15
15
16
16
## SYNTAX
17
17
18
- ```
18
+ ### Get a specific Whiteboard
19
+
20
+ ``` powershell
19
21
Get-Whiteboard [-Token <AuthenticationResult>] -UserId <Guid> -WhiteboardId <Guid> [<CommonParameters>]
22
+ ```
20
23
24
+ ### Get all Whiteboards for a user
25
+
26
+ ``` powershell
21
27
Get-Whiteboard [-Token <AuthenticationResult>] -UserId <Guid> [<CommonParameters>]
22
28
```
23
29
24
30
## DESCRIPTION
25
31
26
32
Gets one or more Whiteboards from the Microsoft Whiteboard service and returns them as objects.
27
33
28
-
29
34
## EXAMPLES
30
35
31
36
### -------------------------- EXAMPLE 1 --------------------------
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Transfer ownership of all Whiteboards owned by a user to another user.
15
15
16
16
## SYNTAX
17
17
18
- ```
18
+ ``` powershell
19
19
Invoke-TransferAllWhiteboards [[-Token] <AuthenticationResult>] [-OwnerId] <Guid> [-NewOwnerId] <Guid> [-WhatIf] [-Confirm] [<CommonParameters>]
20
20
```
21
21
Original file line number Diff line number Diff line change @@ -10,11 +10,12 @@ schema: 2.0.0
10
10
# Set-WhiteboardOwner
11
11
12
12
## SYNOPSIS
13
+
13
14
Sets the owner for a Whiteboard.
14
15
15
16
## SYNTAX
16
17
17
- ```
18
+ ``` powershell
18
19
Set-WhiteboardOwner [[-Token] <AuthenticationResult>] [-WhiteboardId] <Guid> [-OldOwnerId] <Guid> [-NewOwnerId] <Guid> [-WhatIf] [-Confirm] [<CommonParameters>]
19
20
```
20
21
@@ -114,7 +115,6 @@ Accept wildcard characters: false
114
115
Applicable : Microsoft Whiteboard
115
116
` ` `
116
117
117
-
118
118
## INPUTS
119
119
120
120
### None
You can’t perform that action at this time.
0 commit comments