You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To start off, type in this window `list disk` to see if you can spot your drive. It should be really simple if you remember how much space it has. If you have issues with finding out how much it had, just remember that the Gpt with `*` on it is your primary disk, which is your OS, so don't touch that one.
25
25
26
26
In this example, the drive is defined as "Disk 1", so then you would have to type `select disk 1` and the DiskPart software would select it as the main target for this session. To confirm that this was done correctly, type in `list disk` again and see if "Disk 1" (yours might be something else) as a small `*` before the name of it.
Now that the selected drive is confirmed as the right one, type `clean` and it should start cleaning the drive fully. This includes partitions and files, so be sure to copy anything if you're interested on recovering some of your files from it.
@@ -37,18 +37,18 @@ After the clean has been done, type all of these three commands in the correct o
37
37
38
38
If you've done this all correct, you should have a similar result as the image below.
# 4. Making the drive usable {#4-making-the-drive-usable}
43
43
The first and only partition has been made, so now we can finally start giving this drive a format type and a name to whatever we desire. There are two types of commonly used formats, named **NTFS** and **FAT32**. If you plan to use the drive on any older computers or making a bootable drive, please consider to use FAT32, else if this is just a normal USB that you're going to have on any Windows 7 on later (Mac and Linux too), go with NTFS, specially if the drive is more than 0.5 TB.
44
44
45
45
To give the drive a functional format and name, type the command `format FS=NTFS label=EmptyDrive quick`. You can replace the `FS=NTFS` with `FS=FAT32` if you want the other format instead. When this command is done, you should finally have a bootable drive again as shown bellow.
## 4.1 Assign letter (Optional) {#4-2-assign-letter-optional}
52
52
If you need to give the drive a new letter instead of the normally known alpabetic order, do the command `assign letter=W` and replace W with whatever you desire to have with it. Doing this will show the drive as usual but with a new letter in front now.
0 commit comments