SavorySilicon
Senior Member
- Joined
- Jan 28, 2020
- Messages
- 111
Windows + X
and select Disk Management.diskpart
and attrib
commands. diskpart
...Windows + X
and select Disk Management.diskpart
and attrib
commands. diskpart
and attrib
CommandsWindows + X
and select Command Prompt (Admin) or Windows Terminal (Admin). diskpart list disk select disk 0 list partition select partition 4 assign letter=N exit
attrib
:cmd attrib -s -h -r N:\
cmd attrib -s -h -r N:\*.* /S /D
attributes volume clear
CommandWindows + X
and select Command Prompt (Admin) or Windows Terminal (Admin).cmd diskpart list volume select volume (replace with the number corresponding to Partition 4) attributes volume clear hidden attributes volume clear readonly exit
Disk Management | Windows + X > Disk Management > Right-click the Recovery partition > Change Drive Letter and Paths... > Add > Assign a drive letter. |
Command Prompt (attrib command) | Windows + X > Command Prompt (Admin) > attrib -s -h -r N:\ and attrib -s -h -r N:\*.* /S /D |
Diskpart Command | Windows + X > Command Prompt (Admin) > diskpart > list disk > select disk 0 > list partition > select partition 4 > assign letter=N > exit |
Diskpart Attributes | Windows + X > Command Prompt (Admin) > diskpart > list volume > select volume > attributes volume clear hidden > attributes volume clear readonly > exit |