Install Windows 10 from a USB Flash Drive
Install Windows 10 from a USB Flash Drive |
Install Windows 10 from a USB Flash Drive |
Windows Key
, type cmd
and hit Ctrl+Shift+Enter
. This will force it to open as admin.diskpart
Diskpart
command line utility, which allows you to manage disks, partitions and volumes.C:\Windows\system32> diskpart
list disk
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 238 GB 0 B
Disk 1 Online 465 GB 0 B
Disk 2 Online 29 GB 0 B
select disk #
DISKPART> select disk 2
Disk 2 is now the selected disk.
clean
DISKPART> clean
DISKPART> create partition primary
DISKPART> select partition 1
list partition
to check.NTFS
file system and run a quick format:DISKPART> format fs=ntfs quick
DISKPART> active
exit
. This will exit diskpar
No comments