In this tutorial, I will show you how to make Windows Bootable using simple Commands in command prompt. Please follow the following steps :
2. Type the first command :
diskpart
3. Find the available disks in your system:
list disk
4. Select the disk for your pen drive:
select disk 1
5. The very next command is to clean the drive :
clean
6. After that we have to divide the disk into partitions :
create partition primary
7. The first partition of disk must be selected :
select partition 1
8. activate the selected partition:
active
9. Assign the activated partition using the command:
assign
The moment you execute the assign command, a pop up will come. This pop up will ask you to format the disk.
NOTE:- If this doesn't com, Please follow the steps from beginning.
10. Format the disk in NTFS mode.
11.exit the diskpart mode:
exit
12. Copy the path of /boot/ folder of the Windows 7.
13. Change the working directory of cmd to the boot folder of the OS.
cd G:\boot
G:
14. execute the final command to install the bootcode in the pen drive:
bootsect.exe /nt60 i:
here i: is the label of pendrive.
If the output of the final command comes like shown in the above image, then your pen drive is made bootable successfully. Now you have to copy the files from the Windows folder and paste in your pen drive. That's it.
If you have any queries regarding the above post, write the comments or contact us.
0 comments