Skip to content

Commit aabd087

Browse files
authored
Merge pull request MicrosoftDocs#6805 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents b5dd85e + b1e38f8 commit aabd087

File tree

2 files changed

+33
-18
lines changed

2 files changed

+33
-18
lines changed

exchange/exchange-ps/exchange/Set-MailboxCalendarFolder.md

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Set-MailboxCalendarFolder [-Identity] <MailboxFolderIdParameter>
3737
```
3838

3939
## DESCRIPTION
40-
The Set-MailboxCalendarFolder cmdlet configures publishing information. The calendar folder can be configured as follows:
40+
The Set-MailboxCalendarFolder cmdlet configures calendar publishing information. The calendar folder can be configured as follows:
4141

4242
- Whether the calendar folder is enabled for publishing
4343
- Range of start and end calendar days to publish
@@ -115,14 +115,14 @@ Accept wildcard characters: False
115115
```
116116

117117
### -DetailLevel
118-
The DetailLevel parameter specifies the level of calendar detail that's published and available to anonymous users. You can use the following values:
118+
The DetailLevel parameter specifies the level of calendar detail that's published and available to anonymous users. Valid values are:
119119

120-
- AvailabilityOnly
120+
- AvailabilityOnly (This is the default value)
121121
- LimitedDetails
122122
- FullDetails
123123
- Editor
124124

125-
The default value is AvailabilityOnly.
125+
This parameter is meaningful only when the PublishEnabled parameter value is $true.
126126

127127
```yaml
128128
Type: DetailLevelEnumType
@@ -156,17 +156,17 @@ Accept wildcard characters: False
156156
```
157157

158158
### -PublishDateRangeFrom
159-
The PublishDateRangeFrom parameter specifies the number of days of calendar information to publish before the current date. You can use the following values:
159+
The PublishDateRangeFrom parameter specifies the start date of calendar information to publish (past information). Valid values are:
160160

161161
- OneDay
162162
- ThreeDays
163163
- OneWeek
164164
- OneMonth
165-
- ThreeMonths
165+
- ThreeMonths (This is the default value)
166166
- SixMonths
167167
- OneYear
168168

169-
The default value is ThreeMonths.
169+
This parameter is meaningful only when the PublishEnabled parameter value is $true.
170170

171171
```yaml
172172
Type: DateRangeEnumType
@@ -182,17 +182,17 @@ Accept wildcard characters: False
182182
```
183183

184184
### -PublishDateRangeTo
185-
The PublishDateRangeTo parameter specifies the number of days of calendar information to publish after the current date. You can use the following values:
185+
The PublishDateRangeTo parameter specifies the end date of calendar information to publish (future information). Valid values are:
186186

187187
- OneDay
188188
- ThreeDays
189189
- OneWeek
190190
- OneMonth
191-
- ThreeMonths
191+
- ThreeMonths (This is the default value)
192192
- SixMonths
193193
- OneYear
194194

195-
The default value is ThreeMonths.
195+
This parameter is meaningful only when the PublishEnabled parameter value is $true.
196196

197197
```yaml
198198
Type: DateRangeEnumType
@@ -208,7 +208,10 @@ Accept wildcard characters: False
208208
```
209209

210210
### -PublishEnabled
211-
The PublishEnabled parameter specifies whether the specified calendar should be enabled for publishing. The default value is $true.
211+
The PublishEnabled parameter specifies whether to publish the specified calendar information. Valid values are:
212+
213+
- $true: The calendar information is published.
214+
- $false: The calendar information is not published. This is the default value.
212215

213216
```yaml
214217
Type: Boolean
@@ -224,7 +227,7 @@ Accept wildcard characters: False
224227
```
225228

226229
### -ResetUrl
227-
The ResetUrl parameter replaces the existing non-public URL with a new URL for a calendar that has been published without being publicly searchable.
230+
The ResetUrl switch replaces the existing non-public URL with a new URL for a calendar that has been published without being publicly searchable. You don't need to specify a value with this switch.
228231

229232
```yaml
230233
Type: SwitchParameter
@@ -240,7 +243,12 @@ Accept wildcard characters: False
240243
```
241244

242245
### -SearchableUrlEnabled
243-
The SearchableUrlEnabled parameter specifies whether the published calendar URL can be searched on the web. The default value is $false.
246+
The SearchableUrlEnabled parameter specifies whether the published calendar URL is discoverable on the web.
247+
248+
- $true: The published calendar URL is discoverable on the web.
249+
- $false: The published calendar URL is not discoverable on the web. This is the default value.
250+
251+
This parameter is meaningful only when the PublishEnabled parameter value is $true.
244252

245253
```yaml
246254
Type: Boolean
@@ -274,6 +282,8 @@ Accept wildcard characters: False
274282
### -UseHttps
275283
The UseHttps switch specifies whether to use HTTPS for the published URL of the calendar folder. You don't need to specify a value with this switch.
276284

285+
This parameter is meaningful only when the PublishEnabled parameter value is $true.
286+
277287
```yaml
278288
Type: SwitchParameter
279289
Parameter Sets: (All)
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Whiteboard Overview
3+
description: "Whiteboard PowerShell overview."
34
---
45

56
# Overview
@@ -12,20 +13,24 @@ To install and use the Microsoft Whiteboard cmdlets:
1213
2. Right-click on Windows PowerShell and choose Run As Administrator
1314
3. Type or copy this command into the window and press the Enter key: Install-Module -Name WhiteboardAdmin
1415

15-
You may need to update your execution policy, which you can do by typing or copying this command into the window and pressing the Enter key: Set-ExecutionPolicy RemoteSigned
16+
You may need to update your execution policy, which you can do by typing or copying this command into the window and pressing the Enter key:
1617

17-
Note: For more information on Execution_Policies, go to https://go.microsoft.com/fwlink/?LinkID=135170
18+
```powershell
19+
Set-ExecutionPolicy RemoteSigned
20+
```
21+
22+
Note: For more information on Execution_Policies, go to <https://go.microsoft.com/fwlink/p/?LinkID=135170>.
1823

1924
## User IDs
2025

21-
Cmdlets taking user IDs use the ID from Azure Active Directory. To get a user ID, you can use the Microsoft Graph Explorer. For more information, go to https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_get
26+
Cmdlets taking user IDs use the ID from Azure Active Directory. To get a user ID, you can use the Microsoft Graph Explorer. For more information, go to <https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_get>.
2227

2328
## Exporting Whiteboard Content
2429

25-
The Microsoft Whiteboard cmdlets are often used to facilate the export of Whiteboard content for users that no longer have access to whiteboard. To accomplish this you must first transfer the whiteboard owner to someone who has access to Whiteboard. Then the user who now owns the whiteboard can sign into the app and export the content.
30+
The Microsoft Whiteboard cmdlets are often used to facilitate the export of Whiteboard content for users that no longer have access to whiteboard. To accomplish this you must first transfer the whiteboard owner to someone who has access to Whiteboard. Then the user who now owns the whiteboard can sign into the app and export the content.
2631

2732
## Common Cmdlets
2833

2934
* @MicrosoftWhiteboardAdmin.Get-Whiteboard
3035
* @MicrosoftWhiteboardAdmin.Set-WhiteboardOwner
31-
* @MicrosoftWhiteboardAdmin.Invoke-TransferAllWhiteboards
36+
* @MicrosoftWhiteboardAdmin.Invoke-TransferAllWhiteboards

0 commit comments

Comments
 (0)