File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
docset/winserver2022-ps/failoverclusters Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ on the local cluster.
6969### Example 5
7070
7171``` powershell
72- Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {$_.RestartDelay = 600}
72+ Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {
73+ $_.RestartDelay = 600
74+ }
7375```
7476
7577This example sets the common property ` RestartDelay ` for the ` Cluster Disk 2 ` resource on the local
@@ -90,7 +92,7 @@ Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose -Confirm:$false
9092```
9193
9294This example enumerates the cluster resources for wildcard characters ` *print-VM1 ` and stops the
93- corresponding virtual machines without user confirmation.. Verbose mode is turned on for details of
95+ corresponding virtual machines without user confirmation. Verbose mode is turned on for details of
9496the operation.
9597
9698## PARAMETERS
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRo
7171
7272This example performs a live migration of all clustered virtual machines that are currently owned by
7373the node named node1 to the node named node2. The migration of each virtual machine should complete
74- before the next migration is startqed . Use this cmdlet before performing maintenance on the
74+ before the next migration is started . Use this cmdlet before performing maintenance on the
7575specified node.
7676
7777## PARAMETERS
You can’t perform that action at this time.
0 commit comments