Skip to content

Commit 4b46473

Browse files
author
Thomas Raya
authored
Merge branch 'master' into user/danielaal/update-export-startlayout-windows-11
2 parents 39ffecd + 6c61abd commit 4b46473

36 files changed

+1436
-773
lines changed

docset/winserver2012-ps/hyper-v/Add-VMHardDiskDrive.md

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Adds a virtual hard disk to SCSI controller number 0 on virtual machine Test.
6161

6262
### Example 3
6363
```
64-
PS C:\>Get-VMScsiController -VMName Test -Number 0 | Add-VMHardDiskDrive -DiskNumber 2
64+
PS C:\>Get-VMScsiController -VMName Test -ControllerNumber 0 | Add-VMHardDiskDrive -DiskNumber 2
6565
```
6666

6767
This example gets a SCSI controller on a virtual machine named Test and then adds physical disk 2 to that controller.
@@ -99,7 +99,7 @@ If not specified, the first available location in the controller specified with
9999
```yaml
100100
Type: Int32
101101
Parameter Sets: (All)
102-
Aliases:
102+
Aliases:
103103

104104
Required: False
105105
Position: 4
@@ -115,7 +115,7 @@ If not specified, this parameter assumes the value of the first available contro
115115
```yaml
116116
Type: Int32
117117
Parameter Sets: UNNAMED_PARAMETER_SET_1, UNNAMED_PARAMETER_SET_2
118-
Aliases:
118+
Aliases:
119119

120120
Required: False
121121
Position: 3
@@ -133,7 +133,7 @@ Allowed values are **IDE** and **SCSI**.
133133
```yaml
134134
Type: ControllerType
135135
Parameter Sets: UNNAMED_PARAMETER_SET_1, UNNAMED_PARAMETER_SET_2
136-
Aliases:
136+
Aliases:
137137

138138
Required: False
139139
Position: 2
@@ -148,7 +148,7 @@ Passes the added **Microsoft.Virtualization.Powershell.HardDiskDrive** object th
148148
```yaml
149149
Type: SwitchParameter
150150
Parameter Sets: (All)
151-
Aliases:
151+
Aliases:
152152

153153
Required: False
154154
Position: Named
@@ -163,7 +163,7 @@ Specifies the full path of the hard disk drive file to be added.
163163
```yaml
164164
Type: String
165165
Parameter Sets: (All)
166-
Aliases:
166+
Aliases:
167167

168168
Required: False
169169
Position: 5
@@ -178,7 +178,7 @@ Specifies the friendly name of the ISO resource pool to which this virtual hard
178178
```yaml
179179
Type: String
180180
Parameter Sets: (All)
181-
Aliases:
181+
Aliases:
182182

183183
Required: False
184184
Position: Named
@@ -193,7 +193,7 @@ Specifies the virtual machine to which the hard disk drive is to be added.
193193
```yaml
194194
Type: VirtualMachine[]
195195
Parameter Sets: UNNAMED_PARAMETER_SET_2
196-
Aliases:
196+
Aliases:
197197

198198
Required: True
199199
Position: 1
@@ -208,7 +208,7 @@ Specifies the controller to which the hard disk drive is to be added.
208208
```yaml
209209
Type: VMDriveController
210210
Parameter Sets: UNNAMED_PARAMETER_SET_3
211-
Aliases:
211+
Aliases:
212212

213213
Required: True
214214
Position: 1
@@ -223,7 +223,7 @@ Specifies the name of the virtual machine to which the hard disk drive is to be
223223
```yaml
224224
Type: String[]
225225
Parameter Sets: UNNAMED_PARAMETER_SET_1
226-
Aliases:
226+
Aliases:
227227

228228
Required: True
229229
Position: 1
@@ -239,7 +239,7 @@ This parameter is applicable to clustered virtual machines.
239239
```yaml
240240
Type: SwitchParameter
241241
Parameter Sets: (All)
242-
Aliases:
242+
Aliases:
243243

244244
Required: False
245245
Position: Named
@@ -269,7 +269,7 @@ Prompts you for confirmation before running the cmdlet.
269269
```yaml
270270
Type: SwitchParameter
271271
Parameter Sets: (All)
272-
Aliases:
272+
Aliases:
273273

274274
Required: False
275275
Position: Named
@@ -285,7 +285,7 @@ The cmdlet is not run.
285285
```yaml
286286
Type: SwitchParameter
287287
Parameter Sets: (All)
288-
Aliases:
288+
Aliases:
289289

290290
Required: False
291291
Position: Named
@@ -311,6 +311,3 @@ If **-PassThru** is specified.
311311
## NOTES
312312
313313
## RELATED LINKS
314-
315-
316-

docset/winserver2012-ps/webadministration/Get-WebBinding.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The host name for which the binding is configured.
3737
```yaml
3838
Type: String
3939
Parameter Sets: (All)
40-
Aliases:
40+
Aliases:
4141

4242
Required: False
4343
Position: Named
@@ -52,7 +52,7 @@ The IP address for which the binding is configured.
5252
```yaml
5353
Type: String
5454
Parameter Sets: (All)
55-
Aliases:
55+
Aliases:
5656

5757
Required: False
5858
Position: Named
@@ -67,7 +67,7 @@ The name of the site for which binding information is returned.
6767
```yaml
6868
Type: String
6969
Parameter Sets: (All)
70-
Aliases:
70+
Aliases:
7171

7272
Required: False
7373
Position: 0
@@ -82,7 +82,7 @@ The port for which the binding is configured.
8282
```yaml
8383
Type: String
8484
Parameter Sets: (All)
85-
Aliases:
85+
Aliases:
8686

8787
Required: False
8888
Position: Named
@@ -97,7 +97,7 @@ The protocol for which the binding is configured, usually http, https or ftp.
9797
```yaml
9898
Type: String
9999
Parameter Sets: (All)
100-
Aliases:
100+
Aliases:
101101

102102
Required: False
103103
Position: Named
@@ -113,7 +113,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
113113
114114
## OUTPUTS
115115
116+
### Microsoft.IIs.PowerShell.Framework.ConfigurationElement#bindings#binding
117+
116118
## NOTES
117119
118120
## RELATED LINKS
119-

docset/winserver2012r2-ps/activedirectory/Get-ADDomainController.md

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can get domain controllers by setting the **Identity**, **Filter** or **Disc
3939

4040
The **Identity** parameter specifies the domain controller to get.
4141
You can identify a domain controller by its GUID, IPV4Address, global IPV6Address, or DNS host name.
42-
You can also identify a domain controller by the name of the server object that represents the domain controller, the distinguished name of the NTDS settings object or the server object, the GUID of the NTDS settings object or the server object under the configuration partition, or the distinguished name of the computer object that represents the domain controller.
42+
You can also identify a domain controller by the name of the server object that represents the domain controller, the distinguished name of the NTDS settings object or the server object, the GUID of the NTDS settings object or the server object under the configuration partition, or the distinguished name of the computer object that represents the domain controller.
4343
You can also set the **Identity** parameter to a domain controller object variable, such as **$\<localDomainControllerObject\>**, or pass a domain controller object through the pipeline to the **Identity** parameter.
4444

4545
To search for and retrieve more than one domain controller, use the **Filter** parameter.
@@ -89,7 +89,7 @@ PS C:\>Get-ADDomainController -Discover -Domain "user01.com"
8989

9090
This command gets one available domain controller in a given domain using Discovery.
9191

92-
### Example 6: Get the primary domain controller using discovery and set it up as time server
92+
### Example 6: Get the primary domain controller that is advertising as a time server using discovery
9393
```
9494
PS C:\>Get-ADDomainController -Discover -Domain "corp.contoso.com" -Service "PrimaryDC","TimeService"
9595
```
@@ -126,7 +126,7 @@ A Secure Sockets Layer (SSL) connection is required for the Basic authentication
126126
```yaml
127127
Type: ADAuthType
128128
Parameter Sets: (All)
129-
Aliases:
129+
Aliases:
130130
Accepted values: Negotiate, Basic
131131

132132
Required: False
@@ -144,7 +144,7 @@ You can specify this parameter when you want to get the name of another domain c
144144
```yaml
145145
Type: SwitchParameter
146146
Parameter Sets: DiscoverByService
147-
Aliases:
147+
Aliases:
148148

149149
Required: False
150150
Position: Named
@@ -169,7 +169,7 @@ If the acting credentials do not have directory-level permission to perform the
169169
```yaml
170170
Type: PSCredential
171171
Parameter Sets: Identity, Filter
172-
Aliases:
172+
Aliases:
173173

174174
Required: False
175175
Position: Named
@@ -187,7 +187,7 @@ Along with this parameter, you can provide search criteria by setting parameters
187187
```yaml
188188
Type: SwitchParameter
189189
Parameter Sets: DiscoverByService
190-
Aliases:
190+
Aliases:
191191

192192
Required: True
193193
Position: Named
@@ -204,7 +204,7 @@ Specify the domain by using the NetBIOS name or Fully Qualified Domain Name (FQD
204204
```yaml
205205
Type: String
206206
Parameter Sets: DiscoverByService
207-
Aliases:
207+
Aliases:
208208

209209
Required: False
210210
Position: Named
@@ -249,7 +249,7 @@ Note: To query using LDAP query strings, use the **LDAPFilter** parameter.
249249
```yaml
250250
Type: String
251251
Parameter Sets: Filter
252-
Aliases:
252+
Aliases:
253253
254254
Required: True
255255
Position: Named
@@ -259,13 +259,13 @@ Accept wildcard characters: False
259259
```
260260

261261
### -ForceDiscover
262-
Indicates that the cmdlet to clears any cached domain controller information and perform a new discovery.
262+
Indicates to the cmdlet to clear any cached domain controller information and perform a new discovery.
263263
If this parameter is not specified the cmdlet may return cached domain controller information.
264264

265265
```yaml
266266
Type: SwitchParameter
267267
Parameter Sets: DiscoverByService
268-
Aliases:
268+
Aliases:
269269
270270
Required: False
271271
Position: Named
@@ -299,7 +299,7 @@ This parameter can also get this object through the pipeline or you can set this
299299
```yaml
300300
Type: ADDomainController
301301
Parameter Sets: Identity
302-
Aliases:
302+
Aliases:
303303
304304
Required: False
305305
Position: 0
@@ -318,7 +318,7 @@ The acceptable values for this parameter are:
318318
```yaml
319319
Type: ADMinimumDirectoryServiceVersion
320320
Parameter Sets: DiscoverByService
321-
Aliases:
321+
Aliases:
322322
Accepted values: Windows2000, Windows2008, Windows2012, Windows2012R2
323323
324324
Required: False
@@ -336,7 +336,7 @@ Costs between sites are based on factors such as bandwidth, as well as physical
336336
```yaml
337337
Type: SwitchParameter
338338
Parameter Sets: DiscoverByService
339-
Aliases:
339+
Aliases:
340340
341341
Required: False
342342
Position: Named
@@ -349,14 +349,14 @@ Accept wildcard characters: False
349349
Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server.
350350
The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance.
351351

352-
Specify the Active Directory Domain Services instance in one of the following ways:
352+
Specify the Active Directory Domain Services instance in one of the following ways:
353353

354354
Domain name values:
355355

356356
- Fully qualified domain name
357357
- NetBIOS name
358358

359-
Directory server values:
359+
Directory server values:
360360

361361
- Fully qualified directory server name
362362
- NetBIOS name
@@ -371,7 +371,7 @@ The default value for this parameter is determined by one of the following metho
371371
```yaml
372372
Type: String
373373
Parameter Sets: Identity, Filter
374-
Aliases:
374+
Aliases:
375375
376376
Required: False
377377
Position: Named
@@ -395,7 +395,7 @@ The acceptable values for this parameter are:
395395
```yaml
396396
Type: ADDiscoverableService[]
397397
Parameter Sets: DiscoverByService
398-
Aliases:
398+
Aliases:
399399
Accepted values: PrimaryDC, GlobalCatalog, KDC, TimeService, ReliableTimeService, ADWS
400400
401401
Required: False
@@ -413,7 +413,7 @@ The name of the site is defined by the **Name** property of the site object.
413413
```yaml
414414
Type: String
415415
Parameter Sets: DiscoverByService
416-
Aliases:
416+
Aliases:
417417
418418
Required: False
419419
Position: Named
@@ -428,7 +428,7 @@ Specifies whether this is a writable domain controller.
428428
```yaml
429429
Type: SwitchParameter
430430
Parameter Sets: DiscoverByService
431-
Aliases:
431+
Aliases:
432432
433433
Required: False
434434
Position: Named
@@ -478,4 +478,3 @@ With the **Identity** or the **Filter** parameter, the **HostName** property wil
478478
[Get-ADDomainControllerPasswordReplicationPolicy](./Get-ADDomainControllerPasswordReplicationPolicy.md)
479479

480480
[Remove-ADDomainControllerPasswordReplicationPolicy](./Remove-ADDomainControllerPasswordReplicationPolicy.md)
481-

0 commit comments

Comments
 (0)