Trick: Disable USB read-only status under Windows

来源:互联网 发布:怎样创建企业域名 编辑:程序博客网 时间:2024/05/13 17:16

Clear USB read-only status under Windows

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

Then under the Diskpart console, input the following instruction:

list disk

You will see the result like this:

  磁盘 ###  状态           大小     可用     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:

select disk 2

View the detail of disk 2:

detail disk

Will get:

D2-310 TerraMaster_DAS SCSI Disk Device磁盘 ID: {0757775B-023D-4611-910D-E024B13CCAE4}类型   : USB状态 : 联机路径   : 0目标 : 0LUN 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:
Attribute disk clear readonly

Then re-check status:
detail disk
Will see:

D2-310 TerraMaster_DAS SCSI Disk Device磁盘 ID: {0757775B-023D-4611-910D-E024B13CCAE4}类型   : USB状态 : 联机路径   : 0目标 : 0LUN ID : 0位置路径 : UNAVAILABLE当前只读状态: 只读: 启动磁盘: 页面文件磁盘: 休眠文件磁盘: 故障转储磁盘: 群集磁盘  :    ###      LTR  标签         FS     类型        大小     状态       信息  ----------  ---  -----------  -----  ----------  -------  ---------  --------       4     X   新加卷          NTFS   磁盘分区        1862 GB  正常

Good luck!

0 0
原创粉丝点击