Hi Shukran,
First, you can ignore the AI-generated answer above. It is giving you PowerShell commands designed for Storage Spaces Direct (S2D) storage pools, which are completely irrelevant to your hardware-based Fujitsu Fibre Channel SAN environment.
The Reality of the Situation: When Controller A hard-crashed during active I/O, the active node could not flush the ReFS metadata cleanly before MPIO paths failed over to Controller B. Right now, you are facing one of two things: either a stuck SCSI-3 Persistent Reservation (PR) lock from the cluster, or a legitimately corrupted ReFS filesystem (RAW state).
Here is the exact, step-by-step method to isolate and recover this without formatting:
Step 1: Break the Cluster Ghost Locks Remove the affected "Reserved" disks from the Failover Cluster Manager configuration entirely. Then, open an elevated PowerShell prompt on a node and run this command to forcibly clear any stuck SCSI-3 PR locks: Clear-ClusterDiskReservation -Disk [DiskNumber] (Replace [DiskNumber] with the actual OS disk number).
Step 2: Test Native OS Mounting Open Disk Management (diskmgmt.msc) on one node only. Bring that disk Online and assign it a drive letter.
Step 3: The ReFS Crossroads
Scenario A (It mounts and data is visible): The filesystem is perfectly fine; the cluster database was just hung up on the path flap. You can safely remove the drive letter, bring it offline, re-add it to the cluster, and promote it back to CSV.
Scenario B (It shows as RAW or prompts to format): The abrupt SAN controller failure corrupted the ReFS metadata. Because ReFS does not support traditional chkdsk repairs, your only Microsoft-supported recovery path is to provision a brand-new LUN on your SAN, map it to the host, and use the built-in refsutil salvage command to extract your VHDX files from the corrupted volume over to the new one.
Do not run any third-party partition repair tools that write to the disk, as they will permanently destroy any chance of refsutil salvaging your VMs. I hope the response provided some helpful insight. If it clarified the issue for you, please consider marking it as Accept Answer so others with the same issue can find the solution. Feel free to leave a comment if you need further information.
Tracy Le.