Bonjour
Peut etre ce lien aidera
https://techjourney.net/storage-spaces-cant-add-drives-request-is-not-supported-error-0x00000032/
But if you can’t add the drive to storage pool even if the disk is clean, then the error may be caused by faulty disk metadata. To resolve the issue so that the disk can be attached to the pool, try to reset the disk.
- Open PowerShell window as Administrator (normally accessible from
Win-X menu if you don’t
replace PowerShell with Command Prompt).
- Run the following command to get a list of all your physical disks with their friendly name, unique ID, serial number, media type, size and etc.:
Get-PhysicalDisk
- Reset the problematic disk by FriendlyName or by UniqueId:
Reset-PhysicalDisk -UniqueId "abcdefgh12345678"
Reset-PhysicalDisk -FriendlyName "physical-disk-name"
Replace the value for UniqueID or FriendlyName with actual unique ID or friendly name shown in step above.
"Marquer comme réponse" les réponses qui ont résolu votre problème