Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
windows:windows-tutorials:reset-disk-via-cli [2024/10/09 13:25] – Zyzonix | windows:windows-tutorials:reset-disk-via-cli [2024/10/09 13:30] (current) – Zyzonix | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Reset/ | ====== Reset/ | ||
+ | |||
+ | To remove all partitions and uninitialize a disk on Windows a tool called '' | ||
+ | The functionality described here is only a minimum of all the things DISKPART can do. | ||
+ | |||
+ | Firstly run '' | ||
+ | <code bash> | ||
+ | |||
+ | Then list all disks by running '' | ||
+ | <code bash> | ||
+ | |||
+ | Select the disk that should be uninitialized by running: '' | ||
+ | <code bash> | ||
+ | |||
+ | Finally '' | ||
+ | <code bash> | ||
+ | This tool/way to reset won't replace the whole disks with zeroes, it will just delete the partition table as well as the initialization format (like gpt). | ||
+ | |||
+ | To reuse the disk a reinitialization is required, this can be done graphically by entering the disk partition manager. | ||
+ |