Skip to content

Commit 6c38bb7

Browse files
authored
Merge pull request MicrosoftDocs#8281 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents 5b49370 + a2d476f commit 6c38bb7

File tree

2 files changed

+28
-13
lines changed

2 files changed

+28
-13
lines changed

exchange/exchange-ps/exchange/Remove-Mailbox.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ This example removes the mailbox and the user account for the user named John Ro
9797
Remove-Mailbox -Identity "John Rodman" -Permanent $true
9898
```
9999

100-
This example removes the mailbox and the user account for the user named John Rodman. The mailbox is immediately and permanently removed from the mailbox database.
100+
In on-premises Exchange, this example removes the mailbox and the user account for the user named John Rodman. The mailbox is immediately and permanently removed from the mailbox database.
101101

102102
### Example 3
103103
```powershell
104104
$Temp = Get-Mailbox | Where {$_.DisplayName -eq 'John Rodman'}
105105
Remove-Mailbox -Database Server01\Database01 -StoreMailboxIdentity $Temp.MailboxGuid
106106
```
107107

108-
This example removes John Rodman's mailbox from the mailbox database after the mailbox has been disconnected from the user account. The example uses the Get-Mailbox cmdlet to retrieve the mailbox GUID value of the disconnected mailbox, which is required by the StoreMailboxIdentity parameter.
108+
In on-premises Exchange, this example removes John Rodman's mailbox from the mailbox database after the mailbox has been disconnected from the user account. The example uses the Get-Mailbox cmdlet to retrieve the mailbox GUID value of the disconnected mailbox, which is required by the StoreMailboxIdentity parameter.
109109

110110
### Example 4
111111
```powershell

exchange/exchange-ps/exchange/Set-OrganizationConfig.md

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,10 @@ Accept wildcard characters: False
748748
### -BookingsAddressEntryRestricted
749749
This parameter is available only in the cloud-based service.
750750

751-
{{ Fill BookingsAddressEntryRestricted Description }}
751+
The BookingsAddressEntryRestricted parameter specifies whether addresses can be collected from Bookings customers. Valid values are:
752+
753+
- $true: Addresses can't be collected from Bookings customers.
754+
- $false: Addresses can be collected from Bookings customers.
752755

753756
```yaml
754757
Type: Boolean
@@ -784,7 +787,10 @@ Accept wildcard characters: False
784787
### -BookingsCreationOfCustomQuestionsRestricted
785788
This parameter is available only in the cloud-based service.
786789

787-
{{ Fill BookingsCreationOfCustomQuestionsRestricted Description }}
790+
The BookingsCreationOfCustomQuestionsRestricted parameter specifies whether Bookings admins can add custom questions. Valid values are:
791+
792+
- $true: Bookings admins can't add custom questions.
793+
- $false: Bookings admins can add custom questions.
788794

789795
```yaml
790796
Type: Boolean
@@ -802,12 +808,12 @@ Accept wildcard characters: False
802808
### -BookingsEnabled
803809
This parameter is available only in the cloud-based service.
804810

805-
The BookingsEnabled parameter specifies whether to enable Microsoft Bookings in an Exchange Online organization. Valid values are:
811+
The BookingsEnabled parameter specifies whether to enable Microsoft Bookings in an organization. Valid values are:
806812

807-
- $true: Bookings are enabled.
808-
- $false: Bookings are disabled. This is the default value.
813+
- $true: Bookings is enabled.
814+
- $false: Bookings is disabled. This is the default value.
809815

810-
Microsoft Bookings is an online and mobile app for small businesses who provide services to customers on an appointment basis.
816+
Microsoft Bookings is an online and mobile app for small businesses who provide appointment services to customers.
811817

812818
```yaml
813819
Type: Boolean
@@ -825,7 +831,10 @@ Accept wildcard characters: False
825831
### -BookingsExposureOfStaffDetailsRestricted
826832
This parameter is available only in the cloud-based service.
827833

828-
{{ Fill BookingsExposureOfStaffDetailsRestricted Description }}
834+
The BookingsExposureOfStaffDetailsRestricted parameter specifies whether the attributes of internal Bookings staff members (for example, email addresses) are visible to external Bookings customers. Valid values are:
835+
836+
- $true: Internal Bookings staff member attributes aren't visible to external Bookings customers.
837+
- $false: Internal Bookings staff member attributes are visible to external Bookings customers.
829838

830839
```yaml
831840
Type: Boolean
@@ -861,7 +870,10 @@ Accept wildcard characters: False
861870
### -BookingsNotesEntryRestricted
862871
This parameter is available only in the cloud-based service.
863872

864-
{{ Fill BookingsNotesEntryRestricted Description }}
873+
The BookingsNotesEntryRestricted parameter specifies whether appointment notes can be collected from Bookings customers. Valid values are:
874+
875+
- $true: Appointment notes can't be collected from Bookings customers.
876+
- $false: Appointment notes can be collected from Bookings customers.
865877

866878
```yaml
867879
Type: Boolean
@@ -879,7 +891,7 @@ Accept wildcard characters: False
879891
### -BookingsPaymentsEnabled
880892
This parameter is available only in the cloud-based service.
881893

882-
The BookingsPaymentsEnabled parameter specifies whether to enable online payment node inside Bookings. Valid values are:
894+
The BookingsPaymentsEnabled parameter specifies whether to enable the online payment node inside Bookings. Valid values are:
883895

884896
- $true: Online payments are enabled.
885897
- $false: Online payments are disabled. This is the default value.
@@ -900,7 +912,10 @@ Accept wildcard characters: False
900912
### -BookingsPhoneNumberEntryRestricted
901913
This parameter is available only in the cloud-based service.
902914

903-
{{ Fill BookingsPhoneNumberEntryRestricted Description }}
915+
The BookingsPhoneNumberEntryRestricted parameter specifies whether phone numbers can be collected from Bookings customers. Valid values are:
916+
917+
- $true: Appointment notes can't be collected from Bookings customers.
918+
- $false: Appointment notes can be collected from Bookings customers.
904919

905920
```yaml
906921
Type: Boolean
@@ -918,7 +933,7 @@ Accept wildcard characters: False
918933
### -BookingsSocialSharingRestricted
919934
This parameter is available only in the cloud-based service.
920935

921-
The BookingsSocialSharingRestricted parameter allows you to control whether, or not, your users can see social sharing options inside Bookings. Valid values are:
936+
The BookingsSocialSharingRestricted parameter specifies whether users can see the social sharing options inside Bookings. Valid values are:
922937

923938
- $true: Social sharing options are restricted.
924939
- $false: Users can see social sharing options inside Bookings. This is the default value.

0 commit comments

Comments
 (0)