Thanks — this looks like a Storage Spaces / leftover-pool metadata issue rather than a normal “bad SSD.” The 1.62 TB / 1.58 TB numbers and the Server Manager screenshot show the disk is being treated as part of a Storage Spaces pool (ClientBackup), so Windows is exposing pool/virtual-disk metadata instead of a clean NTFS volume. That’s why the drive looks “weird” in Disk Management and why the USB enclosure/another PC may not show it normally. Storage Spaces leaves headers on drives that make them participate in (or be claimed by) a pool even after reinstalling the OS. su want to keep any data that might be on that 2nd SSD? If yes — stop and tell me; we’ll try recovery steps.
- If you don’t need the data (sounds likely given you reinstalled and are trying to reuse the drive) — the simplest is to remove the disk from the pool/erase the Storage Spaces metadata and reinitialize the disk.
Safe, recommended workflow (if you’re OK erasing the drive)
1) Backup any important data on the server first (don’t delete pools until you have current backups). Deleting pools/virtual disks destroys data.
2) Try the GUI method (easiest)
- Open De any volume on that Disk 4 (right‑click > Delete Volume).
- Open Server Manager → File and Storage Services → Storage Pools.
- Under Storage Pools: delete the Virtual Disk related to ClientBackup, then delete the Storage Pool. Once the pool/virtual disk are removed the physical disks should show as “Primordial” and you can initialize/format them normally. Many members have resolved similar cases by deleting the Storage Space/Pool first, then reinitializing the drives.
3) PowerShell (clean + reinitialize) — run as Administrator
-ool ; Get-PhysicalDisk | ft FriendlyName,Size,Usage,CanPool,OperationalStatus
- If you already removed the virtual disk/pool, wipe and reinitialize the physical disk (replace X with the disk number from Get-Disk / Disk Management):
- Clear the disk metadata:
Clear-Disk -Number X -RemoveData -Confirm:$false
- Initialize and create a volume:
Initialize-Disk -Number X -PartitionStyle GPT
New-Partition -DiskNumber X -UseMaximumSize -AssignDriveLetter | Format-Volume -FileSystem NTFS -NewFileSystemLabel "ClientBackup" -Confirm:$false
- If you prefer diskpart:
- diskpart
- list disk
- select disk X
- attributes disk clear readonly
- clean
- convert gpt
- create partition primary
- format fs=ntfs quick label=ClientBackup
- assign letter=E
These commands remove Storage Spaces/partition headers and will give you a normal 1 TB NTFS disk.
If you can’t remove the disk from the pool / commands fail
- You may see errors like “disk still in use” / “could not relocate data” when trying Remove-PhysicalDisk; that means Storage Spaces can’t move data off the disk and blocks removal. Typical responses are to set the physical disk Usage to Retired and Repair the virtual disk first — or, if the data is expendable, delete the virtual disk and pool. See the forum discussion where Remove-PhysicalDisk is blocked because the pool couldn’t relocate data.
Why the other PC didn’t see it over USB
- Storage Spaces metadata can make a drive r unrecognized in consumer Windows when attached to another machine, and some USB enclosures also hide/alter drive presentation. If you want to wipe the drive and it won’t appear over USB, connect it directly to a SATA port on a desktop or use a different USB adapter/enclosure. If it’s truly not visible at all in BIOS/another machine, try a different cable/port — the enclosure itself could be the problem.
Diagnostics I’ll need if you want me to walk you through it
- Tell me whether you want to KEEP any data on that second SSD.
- If you’re happy to wipe it, tell me whether you want GUI or command-line steps. I can paste exact PowerShell / diskpart commands and explain what each does.
- If you want to preserve data, I’ll need these outputs (paste them or screenshots): in an elevated PowerShell on the server run Get-StoragePool ; Get-PhysicalDisk ; Get-Disk (copy/paste output). Those let me see pool membership, health, and exact disk numbers.
Quick next step (if you want to wipe and reuse the disk now)
- Tell me the disk number for that 1.62 TB disk (from Disk Management or run in an elevated PowerShell: Get-Disk) and say “wipe it” — I’ll give the exact Clear-Disk / Initialize-Disk commands to run.
If you prefer, post the Server Manager → Storage Pools screenshot (the pool details) or paste output from:
- Get-StoragePool | Format-List *
- Get-PhysicalDisk | Format-Table FriendlyName,UniqueId,HealthStatus,OperationalStatus,Size,Usage
I’ll guide you step‑by‑step.