Skip to main content

Learn How To Make Bootable Pendrive For Windows 7 Using Only Command Prompt


I got the basic commands from the net and am going to take you step by step through the process without having to use a 3rd party program using the command prompt to utilize DiskPart which is built into Windows 7 by default. So here I give a brief and 100% tested tutorial on how to create a Windows 7 Bootable USB Pendrive to install Windows 7 from USB Pendrive.

Also we can bootable pendrive on windows 7,vista,xp using software visit this Link

How to make bootable pendrive using command prompt how that works follow this steps.

1)  Open a command prompt as administrator (Right click on Start > All Programs > Accessories > Command Prompt and select “Run as administrator”.

2) Then run diskpart utility from command prompt, by typing ‘diskpart’ on command prompt and pressing enter. This will run the diskpart utility in a separate windows, which is shown in 2nd picture below:
 3) Now type in cmd  "list disk" and hit enter The number of your USB drive will listed. You’ll need this for the next step.Then you have to type ‘select disk 2′ and press enter. Note: in our case it is disk 2, in your case it may be disk 3, or disk 1 or any other number.
 4)Now you enter ‘detail disk’ to see the details of the disk after selecting it to verify that you have selected the correct disk. You can see these steps in the image below:
 5) Then you have perform this command in cmd. The commands can run by order:
- clean
- create partition primary
- select partition 1
- active
- format fs=fat32  (Command "Format fs=ntfs quick" will speed up the format otherwise it takes hell lot of time to format big pendrives.)
 6) These steps are shown in the image below:
After the format is complete you have to run ‘assign’ command. And after this you can exit diskpart utility by entering the ‘exit’ command. The steps are shown below:
- assign
- exit.
7) After the format process is complete, put in your  Windows 7 DVD in your DVD drive, or if you have using any  .iso image of the DVD, mount that image using any virtual drive software like Power ISO.
Download UltraISO Software

- Now go to My Computer, & open the virtual or original of DVD Drive. Press ‘ctrl+a’ to select all contents
and copy all the contents by pressing ‘ctrl+c’.

-Aafter complete all process. open the USB Drive and press ‘ctrl+v’ to paste all the contents of DVD into the USB Disk.


Monday, 10 October 2011

Remove autorun.inf virus using command prompt


We can show how to remove autorun virus manually using commnat prompt show in blow.
This is manually metod to remove virus Using Command Prompt is quite Useful. So First to go with the Steps:
Ø   Open command prompt. Go to start > Run,  &  type “cmd” .
Ø  Type “cd\” and press enter to get to the root directory of your System in computer.
Ø   Type this command  attrib -h -r -s autorun.inf” and press enter. This will look for autorun.inf in the selected Drive.
Ø  Now Type “del autorun.inf” and press enter. This will delete autorun.inf virus from the selected Drive.
Ø   Repeat the above Steps for other drives. To navigate to other Drives, First type “cls” to clear your ‘command prompt’ then type “d:” . Repeat the Steps for all the Drives including your USB Disk Drive.
Ø   Restart your System.

Comments

Popular posts from this blog

Learn Programming in UNIX

Q: - Write a program to input two numbers and add them?             gedit add.sh             clear             echo “enter two numbers:”             read a             read b             sum=`expr$a+$b`             echo $sum Syntax for if-else:- (1)          if test condition             then                 ---------                 --...

Things you know before buying Laptop

Things you should know before purchasing Laptop 1. Brand of Company Like DELL (inspiron Only), HP, ACER 2. Required RAM capacity Like 4 GB aprox. 3. Requirement of Hard Disk like 500 GB or 1 TB. 4. Processor like Intel Core i3 or Dual Core or AMD processor 5. Multimedia keyboard 6. Optical Mouse 7. ATI graphics Card Note:- If you think to buy a laptop you can select the laptop without operating system or open source operating system because if you buy windows o/s for laptop then it increased price aproxx 3000 if you select DOS laptop then its reduced the windows cost. Click here for example --> Best Laptop for students

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...