Skip to main content

command line - Bootable USB flash drive from iso using windows CMD (I can't find the tutorial...)


In the begining of last year or the end of 2014 I learnt how to make a bootable flash drive from an .iso from a youtube video. I tried to find the video but I can't and it's not in my history.


The video was very simple; first it taught how to format the flash drive using DISKPART and that part I remember, what I don't remember is the last part. I remember it used the xcopy command with some options and the source and destination, the latest being the flash drive. As for the source I don't remember if it is the .iso file itself with some options that cause the files to be extracted the same way CD Burning software does or if it was something else. I don't remember what the options were neither, but I remember one of them was /f


I know the tutorial works because I tried it. The tutorial was very simple and quick and only used the cmd, no other software.


To sum up:



  1. Format the flashdrive to FAT32, assign it a letter...


  2. xcopy _some "options i don't remember" .iso_file flashdrive


    or




  3. xcopy "some options i don't remember" "something else?" flashdrive (I think it is the first option though)




I saw on some other tutorials that the .iso is mounted and then the files are copied using xcopy; I don't think that was what was in that tutorial. I may be mistaken, but I think that it used only xcopy to extract the files. Maybe there is some option for extracting the files of an .iso like that (if by "extracting the files of an .iso" I sound confusing, what I mean is that when you burn an iso to a cd or flashdrive what you see when you open that cd or flashdrive is several files and not the .iso file your burnt).


Can anyone help me?



Answer



You have two options available to you – in this case both are installing Windows onto a USB key and/or a USB hard drive ...


Format & create a bootable USB key using the CMD prompt & a .iso – from Windows 8.x or 10


I've emphasised the commands by using capitals.


USB KEY



  1. insert the USB key

  2. Open CMD         - as an Admin

  3. DISKPART

  4. LIST DISK         - Will display the disks available

  5. SELECT DISK *       - Will select the disk   ** Ensure you select the right disk **

  6. CLEAN

  7. CREATE PARTITION PRIMARY

  8. SELECT PARTITION *    - The Nº of the partition that you wish to make primary

  9. ACTIVE           - Makes the selected partition active

  10. FORMAT FS=NTFS      - This will take approx. 10 minutes

  11. ASSIGN          - This will assign a drive letter (we'll believe that it is U:\)

  12. EXIT           - To leave "DiskPart"


Find your .iso and right-click to mount it as a virtual drive (we'll use V:\)



  1. XCOPY V:\*.* /s /e /f U:\ - Again it will take approx 10 minutes

  2. EXIT         - Once the copying has finished .. this will EXIT the CMD prompt window


The USB key is now bootable


USB Harddrive



  1. insert the USB key

  2. Open CMD         - as an Admin

  3. DISKPART

  4. LIST DISK         - Will display the disks available

  5. SELECT DISK *       - Will select the disk   ** Ensure you select the right disk **

  6. CLEAN

  7. CREATE PARTITION PRIMARY

  8. SELECT PARTITION *    - The Nº of the partition that you want to be primary

  9. ACTIVE           - Makes the selected partition active

  10. FORMAT FS=NTFS      - This will take approx. 10 minutes

  11. ASSIGN          - This will assign a drive letter (again we'll say that it's U:\)

  12. EXIT           - To leave "DiskPart"


Find your .iso and right-click to mount it as a virtual drive (we'll use V:\)



  1. V:

  2. CD BOOT

  3. BOOTSECT.EXE /NT60 U:

  4. XCOPY V:\*.* U:\ /E /F /H  - To copy the installation files


Once finished you will be able to boot from the external USB HD .. don't forget the boot options (F2 / F12, etc.)


Comments

Popular Posts

keyboard - Is there any utility/method to change Windows key bindings to type rare chars to currently empty bindings?

I'm currently typing this post with my windows XP machine and (Spanish) keyboard, and I'd like to add some extra symbols to my text. I could open the "char map" windows utility, look for the desired symbols, and paste them. But I'd like something quickier. For example, when I'm using my OSX Mac at work, I can easily add a ©, ™, ® or similar symbols, just pressing some weird ALT-GR + G / H / J, key combinations. In my (Spanish) keyboard mapping, these combinations are empty, as they don't produce any char at all, which, on the other hand, is perfectly normal and desirable. So, I thought: Why couldn't I add some extra key mappings on top of my currently empty ALT-GR + G/J/H Keys in my Spanish keyboard, and thus, being able to quickly type these special symbols? So that's my question: Is there any utility/method to achieve that effect under windows? (My version is XP). I've even googled this for some time but no luck. I've been a long term Hot...

virtualization - How to select paravirtualization interface in VirtualBox?

Given a windows 8 host system (Intel Core i5) and a Linux Fedora host, I would like to determine the optimal setting for the paravirtual interface. Options are none Default Legacy minimal Hyper-V KVM This page suggest the selection is only based on the guest system: The biggest change in VirtualBox 5.0 is the introduction of paravirtualization support, bringing higher performance and time-keeping accuracy to supported guest operating systems (Hyper-V on Windows and KVM on Linux). Is that correct? Answer The VirtualBox Manual , in the section titled Paravirtualization providers explains very clearly when each should be used (emphasis added): Minimal: Announces the presence of a virtualized environment. Additionally, reports the TSC and APIC frequency to the guest operating system. This provider is mandatory for running any Mac OS X guests. KVM: Presents a Linux KVM hypervisor interface which is recognized by Linux kernels starting with version 2.6.25. VirtualBox's implementati...

Desktop reboots itself on sleep or hibernate

I have been using an ASUS M2NPV-VM motherboard for main home desktop workstation, operating Windows Vista x64. This computer has right from day one not been able to enter hibernate or standby; after Windows performs its final actions and brings the machine down, it would automatically revive itself for a reboot. Updating to the second latest BIOS (1201)has not helped (the latest BIOS revision would induce video refresh problems rendering it unusable). I have been reading related discussions on incidents similar to mine to no avail of a true workable solution. They appear to be more speculative guesses rather than actual knowledge on the inner workings of motherboard hardware. Does anybody have any electronic engineering experience on PC energy-saving standards to provide a more informed opinion how to go about getting this to work? More stories: this motherboard could not even reboot properly the first thing i used it. It was due to refresh rate of the onboard GPU, which had no influe...

Excel 2010: if( , , "") not treated the same as blank for pivot table group by date

I'm trying to group by date in an Excel 2010 pivot table. The column with dates (i.e., the one want to group by), should be the latest date of 2 other columns if neither is null, or blank. i.e., with a formula like: =IF(AND(A4 "", B4 ""), MAX(A4,B4), "") Normally, this "" in the IF() formula acts the same as an empty cell. In this case, it is preventing me from grouping by date in the Pivot Table. If I filter the date column by (Blanks) , then clear the contents of all those cells, then the pivot table does group by date ok. i.e., "" is not being treated the same as an empty cell.