Hi, There
If the SSD is blank but you still can’t copy files, it’s probably not a normal “ownership” problem but either the format, permissions on the root, or even the USB adapter.
You can try this clean fix BUT nothing on the drive will be kept:
- Open Command Prompt (Admin).
- Run:
diskpart
list disk
select disk X   (replace X with your SSD)
clean
convert gpt
create partition primary
format fs=ntfs quick
assign letter=Z
exit
=> This wipes and fully resets the drive.
- Then reset permissions:
takeown /f Z:\ /r /d y
icacls Z:\ /grant %username%:F /t
=> This makes sure you’re the owner with full control.
- If you’re using a USB–SATA adapter, try plugging the SSD straight into SATA — some adapters cause weird permission issues.
That should give you a totally clean, writable NTFS drive.