Tricks: Clear USB Read-only Status Under Windows

Clear USB read-only status under Windows

Run Diskpart

  • Run CMD with administrator privilege
  • Run DISKPART to check USB disk status
Diskpart

Choose Disk

Then under the Diskpart console, input the following instruction:

DISKPAERT> list disk

The result looks like:

  磁盘 ###  状态           大小     可用     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  磁盘 0    联机              238 GB      0 B
  磁盘 1    联机              465 GB      0 B        *
  磁盘 2    联机             1863 GB      0 B        *
  磁盘 3    联机              232 GB      0 B
  磁盘 4    联机               29 GB      0 B

For example, my read-only USB driver is disk 2, so use the following instruction to select it:

DISKPAERT>select disk 2

View the detail of disk 2:

DISKPAERT> detail disk

Will get:

D2-310 TerraMaster_DAS SCSI Disk Device
磁盘 ID: {0757775B-023D-4611-910D-E024B13CCAE4}
类型   : USB
状态 : 联机
路径   : 0
目标 : 0
LUN ID : 0
位置路径 : UNAVAILABLE
当前只读状态: 是
只读: 是
启动磁盘: 否
页面文件磁盘: 否
休眠文件磁盘: 否
故障转储磁盘: 否
群集磁盘  : 否

  卷 ###      LTR  标签         FS     类型        大小     状态       信息
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
  卷     4     X   新加卷          NTFS   磁盘分区        1862 GB  正常

All right, looks my driver has been set to read-only, now we have to clear it:

Clear read-only status

Input following instruction to clear read-only status:

DISKPAERT> Attribute disk clear readonly

Then re-check status:

DISKPAERT> detail disk

The result looks like:


D2-310 TerraMaster_DAS SCSI Disk Device
磁盘 ID: {0757775B-023D-4611-910D-E024B13CCAE4}
类型   : USB
状态 : 联机
路径   : 0
目标 : 0
LUN ID : 0
位置路径 : UNAVAILABLE
当前只读状态: 否
只读: 否
启动磁盘: 否
页面文件磁盘: 否
休眠文件磁盘: 否
故障转储磁盘: 否
群集磁盘  : 否

  卷 ###      LTR  标签         FS     类型        大小     状态       信息
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
  卷     4     X   新加卷          NTFS   磁盘分区        1862 GB  正常

Good luck!

你可能感兴趣的:(usb,read-only,windows)