Update README.md

This commit is contained in:
noxy 2020-11-09 15:47:35 +00:00
parent f368d37bd8
commit 6fa469cdef

View File

@ -36,12 +36,11 @@ In the Windows 10 installer you press Shift+F10 to open CMD
then you start by identifying your disks, use diskpart for this. then you start by identifying your disks, use diskpart for this.
<code> ```
diskpart diskpart
DISKPART> list vol DISKPART> list vol
```
</code>
This will list all connected volumes to the vm, make sure to pass your USB stick over to your vm, it will show up in diskpart aswell. This will list all connected volumes to the vm, make sure to pass your USB stick over to your vm, it will show up in diskpart aswell.
@ -52,7 +51,9 @@ In this example is /imagefile:D:\install.wim the location where you will write t
/capturedir:K:\ is the location of your Windows disk, the path that you are going to make an image of! /capturedir:K:\ is the location of your Windows disk, the path that you are going to make an image of!
<code>dism /capture-image /imagefile:D:\install.wim /capturedir:K:\ /name:"Windows 10 Capture" /compress:maximum /checkintegrity /verify /bootable</code> ```
dism /capture-image /imagefile:D:\install.wim /capturedir:K:\ /name:"Windows 10 Capture" /compress:maximum /checkintegrity /verify /bootable
```
This will take some time. This will take some time.
@ -70,7 +71,10 @@ Find the drive letter of your usb stick and follow the command
In this example line "d:" is the drive letter of your usb, please make sure to enter the correct letter! In this example line "d:" is the drive letter of your usb, please make sure to enter the correct letter!
<code>oscdimg.exe -m -o -u2 -udfver102 -bootdata:2#p0,e,bd:\win10_iso\boot\etfsboot.com#pEF,e,bd:\win10_iso\efi\microsoft\boot\efisys.bin d:\win10_iso d:\my.personal.windows.10.iso</code> ```
oscdimg.exe -m -o -u2 -udfver102 -bootdata:2#p0,e,bd:\win10_iso\boot\etfsboot.com#pEF,e,bd:\win10_iso\efi\microsoft\boot\efisys.bin d:\win10_iso d:\my.personal.windows.10.iso
```
Congratulations! You just created your first own Windows 10 image! Congratulations! You just created your first own Windows 10 image!