How to make your Pendrive Bootable.

We all have done, installed operating systems using ordinary CD and DVD, and we also have done using Bootable Pendrives somewhere. But here we'll see how make a Pendrive to a Bootable Pendrive without using any third party software. DOS give the power to make your Pendrive Bootable using some commands.

Screenshots:


Copy all the required files from the folder where you've stored the OS Files and paste in the Pendrive.

See here the removable Pendrive is Bootable now.

DOS Commands:

Open the command window as Administration.
First we have to use the Diskpart command.

 
diskpart

Now we can see all the volumes by using list disk command
list disk

Now we have to select the disk where we have to paste all the OS Files
select disk x

Where x = 1,2,3 (Your disk number which one you want to make bootable)


Now we clean the disk
clean


Now we have to create a primary partition and Active the disk.
create primary partition
create partition primary
active


Now we format the removable disk to the FAT32 format.
format fs=fat32 quick


now we paste the file after the assign. A pop-up File Explorer window will come out if not, don't worry just go normally paste the file inside the Pendrive.

assign

After the copy-paste process finished exit the diskpar and command window
exit
exit

Now we have all done.
Thank you...!!
Be happy and keep sharing.

Comments

Popular posts from this blog

Non Restoring Division Algorithm Implementation in C

Employee Management System Using Inheritance in Java

Bit Stuffing Code Implementation in Java