大家好,最近小弟我需要把USB其中一個分割區單獨做成有防寫保護,而且USB的檔案系統是要用FAT格式的,所以呢想用dickpart開啟防寫保護,但小弟呢研究了好久,也找了好多資料,都只有教怎麼把整顆USB開啟防寫保護,卻沒有可以單獨讓一個分割區開啟防寫的指令,所以想請問各位大神有沒有人能教一下小弟我要如何操作才能達成我的目的,謝謝各位!
以下是小弟我嘗試操作的過程,但是到最後卻不知為何失敗,也想順便問問看各位是小弟我有那裡出現問題,或該如何調整。
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
Disk 0 Online 476 GB 2047 MB *
Disk 1 Online 931 GB 0 B *
DISKPART> select disk 2
Disk 2 is now the selected disk.
DISKPART> list partition
Partition ### Type Size Offset
Partition 1 Primary 12 GB 1024 KB
Partition 2 Primary 2048 MB 12 GB
DISKPART> select partition 2
Partition 2 is now the selected partition.
DISKPART> attributes partition set readonly
Microsoft DiskPart version 10.0.22621.1
VOLUME - Manipulate volume attributes.
DISK - Manipulate disk attributes.
有試過對 Disk 下的 Volumn 設定為 ReadOnly 嗎? 所列的步驟只有 select 到 Disk, 並沒有往下選到 Volumn (即等於 Partition)
可以參考這篇文章說明 :
How to Set a Disk or Volume Read-Only in Windows 10 / 8 / 7
https://www.top-password.com/blog/set-a-disk-or-volume-read-only-in-windows/
他已經給你答案了
Microsoft DiskPart version 10.0.22621.1
VOLUME - Manipulate volume attributes.
DISK - Manipulate disk attributes.
所以你只能對 DISK
list disk
select disk 號碼
attributes disk set readonly
或者對 volume
list volume
select volume 號碼
attributes volume set readonly
我拿USB隨身碟測試是沒問題的。