The document provides step-by-step instructions to install Windows by booting from a USB drive and formatting the destination drive using Diskpart.exe. The instructions include selecting the destination disk, creating a primary partition, making it active and formatted, copying files from the USB drive to the new partition, and making the drive bootable. The final steps remove the Windows Setup option from the boot menu once installation is complete.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
55 views
Step by Step Instruction
The document provides step-by-step instructions to install Windows by booting from a USB drive and formatting the destination drive using Diskpart.exe. The instructions include selecting the destination disk, creating a primary partition, making it active and formatted, copying files from the USB drive to the new partition, and making the drive bootable. The final steps remove the Windows Setup option from the boot menu once installation is complete.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
Step by step instruction:
1. Boot windows installation from USB drive
2. Press Shift+F10 3. In console type diskpart.exe and press enter. In this program execute following: 4. select disk=0. Disk 0 is your destination drive, so be careful, all information on this drive will be removed. 5. create partition primary size=xxx, where xxx is the size of new partition 6. select partition=1 7. active 8. format fs=ntfs quick 9. assign 10. exit, now you have bootable drive C wmic logicaldisk get deviceid, volumename, description >>> show all drives in the cmd 11. Navigate to USB flash drive, in my case: cd d: 12. Copy all files from USB drive to C: drive: xcopy d: c: /e /h /k 13. Go to boot folder: cd boot 14. Make you C: drive bootable with following command: bootsect /nt60 c: 15. Put off USB drive from computer and restart them. 16. Install Windows 17. Remove unnecessary menu item from bootscreen: 18. Run cmd.exe as Administrator 19. See boot menu list bcdedit 20. Find Windows Setup and copy identifier 21. Run bcdedit /delete {identifier} 22. PROFIT!