Monday, 27 January 2020
Create Windows 10 USB Install Media
1. Install USB drive (min 4GB)
2. Launch cmd as admin (Windows+R & 'cmd' & Ctrl+Shift+Enter).
3. Run diskpart
C:\Windows\system32> diskpart
4. Run list disk
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 512 GB 0 B
Disk 1 Online 256 GB 0 B
5. Select flash drive disk number
DISKPART> select disk 1
6. Run clean
WARNING: This deletes all data on your drive
DISKPART> clean
7. Create a partition
DISKPART> create partition primary
8. Select the new partition
DISKPART> select partition 1
9. Format the partition
DISKPART> format fs=ntfs quick
10. Set the current partition as Active
DISKPART> active
11. Exit diskpart
12. Mount your ISO (right click iso file and select mount)
13. Install boot sector from mounted image (L:) to USB drive (E:)
C:Windows\system32> L:
L:\> cd boot
L:\boot> bootsect.exe /nt60 E:
14. Copy ISO files (L:) to USB Drive (E:)
L:\> xcopy L:\*.* e:\ /E /H /F
Subscribe to:
Post Comments (Atom)
Fixing Java KVM client error with 'Connection Failed'
Java 8u171 disables the use of the 3DES_EDE_CBC cipher. Solution is to reconfigure Java by editing and removing 3DES_EDE_CBC from the follow...
-
Java 8u171 disables the use of the 3DES_EDE_CBC cipher. Solution is to reconfigure Java by editing and removing 3DES_EDE_CBC from the follow...
-
How to Change Network Profiles with PowerShell? Change Network Profile Using PowerShell The three network profiles in Windows 10 a...
-
How to rename, sort and organise files, based on filename using PowerShell. The following PowerShell script takes a list of files in a g...
No comments:
Post a Comment