Skip to content

Commit 09d30f5

Browse files
authored
Merge branch 'main' into patch-158
2 parents 5bbfcb5 + 06fcd1a commit 09d30f5

File tree

34 files changed

+47
-45
lines changed

34 files changed

+47
-45
lines changed

docset/winserver2012-ps/activedirectory/Remove-ADComputer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Aliases: cf
119119

120120
Required: False
121121
Position: Named
122-
Default value: False
122+
Default value: True
123123
Accept pipeline input: False
124124
Accept wildcard characters: False
125125
```

docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Accept wildcard characters: False
197197
### -Timeout
198198
Determines the number of seconds that a DNS server waits before it stops trying to contact a remote server.
199199
The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds).
200-
The default setting is 0xF (15 seconds).
200+
The default setting is 0x8 (8 seconds).
201201
We recommend that you increase this value when recursion occurs over a slow link.
202202

203203
```yaml

docset/winserver2012-ps/hyper-v/Export-VM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Export-VM [-VM] <VirtualMachine[]> [-Path] <String> [-AsJob] [-Passthru]
2525
## DESCRIPTION
2626
The **Export-VM** cmdlet exports a virtual machine to disk.
2727
This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines.
28-
The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively.
28+
Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks.
2929
The Virtual Machines folder contains the configuration XML of the specified virtual machine.
3030

3131
## EXAMPLES

docset/winserver2012-ps/hyper-v/Set-VHD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This operation cannot be performed when the virtual disk chain is attached.
4848

4949
### Example 3
5050
```
51-
PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId
51+
PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch
5252
```
5353

5454
This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd.

docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ Accept wildcard characters: False
304304
### -BaseReachableTimeMs
305305
Gets IP interface properties only for interfaces by the BaseReachableTime property.
306306
This parameter is the base for random reachable time, in milliseconds.
307-
This parameter is described in RFC 2461http://go.microsoft.com/fwlink/p/?LinkId=84044.
308-
The default BaseReachableTime setting is `30`.
307+
This parameter is described in [RFC 2461](https://go.microsoft.com/fwlink/p/?LinkId=84044).
308+
The default BaseReachableTime setting is `30000`.
309309

310310
```yaml
311311
Type: UInt32[]

docset/winserver2012-ps/vpnclient/Add-VpnConnection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ For more information about custom EAP authentication methods, see the **New-EapC
139139

140140
### Example 5: Add a VPN connection that uses already generated EAP XML configuration
141141
```powershell
142-
PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml
142+
PS C:\> $EAPXml = Get-Content -Path C:\eap-config.xml
143143
PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml
144144
```
145145

docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Aliases: cf
101101

102102
Required: False
103103
Position: Named
104-
Default value: False
104+
Default value: True
105105
Accept pipeline input: False
106106
Accept wildcard characters: False
107107
```

docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ Accept wildcard characters: False
214214
### -Timeout
215215
Determines the number of seconds that a DNS server waits before it stops trying to contact a remote server.
216216
The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds).
217-
The default setting is 0xF (15 seconds).
217+
The default setting is 0x8 (8 seconds).
218218
We recommend that you increase this value when recursion occurs over a slow link.
219219

220220
```yaml

docset/winserver2012r2-ps/hyper-v/Export-VM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Export-VM [-Path] <String> [-AsJob] [-Passthru] [-VM] <VirtualMachine[]> [-WhatI
2929
## DESCRIPTION
3030
The **Export-VM** cmdlet exports a virtual machine to disk.
3131
This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines.
32-
The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively.
32+
Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks.
3333
The Virtual Machines folder contains the configuration XML of the specified virtual machine.
3434

3535
## EXAMPLES

docset/winserver2012r2-ps/hyper-v/Set-VHD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This operation cannot be performed when the virtual disk chain is attached.
5656

5757
### Example 3
5858
```
59-
PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId
59+
PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch
6060
```
6161

6262
This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd.

0 commit comments

Comments
 (0)