Skip to content

Correction on wording used in troubleshooting steps. #7920

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ To fix this issue, follow these steps:
Remove-ClusterSharedVolume -Name "CSV Name"
```

1. On the node that owns the Available Storage group, run the following command on every disk that's in a no redundancy state. To identify which node the Available Storage group is on, you can run this command:
1. Identify which node the Available Storage group is on using the following command:

```powershell
Get-ClusterGroup
```

1. Set the disk recovery action and then start the disk(s).
1. On the node that owns the Available Storage group, run the following commands on every disk that’s in a No Redundancy state. This commands will set the disk recovery action and then start the disk(s).
```powershell
Get-ClusterResource "Physical Disk Resource Name" | Set-ClusterParameter -Name DiskRecoveryAction -Value 1
Start-ClusterResource -Name "Physical Disk Resource Name"
Expand Down