Skip to content

Commit 971c7cc

Browse files
authored
Merge pull request #12057 from MicrosoftDocs/main
Publish main to live, Friday 10:30AM PDT, 08/09
2 parents 4bf005d + 7c5723d commit 971c7cc

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

exchange/exchange-ps/exchange/Set-CalendarProcessing.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,29 @@ Set-CalendarProcessing -Identity "Car 53" -AutomateProcessing AutoAccept -BookIn
114114

115115
This example allows a list of users to submit in-policy meeting requests to the equipment mailbox for Car 53.
116116

117+
The users you specify for the BookInPolicy using this syntax overwrite any existing values.
118+
117119
### Example 7
118120
```powershell
121+
$CurrentBIP = (Get-CalendarProcessing -Identity "Conference Room 1").BookInPolicy
122+
123+
124+
125+
$UpdatedBIP = $CurrentBIP + $AddToBIP
126+
127+
Set-CalendarProcessing -Identity "Conference Room 1" -BookInPolicy $UpdatedBIP
128+
```
129+
130+
This example adds Shiraz and Chris to the BookInPolicy of the room mailbox named Conference Room 1 without affecting any existing BookInPolicy values.
131+
132+
The first command retrieves the current BookInPolicy values of Conference Room 1 and stores them in a variable.
133+
134+
The next two commands identify the new users to add to the BookInPolicy, combine the old and new values, and store the updated list a variable.
135+
136+
The last command updates the BookInPolicy value with the combined list.
137+
138+
### Example 8
139+
```powershell
119140
$group = New-DistributionGroup "Room 221 Booking Allowed"
120141
121142
Update-DistributionGroupMember -Identity $group.Identity -Members [email protected],[email protected] -BypassSecurityGroupManagerCheck:$true
@@ -125,7 +146,7 @@ Set-CalendarProcessing -Identity "Room 221" -AutomateProcessing AutoAccept -Book
125146

126147
This example rejects meeting requests from any user who isn't a member of the "Room 221 Booking Allowed" distribution group.
127148

128-
### Example 8
149+
### Example 9
129150
```powershell
130151
Set-CalendarProcessing -Identity "Room 221" -ProcessExternalMeetingMessages $false
131152
```
@@ -416,7 +437,9 @@ Query-based groups (for example, dynamic distribution groups) aren't supported.
416437
417438
In delegate and principal scenarios, if the delegate or principal is specified by the BookInPolicy parameter, in-policy meeting requests to the resource mailbox are automatically approved.
418439
419-
You can enter multiple values separated by commas. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`.
440+
To replace the existing list of users or groups with the values you specify, use the syntax `UserOrGroup1,UserOrGroup2,...UserOrGroupN`. If the values contain spaces or otherwise require quotation marks, use the syntax `"UserOrGroup1","UserOrGroup2",..."UserOrGroupN"`.
441+
442+
To add users or groups without affecting the other entries, see Example 7.
420443

421444
```yaml
422445
Type: RecipientIdParameter[]

teams/teams-ps/teams/Export-CsAcquiredPhoneNumber.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,20 @@ By default, this cmdlet returns all the phone numbers acquired by the tenant wit
3737
- NetworkSiteId
3838
- AvailableCapabilities
3939
- AcquiredCapabilities
40-
- BlockId
41-
- RangeId
4240
- AssignmentStatus
4341
- PlaceName
4442
- ActivationState
4543
- PartnerName
46-
- IsOperatorConnect
4744
- IsoCountryCode
4845
- PortInOrderStatus
49-
- DsuSupported
5046
- CapabilityUpdateSupported
51-
- LocationUpdateSupported
5247
- AcquisitionDate
5348
- TargetId
5449
- TargetType
5550
- AssignmentCategory
56-
- SmsCampaignBriefs
5751
- CallingProfileId
5852
- IsoSubdivisionCode
5953
- NumberSource
60-
- ResourceAccountSharedCallingPolicySupported
6154
- SupportedCustomerActions
6255
- ReverseNumberLookup
6356
- RoutingOptions

0 commit comments

Comments
 (0)