Friday, 11 April 2014
In this tutorial, I will show you how to make Windows Bootable using simple Commands in command prompt. Please follow the following steps :

 1. Run the command prompt [i.e. cmd] in Administrotor mode.


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.
byteKoding

byteKoding

byteKoding.com is started with an intention to provide every updates related to technology and programming. It is specially for helping people in developing software projects in different programming languages like C/C++, Java, C#.Net, ASP.Net etc. The details that we share here can be very much useful in creating your software a great success.

0 comments