Skip to content

Commit 4649406

Browse files
committed
Merge branch 'main' into EOP-chrisda
2 parents 68a031b + d60cea5 commit 4649406

17 files changed

+556
-424
lines changed

.openpublishing.publish.config.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"Conceptual": "Content",
4040
"ManagedReference": "Content",
4141
"RestApi": "Content",
42-
"PowershellModule": "Content",
43-
"PowershellCmdlet": "Content"
42+
"PowerShellModule1": "Content",
43+
"PowerShellCmdlet1": "Content"
4444
},
4545
"build_entry_point": "docs",
4646
"template_folder": "_themes",
@@ -137,8 +137,8 @@
137137
"Conceptual": "Content",
138138
"ManagedReference": "Content",
139139
"RestApi": "Content",
140-
"PowershellModule": "Content",
141-
"PowershellCmdlet": "Content"
140+
"PowerShellModule1": "Content",
141+
"PowerShellCmdlet1": "Content"
142142
},
143143
"build_entry_point": "docs",
144144
"template_folder": "_themes",
@@ -149,7 +149,7 @@
149149
]
150150
},
151151
"monikerPath": [
152-
"mapping/MAML2Yaml/monikerMapping.json"
152+
"mapping/monikerMapping.json"
153153
]
154154
}
155155
],
@@ -191,4 +191,4 @@
191191
"version": "latest"
192192
}
193193
]
194-
}
194+
}

whiteboard/whiteboard-ps/whiteboard/Get-OriginalFluidWhiteboards.md renamed to whiteboard/whiteboard-ps/WhiteboardAdmin/Get-OriginalFluidWhiteboards.md

Lines changed: 61 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: WhiteboardAdmin-help.xml
33
Module Name: WhiteboardAdmin
44
online version: https://learn.microsoft.com/powershell/module/whiteboard/get-originalfluidwhiteboards
@@ -13,13 +13,13 @@ ms.reviewer:
1313
# Get-OriginalFluidWhiteboards
1414

1515
## SYNOPSIS
16-
1716
Gets one or more whiteboards that are originally created as Fluid whiteboards, directly into users OneDrive and return them as objects.
1817

1918
## SYNTAX
2019

21-
```powershell
22-
Get-OriginalFluidWhiteboards [-UserId] [-ForceAuthPrompt] [<CommonParameters>]
20+
```
21+
Get-OriginalFluidWhiteboards [-UserId] <Guid> [[-ConnectMgGraph] <String>] [[-ContinuationToken] <String>]
22+
[-ForceAuthPrompt] [[-IncrementalRunName] <String>] [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION
@@ -30,15 +30,14 @@ Gets one or more whiteboards that are originally created as Fluid whiteboards, d
3030

3131
### EXAMPLE 1
3232

33+
Get all user's whiteboards that are originally created as Fluid whiteboards directly into users OneDrive.
34+
3335
```powershell
3436
PS C:\>Get-OriginalFluidWhiteboards -UserId 00000000-0000-0000-0000-000000000001
3537
```
3638

37-
Get all user's whiteboards that are originally created as Fluid whiteboards directly into users OneDrive.
38-
39-
### Output
4039

41-
```yaml
40+
```Output
4241
Drive Items found for User 00000000-0000-0000-0000-000000000001 ---------------------------------------------------
4342
Name: TradeTestwhiteboard.whiteboard
4443
ID: 01ZSJH4Y3TXKT7TKCRRZG3LFKTEGDGSKW4
@@ -62,21 +61,34 @@ User Name: Adele Vance
6261

6362
## PARAMETERS
6463

65-
### -UserId
66-
67-
The ID of the user account to query whiteboards for. Admin should have access to user OneDrive to get that user whiteboards.
64+
### -ConnectMgGraph
65+
{{ Fill ConnectMgGraph Description }}
6866

6967
```yaml
70-
Type: Guid
68+
Type: System.String
7169
Parameter Sets: (All)
7270
Aliases:
7371

74-
Required: True
72+
Required: False
7573
Position: 1
7674
Default value: None
7775
Accept pipeline input: False
7876
Accept wildcard characters: False
79-
Applicable: Microsoft Whiteboard
77+
```
78+
79+
### -ContinuationToken
80+
{{ Fill ContinuationToken Description }}
81+
82+
```yaml
83+
Type: System.String
84+
Parameter Sets: (All)
85+
Aliases:
86+
87+
Required: False
88+
Position: 2
89+
Default value: None
90+
Accept pipeline input: False
91+
Accept wildcard characters: False
8092
```
8193
8294
### -ForceAuthPrompt
@@ -93,7 +105,37 @@ Position: Named
93105
Default value: False
94106
Accept pipeline input: False
95107
Accept wildcard characters: False
96-
Applicable: Microsoft Whiteboard
108+
```
109+
110+
### -IncrementalRunName
111+
{{ Fill IncrementalRunName Description }}
112+
113+
```yaml
114+
Type: System.String
115+
Parameter Sets: (All)
116+
Aliases:
117+
118+
Required: False
119+
Position: 3
120+
Default value: None
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
125+
### -UserId
126+
127+
The ID of the user account to query whiteboards for. Admin should have access to user OneDrive to get that user whiteboards.
128+
129+
```yaml
130+
Type: Guid
131+
Parameter Sets: (All)
132+
Aliases:
133+
134+
Required: True
135+
Position: 0
136+
Default value: None
137+
Accept pipeline input: False
138+
Accept wildcard characters: False
97139
```
98140
99141
### CommonParameters
@@ -102,8 +144,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
102144
103145
## INPUTS
104146
147+
### None
148+
105149
## OUTPUTS
106150
151+
### System.Object
152+
107153
## NOTES
108154
109155
For details on user IDs, see the [overview page](../../docs-conceptual/overview.md).

whiteboard/whiteboard-ps/whiteboard/Get-OriginalFluidWhiteboardsForTenant.md renamed to whiteboard/whiteboard-ps/WhiteboardAdmin/Get-OriginalFluidWhiteboardsForTenant.md

Lines changed: 45 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: WhiteboardAdmin-help.xml
33
Module Name: WhiteboardAdmin
44
online version: https://learn.microsoft.com/powershell/module/whiteboard/get-originalfluidwhiteboardsfortenant
@@ -13,33 +13,37 @@ ms.reviewer:
1313
# Get-OriginalFluidWhiteboardsForTenant
1414

1515
## SYNOPSIS
16-
17-
Gets one or more whiteboards that are originally created as fluid directly into OneDrive for all users under that admin and returns them as objects.
16+
Gets one or more whiteboards that are originally created as fluid directly into OneDrive for all
17+
users under that admin and returns them as objects.
1818

1919
## SYNTAX
2020

21-
```powershell
22-
Get-OriginalFluidWhiteboardsForTenant [-IncrementalRunName <String>] [-ForceAuthPrompt] [<CommonParameters>]
21+
```
22+
Get-OriginalFluidWhiteboardsForTenant [[-IncrementalRunName] <String>] [-ForceAuthPrompt]
23+
[<CommonParameters>]
2324
```
2425

2526
## DESCRIPTION
2627

27-
Gets one or more whiteboards that are originally created as fluid directly into OneDrive and returns them as objects. It output all boards created directly into OneDrive in all user accounts under that Tenant
28+
Gets one or more whiteboards that are originally created as fluid directly into OneDrive and returns
29+
them as objects. It output all boards created directly into OneDrive in all user accounts under that
30+
Tenant
2831

2932
## EXAMPLES
3033

3134
### EXAMPLE 1
3235

36+
Get all user's originally created fluid whiteboards in that tenant and outputs in cmd with all users
37+
whiteboards provided admin has access to all those users oneDrive for which it is intended to get
38+
whiteboards.
39+
3340
```powershell
3441
PS C:\>Get-OriginalFluidWhiteboardsForTenant
3542
```
3643

37-
Get all user's originally created fluid whiteboards in that tenant and outputs in cmd with all users whiteboards provided admin has access to all those users oneDrive for which it is intended to get whiteboards.
38-
39-
### Output
40-
41-
```yaml
42-
Drive Items found for User e2ff85af-37e6-4ed7-893b-7ea10c380dc4 ---------------------------------------------------
44+
```Output
45+
Drive Items found for User e2ff85af-37e6-4ed7-893b-7ea10c380dc4
46+
---------------------------------------------------
4347
Name: Test11whiteboard.whiteboard
4448
ID: 01ZSJH4Y3TXKT7TKCRRZG3LFKTEGDGSKW4
4549
Last Modified: 03/06/2025 09:59:32
@@ -58,7 +62,8 @@ User ID: e2ff85af-37e6-4ed7-893b-7ea10c380dc4
5862
User Email: [email protected]
5963
User Name: Adele Vance
6064
--------------------------------------
61-
Drive Items found for User 98f9e197-f331-4cca-b7b7-0c0307452fdd ---------------------------------------------------
65+
Drive Items found for User 98f9e197-f331-4cca-b7b7-0c0307452fdd
66+
---------------------------------------------------
6267
Name: Azure111 whiteboard 1.whiteboard
6368
ID: 01BYRZZIGVVILTKNPTFFFL2M5WFSTDVMSZ
6469
Last Modified: 02/13/2025 16:45:58
@@ -83,15 +88,15 @@ Admin does not have access to User 4f14ba28-e678-4535-a9ea-c9f3b32c46f0 OneDrive
8388

8489
### EXAMPLE 2
8590

91+
Get all user's originally created fluid whiteboards in that tenant and incrementally creates file
92+
"WhiteboardsOriginalFluid-$IncrementalRunName.txt" with all users whiteboards provided admin has
93+
access to all those users oneDrive for which it is intended to get whiteboards.
94+
8695
```powershell
8796
PS C:\>Get-OriginalFluidWhiteboardsForTenant -IncrementalRunName 1
8897
```
8998

90-
Get all user's originally created fluid whiteboards in that tenant and incrementally creates file "WhiteboardsOriginalFluid-$IncrementalRunName.txt" with all users whiteboards provided admin has access to all those users oneDrive for which it is intended to get whiteboards.
91-
92-
### Output
93-
94-
```yaml
99+
```Output
95100
[
96101
"Name: Test11whiteboard.whiteboard",
97102
"ID: 01ZSJH4Y3TXKT7TKCRRZG3LFKTEGDGSKW4",
@@ -127,50 +132,57 @@ Get all user's originally created fluid whiteboards in that tenant and increment
127132

128133
## PARAMETERS
129134

130-
### -IncrementalRunName
131-
132-
Saves incremental progress as the cmdlet runs. Writes progress and results to `.txt` files in the current directory:
135+
### -ForceAuthPrompt
133136

134-
- `WhiteboardsOriginalFluid-*.txt` contains the incremental results containing whiteboard objects for the tenant where `*` is the provided **IncrementalRunName**.
137+
Optional. Always prompt for auth. Use to ignore cached credentials.
135138

136139
```yaml
137-
Type: String
140+
Type: System.Management.Automation.SwitchParameter
138141
Parameter Sets: (All)
139142
Aliases:
140143

141144
Required: False
142-
Position: 2
143-
Default value: None
145+
Position: Named
146+
Default value: False
144147
Accept pipeline input: False
145148
Accept wildcard characters: False
146-
Applicable: Microsoft Whiteboard
147149
```
148150
149-
### -ForceAuthPrompt
151+
### -IncrementalRunName
150152
151-
Optional. Always prompt for auth. Use to ignore cached credentials.
153+
Saves incremental progress as the cmdlet runs. Writes progress and results to `.txt` files in the
154+
current directory:
155+
156+
- `WhiteboardsOriginalFluid-*.txt` contains the incremental results containing whiteboard objects
157+
for the tenant where `*` is the provided **IncrementalRunName**.
152158

153159
```yaml
154-
Type: SwitchParameter
160+
Type: System.String
155161
Parameter Sets: (All)
156162
Aliases:
157163
158164
Required: False
159-
Position: Named
160-
Default value: False
165+
Position: 0
166+
Default value: None
161167
Accept pipeline input: False
162168
Accept wildcard characters: False
163-
Applicable: Microsoft Whiteboard
164169
```
165170

166171
### CommonParameters
167172

168-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216)
173+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
174+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
175+
-WarningAction, and -WarningVariable. For more information, see
176+
[about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216)
169177

170178
## INPUTS
171179

180+
### None
181+
172182
## OUTPUTS
173183

184+
### System.Object
185+
174186
## NOTES
175187

176188
For details on user IDs, see the [overview page](../../docs-conceptual/overview.md).

0 commit comments

Comments
 (0)