How do I 1) Mark a retired physical disk as "Read/write" and then 2) Mark it "Autoselect"

Thurman Hester 0 Reputation points
2024-01-30T00:13:47.5333333+00:00

The first answer didn't work, but it did reveal new information. So I have edited this entry to reflect what I've learned.

I have a Microsoft Storage Spaces 3 disk "parity" array (presumably a proprietary MS software RAID 5) under Windows 11 pro. Some time ago, 2 of the 3 disks almost simultaneously were marked as "retired". Since it was 2 of 3, it is supposedly irrepairable. However, as WD Reds that aren't that old, with highly filtered power, it seems unlikely for both to go out simultaneously.

I would like to try to get the data off this array before replacing the disks. I believe it should be doable by:

  1. Changing the status of the storage pool to allow it to be accessed
  2. Allow writing to the two retired physical disks
  3. Set the two retired physical disks to "autoselect"

I don't know if we also have to then connect the virtual disk (s) and possibly other take other steps, but it appears the above are likely necessary...

The affected storage space. Note operational status "Read-only"storage pool

Here is how it looks from Storage Spaces Storage Spaces

specific info on the physical disks involved powershell info

I'm a former computer professional... but don't know powershell well enough, nor do I know the Storage Spaces implementation of this parity array well enough. I suspect all that needs to be done is change the appropriate metadata on these disks. But, I've failed spectacularly so far and the chat techs have failed. Level 2 techs were scheduled to call.... but I never heard from them.
Please help.

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2024-01-31T04:41:23.2533333+00:00

    Hi Thurman Hester,

    Please open PowerShell as administrator and run Get-PhysicalDisk to confirm the number of the retired disk first. Say the number is 1, run the command below to set the disk to Auto-Select.

    Get-PhysicalDisk -DeviceNumber 1 | Set-PhysicalDisk -Usage AutoSelect
    

    Then run Get-PhysicalDisk again to see if the disk usage is changed successfully.

    User's image

    Best Regards,

    Ian Xue


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.