Skip to content

Commit 8c94b92

Browse files
committed
Post-edit fixes
1 parent ee1c83c commit 8c94b92

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

support/windows-server/high-availability/csv-offline-after-component-goes-offline-during-active-io.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Run the following steps as a cluster administrator on a node that has full acces
101101
1. Monitor the virtual disks by running `Get-VirtualDisk` and looking for `OperationalStatus = InService` in the cmdlet output. When the `OperationalStatus` parameter is clear for all the virtual disks, go to the next step.
102102

103103
1. To move the affected storage pool (that you identified previously) to the current node, run a PowerShell cmdlet that resembles the following command:
104-
104+
105105
```powershell
106106
Move-ClusterResource -node <Current Node> -name <OwnerGroup>
107107
```
@@ -118,15 +118,15 @@ Run the following steps as a cluster administrator on a node that has full acces
118118
Get-ClusterResource | Where-Object { $_.ResourceType -eq "Physical Disk" } | Remove-ClusterResource
119119
```
120120

121-
1. To remove the storage pool from cluster management, run the `Remove-ClusterResource` command for the storage pool objects that you identified in step 1 of this procedure.
121+
1. To remove the storage pool from cluster management, run the `Remove-ClusterResource` command for the storage pool objects that you identified in step 2 of this procedure.
122122

123123
1. To make the storage pool writable, run the following commands:
124124

125125
```powershell
126126
Get-StoragePool -isPrimordial $false | Set-StoragePool -IsReadOnly $false
127127
```
128128

129-
1. To configure the virtual disks, run the following commands for each virtual disk.
129+
1. To configure the virtual disks, run the following commands for each virtual disk that you identified in step 3 of this procedure.
130130

131131
```powershell
132132
Get-VirtualDisk | Set-VirtualDisk -IsManualAttach $false
@@ -140,9 +140,9 @@ Run the following steps as a cluster administrator on a node that has full acces
140140
Get-CimInstance -Namespace "root\MSCluster" -ClassName "MSCluster_AvailableStoragePool" | invoke-cimmethod -MethodName AddToCluster
141141
```
142142

143-
1. Restore all non-failed virtual disks to cluster management. If any of the virtual disks from the previous step were previously configured as CSVs, convert them to CSVs.
143+
1. Restore all non-failed virtual disks to cluster management. If any of the virtual disks from the previous step were configured as CSVs before the failure, convert them to CSVs.
144144

145-
For example, you can bring back any of the virtual disk or CSV resources that you identified in step 2 that weren't in a failed state. To restore these resources, use the `virtualdiskid` and `name` property values from step 2, and then run commands that resemble the following script excerpt:
145+
For example, you can bring back any of the virtual disk or CSV resources that weren't in a failed state. To restore these resources, use the `virtualdiskid` and `name` property values from step 3, and then run commands that resemble the following script excerpt:
146146

147147
```powershell
148148
`$virtualdiskname = "ClusterPerformanceHistory"`

0 commit comments

Comments
 (0)