Hello Matthew Paul
The error message you’re encountering suggests that the unallocated space you’re attempting to format is marked as read-only. Here are a few steps you can take to resolve this issue:
Check for physical write protection:
Some USB drives or external storage devices have a physical switch that can enable or disable write protection. Ensure that the switch is in the correct position to allow writing.
Use Diskpart utility:
Press Windows Key + X, then select “Command Prompt (Admin)” or “Windows PowerShell (Admin)”.
Type “diskpart” and press Enter to open the Diskpart utility.
Enter the following commands one by one, pressing Enter after each command:
“list disk” (to display a list of available disks)
“select disk X” (replace X with the number corresponding to the disk containing the unallocated space)
“attributes disk clear read-only”
Try formatting the unallocated space again.
Check for disk errors:
Open Command Prompt as an administrator.
Run the following command: “chkdsk /f X:” (replace X with the drive letter of the unallocated space).
This command will check and repair any file system errors on the disk.
Hope it helps.
Regards.