diff --git a/README.md b/README.md index f4b0dfa..1684060 100644 --- a/README.md +++ b/README.md @@ -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. - +``` diskpart DISKPART> list vol - - +``` 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! -dism /capture-image /imagefile:D:\install.wim /capturedir:K:\ /name:"Windows 10 Capture" /compress:maximum /checkintegrity /verify /bootable +``` +dism /capture-image /imagefile:D:\install.wim /capturedir:K:\ /name:"Windows 10 Capture" /compress:maximum /checkintegrity /verify /bootable +``` 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! -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 +``` +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!