Skip to content

Commit f180317

Browse files
committed
Standardization updates
1 parent 9bba45a commit f180317

File tree

3 files changed

+66
-67
lines changed

3 files changed

+66
-67
lines changed

exchange/exchange-ps/exchange/Get-ExchangeFeature.md

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ For information about the parameter sets in the Syntax section below, see [Excha
2121
## SYNTAX
2222

2323
```
24-
Get-ExchangeFeature [-FeatureID <Microsoft.Exchange.Data.MultiValuedProperty`1[System.String]>]
25-
[-Identity <ServerIdParameter>]
24+
Get-ExchangeFeature [-Identity <ServerIdParameter>]
25+
[-FeatureID <MultiValuedProperty>]
2626
[-RingLevel <String>]
2727
[-Status <String>]
28+
[<CommonParameters>]
2829
```
2930

3031
## DESCRIPTION
@@ -34,35 +35,20 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3435

3536
### Example 1
3637
```powershell
37-
PS C:\> Get-ExchangeFeature -Status "Enabled"
38+
Get-ExchangeFeature -Status "Enabled"
3839
```
3940

40-
This command returns all enabled features.
41+
This example returns all enabled features.
4142

4243
### Example 2
4344
```powershell
44-
PS C:\> Get-ExchangeFeature -FeatureID "PING.1.0"
45+
Get-ExchangeFeature -FeatureID "PING.1.0"
4546
```
4647

47-
This command returns information about the feature with the feature id PING.1.0.
48+
This example returns information about the feature with the feature id PING.1.0.
4849

4950
## PARAMETERS
5051

51-
### -FeatureID
52-
The FeatureID parameter specifies the feature you want to query information about.
53-
54-
```yaml
55-
Type: Microsoft.Exchange.Data.MultiValuedProperty`1[System.String]
56-
Parameter Sets: (All)
57-
Aliases:
58-
59-
Required: False
60-
Position: Named
61-
Default value: None
62-
Accept pipeline input: False
63-
Accept wildcard characters: False
64-
```
65-
6652
### -Identity
6753
The Identity parameter specifies the Exchange server that you want to modify. You can use any value that uniquely identifies the server. For example:
6854

@@ -77,6 +63,7 @@ If you don't use this parameter, the command returns information for all Exchang
7763
Type: ServerIdParameter
7864
Parameter Sets: (All)
7965
Aliases:
66+
Applicable: Exchange Server 2019
8067

8168
Required: False
8269
Position: 0
@@ -85,13 +72,30 @@ Accept pipeline input: True (ByPropertyName, ByValue)
8572
Accept wildcard characters: False
8673
```
8774
75+
### -FeatureID
76+
The FeatureID parameter specifies the feature you want to query information about.
77+
78+
```yaml
79+
Type: MultiValuedProperty
80+
Parameter Sets: (All)
81+
Aliases:
82+
Applicable: Exchange Server 2019
83+
84+
Required: False
85+
Position: Named
86+
Default value: None
87+
Accept pipeline input: False
88+
Accept wildcard characters: False
89+
```
90+
8891
### -RingLevel
8992
The RingLevel parameter specifies the ring level you want to query information about.
9093
9194
```yaml
9295
Type: String
9396
Parameter Sets: (All)
9497
Aliases:
98+
Applicable: Exchange Server 2019
9599

96100
Required: False
97101
Position: Named
@@ -107,6 +111,7 @@ The Status parameter specifies the status you want to query information about.
107111
Type: String
108112
Parameter Sets: (All)
109113
Aliases:
114+
Applicable: Exchange Server 2019
110115

111116
Required: False
112117
Position: Named
@@ -116,18 +121,12 @@ Accept wildcard characters: False
116121
```
117122
118123
### CommonParameters
119-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
124+
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).
120125
121126
## INPUTS
122127
123-
### Input types
124-
To see the input types that this cmdlet accepts, see [Cmdlet Input and Output Types](https://go.microsoft.com/fwlink/p/?LinkId=616387). If the Input Type field for a cmdlet is blank, the cmdlet doesn't accept input data.
125-
126128
## OUTPUTS
127129
128-
### Output types
129-
To see the return types, which are also known as output types, that this cmdlet accepts, see [Cmdlet Input and Output Types](https://go.microsoft.com/fwlink/p/?LinkId=616387). If the Output Type field is blank, the cmdlet doesn't return data.
130-
131130
## NOTES
132131
133132
## RELATED LINKS

exchange/exchange-ps/exchange/Set-ExchangeFeature.md

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ For information about the parameter sets in the Syntax section below, see [Excha
2121
## SYNTAX
2222

2323
```
24-
Set-ExchangeFeature [-Approve]
24+
Set-ExchangeFeature [-Identity] <ServerIdParameter>
25+
[-Approve]
2526
[-Block]
26-
[-FeatureID <Microsoft.Exchange.Data.MultiValuedProperty`1[System.String]>]
27-
[-Identity] <ServerIdParameter>]
27+
[-FeatureID <MultiValuedProperty>]
28+
[<CommonParameters>]
2829
```
2930

3031
## DESCRIPTION
@@ -36,49 +37,56 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3637

3738
### Example 1
3839
```powershell
39-
PS C:\> Set-ExchangeFeature -Identity ex01.contoso.com -FeatureID @("F1.1.1") -Approve
40+
Set-ExchangeFeature -Identity ex01.contoso.com -FeatureID @("F1.1.1") -Approve
4041
```
4142

42-
This command approves the feature F1.1.1 on the computer named ex01.contoso.com.
43+
This example approves the feature F1.1.1 on the computer named ex01.contoso.com.
4344

4445
### Example 2
4546
```powershell
46-
PS C:\> Set-ExchangeFeature -Identity ex01.contoso.com -FeatureID @("F1.1.1", "F1.2.1", "F2.1.1") -Approve
47+
Set-ExchangeFeature -Identity ex01.contoso.com -FeatureID @("F1.1.1", "F1.2.1", "F2.1.1") -Approve
4748
```
4849

49-
This command approves the features F1.1.1, F1.2.1, and F2.1.1 on the computer named ex01.contoso.com.
50+
This example approves the features F1.1.1, F1.2.1, and F2.1.1 on the computer named ex01.contoso.com.
5051

5152
### Example 3
5253
```powershell
53-
PS C:\> Set-ExchangeFeature -Identity ex01.contoso.com -FeatureID @("F1.1.1", "F1.2.1", "F2.1.1") -Block
54+
Set-ExchangeFeature -Identity ex01.contoso.com -FeatureID @("F1.1.1", "F1.2.1", "F2.1.1") -Block
5455
```
5556

56-
This command blocks the features F1.1.1, F1.2.1, and F2.1.1 on the computer named ex01.contoso.com.
57+
This example blocks the features F1.1.1, F1.2.1, and F2.1.1 on the computer named ex01.contoso.com.
5758

5859
## PARAMETERS
5960

60-
### -Approve
61-
The Approve parameter approves the feature specified by the FeatureID parameter.
61+
### -Identity
62+
The Identity parameter specifies the Exchange server that you want to modify. You can use any value that uniquely identifies the server. For example:
63+
64+
- Name
65+
- FQDN
66+
- Distinguished name (DN)
67+
- Exchange Legacy DN
6268

6369
```yaml
64-
Type: SwitchParameter
70+
Type: ServerIdParameter
6571
Parameter Sets: (All)
6672
Aliases:
73+
Applicable: Exchange Server 2019
6774

68-
Required: False
69-
Position: Named
75+
Required: True
76+
Position: 0
7077
Default value: None
71-
Accept pipeline input: False
78+
Accept pipeline input: True (ByPropertyName, ByValue)
7279
Accept wildcard characters: False
7380
```
7481
75-
### -Block
76-
he Block parameter blocks the feature specified by the FeatureID parameter.
82+
### -Approve
83+
The Approve parameter approves the feature specified by the FeatureID parameter.
7784
7885
```yaml
7986
Type: SwitchParameter
8087
Parameter Sets: (All)
8188
Aliases:
89+
Applicable: Exchange Server 2019
8290

8391
Required: False
8492
Position: Named
@@ -87,13 +95,14 @@ Accept pipeline input: False
8795
Accept wildcard characters: False
8896
```
8997
90-
### -FeatureID
91-
The FeatureID parameter specifies the feature you want to control.
98+
### -Block
99+
he Block parameter blocks the feature specified by the FeatureID parameter.
92100
93101
```yaml
94-
Type: Microsoft.Exchange.Data.MultiValuedProperty`1[System.String]
102+
Type: SwitchParameter
95103
Parameter Sets: (All)
96104
Aliases:
105+
Applicable: Exchange Server 2019
97106

98107
Required: False
99108
Position: Named
@@ -102,39 +111,29 @@ Accept pipeline input: False
102111
Accept wildcard characters: False
103112
```
104113
105-
### -Identity
106-
The Identity parameter specifies the Exchange server that you want to modify. You can use any value that uniquely identifies the server. For example:
107-
108-
- Name
109-
- FQDN
110-
- Distinguished name (DN)
111-
- Exchange Legacy DN
114+
### -FeatureID
115+
The FeatureID parameter specifies the feature you want to control.
112116
113117
```yaml
114-
Type: ServerIdParameter
118+
Type: MultiValuedProperty
115119
Parameter Sets: (All)
116120
Aliases:
121+
Applicable: Exchange Server 2019
117122

118-
Required: True
119-
Position: 0
123+
Required: False
124+
Position: Named
120125
Default value: None
121-
Accept pipeline input: True (ByPropertyName, ByValue)
126+
Accept pipeline input: False
122127
Accept wildcard characters: False
123128
```
124129
125130
### CommonParameters
126-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
131+
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).
127132
128133
## INPUTS
129134
130-
### Input types
131-
To see the input types that this cmdlet accepts, see [Cmdlet Input and Output Types](https://go.microsoft.com/fwlink/p/?LinkId=616387). If the Input Type field for a cmdlet is blank, the cmdlet doesn't accept input data.
132-
133135
## OUTPUTS
134136
135-
### Output types
136-
To see the return types, which are also known as output types, that this cmdlet accepts, see [Cmdlet Input and Output Types](https://go.microsoft.com/fwlink/p/?LinkId=616387). If the Output Type field is blank, the cmdlet doesn't return data.
137-
138137
## NOTES
139138
140139
## RELATED LINKS

exchange/exchange-ps/exchange/Set-ExchangeServer.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,12 +308,13 @@ Accept wildcard characters: False
308308
```
309309

310310
### -RingLevel
311-
The RingLevel parameter specifies the server's ring level used by the Feature Flighting feature.
311+
The RingLevel parameter specifies the server ring level that's used by the Feature Flighting feature.
312312

313313
```yaml
314314
Type: String
315315
Parameter Sets: (All)
316316
Aliases:
317+
Applicable: Exchange Server 2019
317318
318319
Required: False
319320
Position: Named

0 commit comments

Comments
 (0)