Windows 7 Bootable USB stick

Hi, I am trying to create a bootable USB stick for use in deploying an Embedded Windows 7 image.  I have followed the instructions here:
http://msdn.microsoft.com/en-us/library/ff795043(v=WinEmbedded.1001).aspx.  That seems straight forward.  But, I can not seem to boot to the stick.  Is that page missing any instructions?
Thanks,
Scott

Ok.  Still no luck.  I have tried on more than one usb stick.  I have also booted the target device from a CD-Rom to prove the BIOS is working properly.  Steps 1 - 7 are straight forward.  I am new to Windows Embedded 7 in general
and ICE.  But, 8-14 seem fairly straight forward as well.  I am not quite sure what to look at.   ICE is a trial version. Hopefully that is not an issue.  For the ICE portion above, I do the following. 
1) I start ICE.  I have the distribution share pointing here: C:\Program Files (x86)\Windows Embedded Standard 7\DSSP1.
2) I right click to create a new answer file.  I Validate -> Validate Only, then I resolve the dependencies.  I then save the answer file.  I can post that if it helps.
3) I then choose Tools -> Create Media -> Create IBW Image from Answer File..." and chose a folder to write that to.  After the process, the image folder I created, has the following in it:
AUTORUN.INF
AutoUnattend.xml
AutoUnattend_Files
BOOT
BOOTMGR
EFI
RELEASE NOTES.HTM
SETUP.EXE
sources
SUPPORT
UPGRADE
4) I copy that to the root of the USB stick.
5) I go to my target device.  I try to boot to the stick.  I am told "Disk Boot Failure.  Insert system disc and press enter"
So, it seems that I can not boot from the stick.  In the past, I have had Windows XP installed on the target device, and, know that I can see the USB port.  So, I do not believe that is the problem.  Maybe someone sees a problem with what
I have done?  Any ideas on how to trouble shoot?
Thanks,
Scott

Similar Messages

  • I want to "burn" a .dmg (windows 7 file) to a bootable usb stick

    I have a late 2008 Macbook Pro and the superdrive doesn't read or write any disks (a common problem with this type of syperdrive)
    I want to install the dvd with Windows 7 on my Mac and of course i can't because of my superdrive problem.
    I have converted the dvd to a .dmg file so that I can make a bootable usb stick.
    But I can't "burn" the .dmg image to a usb. I've tried many ways to copy it but unsuccessful.
    Can someone please help me?

    Welcome to Apple Communities
    If you use Lion, you can use Windows 7 Home Premium, Professional or Ultimate, 32 or 64 bit. You can't upgrade to a 64 bit Windows from a 32 bit, and to downgrade (Ultimate to Home Premium)

  • Cannot create your bootable usb stick

    Hi all,
    I'm new to bootcamp and I have the following problem:
    When I'm creating a Windows 7 usb drive, it gives me an error "Cannot create your bootable usb stick there was a problem copying files".
    I've tried searching google for the problem, but the only possible solutions I've got was to unmount the iso image and try again, but when I do that I still get the same error and when I check the disk utility I find the iso image is mounted again.
    Does anyone haven an idea about what to do.
    Specs:
    OS X Yosemite 10.10.2
    MacBook Pro Retina 13-inch Mid 2014
    2,6Ghz Core i%
    8 GB 1600 MHz ddr3
    Thanks in advance!

    Please see the Microsoft reference and the second link has an example.
    https://support.microsoft.com/en-us/kb/841290?wa=wsignin1.0
    Bootcamp Windows 8.1 "No Images Are Available"

  • HT5639 Can I install Win7 32-bit from a bootable USB-Stick on iMac using Boot Camp?

    I would like to run Win7 32-bit on my iMac 8,1.
    I have a bootable USB-Stick to install Win7.
    Does Boot Camp support the installation from USB-Stick?
    Thanks

    Welcome to Apple Support Communities
    You can only install Windows from a USB drive in one of these Macs:
    - MacBook Pro with Retina display.
    - MacBook Air.
    - Mac mini (Mid 2010 and newer).
    - iMac (Late 2012).
    As you don't have any of those Macs, you have to install Windows through a DVD. Also, the only iMac that can install Windows using a USB drive only supports a 64-bit Windows 7 and 8 version with Boot Camp

  • I get /Volumes/Untitled is not a valid volume mount point when I try to use teminal to make bootable usb stick

    I get /Volumes/Untitled is not a valid volume mount point when I try to use teminal to make bootable usb stick. Why and what do I do to fix this. Very frustrating. Thanks for any help. Btw, I went through all the steps properly more than once to fomat and partition etc.
    John

    FYI
    my process just completed:  here is what I see when it is done... (the first you saw in my earlier post.  It took about 15-20 minutes.
    To continue we need to erase the disk at /Volumes/Recovery.
    If you wish to continue type (Y) then press return: y
    Erasing Disk: 0%... 10%... 20%... 30%...100%...
    Copying installer files to disk...
    Copy complete.
    Making disk bootable...
    Copying boot files...
    Copy complete.
    Done.

  • IMacs can boot Linux or Windows from usb stick

    iMacs 21' can boot Linux or Windows from usb stick? from Firewire 400 or 800 hdd/ssd? from USB HDD/SSD?
    May boot fromCD/DVD/DVDDL in internal DVD DRIVE, too?
    Exist Blu-ray drives able connect on Thunderbolt slot on iMac 21'?

    Here is the memo of the steps I followed. Hope this helps.
    <Create VHD image in temp folder at local drive>
    diskpart
    create vdisk file=C:\Temp\Win2go.vhd maximum=20480 type=fixed
    select vdisk file=C:\Temp\Win2go.vhd
    attach vdisk
    exit
    <Create partition in VHD, format in NTFS and assign drive letter "O">
    diskpart
    list disk
    select disk n (n is a number of VHD)
    clean
    create partition primary
    format fs=ntfs quick override
    assign letter=o
    active
    attribute volume set NODEFAULTDRIVELETTER
    exit
    <Execute "DISM" utility in Windows DVD and extract installer image to VHD>
    G:\sources\dism /apply-image /imagefile:G:\sources\install.wim /index:1 /applydir:O:\
    ** "G" is drive letter for Windows DVD
    ** "O" is drive letter for VHD partition
    <Write boot program into VHD>
    O:\windows\system32\bcdboot O:\windows /f ALL /s O:
    ** "O" is drive letter for VHD partition
    <Detach VHD>
    diskpart
    select vdisk file=C:\Temp\Win2go.vhd
    detach vdisk
    exit
    <Format USB thumb drive in NTFS>
    diskpart
    list disk
    select disk n (n is a number of USB thumb drive)
    clean
    create partition primary
    format fs=ntfs quick override
    active
    exit
    ** "E" is drive letter for USB thumb drive
    <Write loader into boot sector>
    G:\boot\bootsect /nt60 E:
    ** "G" is drive letter for Windows DVD
    ** "E" is drive letter for USB thumb drive
    <Copy VHD file to USB thumb drive and mount>
    copy C:\Temp\Win2go.vhd E:\
    diskpart
    select vdisk file=E:\Win2go.vhd
    attach vdisk
    exit
    <Write boot info into USB thumb drive>
    F:\Windows\system32\bcdboot F:\Windows /s E: /f ALL /v
    ** "E" is drive letter for USB thumb drive
    ** "F" is drive letter for VHD partition on USB thumb drive

  • MacBook Pro gives a blue screen when I try to start from a bootable usb stick

    Since yeasterday my MacBook Pro is refusing to startup. The starup proccess goes like Apple Logo, Spinning wheel, white dispaly and stops - freezes there.
    So I made a bootable usb stick and tried to boot from there so to be able to do a format and repair it. Also the recovery HD wont boot...
    When I start my Macbook Pro from the bootable usb stick it gives me a blue screen. I have tried to reset PRAM but nothing.
    I am attaching 2 images of the blue screen.
    Please help...!!!

    Guys thank you for your replies. I could boot in any way... I tried several things.
    Finally a friend managed to give me an Apple Hardware Test and it came with these results... Any ideas ?

  • Upgraded to osx lion via bootable USB stick but start up now just hangs on the grey apple screen

    Hi.  I've just recently upgraded from snow leopard to osx lion 10.7.3 on my laptop and it works perfectly! However I then tried installing on desktop and problems......
    1. I got the 'the error can't install message' so after researching' I made a bootable USB stick with lion on it.
    2. Installed on start up from bootable USB stick, no problems their.
    3. Restarted and it just hangs in the grey apple screen.
    I've reset the PRAM, started in safe mode, fixed disk permission etc, Even done this (http://hints.macworld.com/article.php?story=20070204093925888).
    I'm going to leave the grey screen over night to see if it does start up, but then we have the problem of an extremely slow start up.
    So.... I am posting this to find out if anyone else has this problem and fixed it without having to do a full clean install as some data like email lists etc I never backed up (I know stupid).
    Hope someone can help as i am lost on what else to try.
    HELP!?!?!?
    Dan.

    Update 01.03.12
    Computer is starting now but.... It takes 10 minutes and that is without my sound card, hardware and external hard drives plugged in, gonna test that now.
    Are their and fixes for slow start ups?
    Dan.

  • Creating a bootable USB stick (Windows/syslinux issue)

    Hi everyone,
    Lately I decided to install Arch on my new machine, using USB drive as there's no disc drive (out of fashion, all that stuff yk). After a ton of research at wiki I finally downloaded Arch ISO (so everything above is just a foreplay) and started my efforts to create a USB stick to boot from.
    Firstly, when trying with simple USB Writer, it gave me an error message "An error occurred while opening the target volume.", which I thought back then, was just the tool's issue. Then I moved straight to creating bootable USB manually, by downloading and installing syslinux. Everything went fine and according to wiki's scenario until, once again, third-party program ought to do something with external drive.
    At that stage, I'm getting syslinux' error message "Could not load drive: access is denied". Googling taught me that this, pretty obviously, happens when one's not running prompt as admin - but I am! Now I'm totally at a loss what to do.
    (What it says in the last line after re-encoding is "access is denied" in Russian, and the upper panel - that I'm running prompt as an admin)
    Stick details:
    A new one, was formatted with wiki-recommended Rufus USB partitioner, so that it's now FAT32, 4kb block size ARCH_201408.
    P.S.: Everything is done on another machine as the new one has only old XP on which I have no intention to work with.
    P.P.S.: Answering the registration question took me an hour, mostly 'cause of that the first online prompt didn't work with the command correctly, this thing is not Linux-newbie-friendly at all though I understand it might be meant to be so

    There are four methods listed in the wiki for writing the Arch install iso to a USB device under Windows. You have tried the first one, USBwriter, and ignored the other three.
    I'd suggest you try them all. You should also bear in mind that although the ISO you're using comes from Arch, the OS you're using does not, so any Windows issues that may affect what you're doing would be best addressed in a Windows forum.

  • How to bbot with bootable USB Stick with MSI Z77A-G43?

    Hello Guys,
    I tried every. single. feature. of that motherboard, but I couldn't boot from my USB Stick.
    USB Key is the first, still Windows starts every time...
    I changed the USB Stick, changed the programms to make it bootable, ...
    Fun Fact: Worked on every PC, just not on mine
    What to do?
    Thank you very much

    the USB key is bootable with ....?
    did you boot from USB key without UEFI in front? ie legacy

  • Windows USB Stick will not show up as a bootable volume

    I've been doing a ton of research on this and just can't seem to get it to work.  I recently bought a mac mini, the 2011 version with the Radeon video card.  I want to dual boot the machine using bootcamp and I have a windows 7 iso image.
    I  bought an 8GB usb 2.0 stick and ran the bootcamp assistant to create the usb stick.  When the mini reboots, it just displays a message saying there is no bootable volume.
    I tried setting the startup disk to the usb stick, but the only bootable volume was the mac hd.  I tried installing refit but the refit boot menu would only allow a boot into the mac hd or onto the windows partition that bootcamp created.
    I tried creating a bootable usb stick from windows and utilizing that, all to no avail.  The big issue, as i see it, is that when the mini boots, it absolutely does not see my usb stick, and so cannot boot to it.
    In theory, refit should show me one mac volume and two windows volumes (my windows partition on the mac hd and my usb stick).  It only shows one.  It there anything I can do to get my mini to recognize that I have a bootable usb stick?  I have a usb keyboard and usb mouse plugged in as well.  The OS that the mini is running is Lion and it is completely up to date.
    I've looked through the forums and seen nothing that seems to fix my issue.
    Thanks.

    Did you format your USB MS-DOS(FAT)?
    You can do that @ utility disk.

  • Can I install Windows 8.1 as Bootcamp partition from OSX Mountain Lion using a USB stick?

    I have the following:
    Bootable USB stick with Windows 8.1 - 64 bit
    MacBook Pro with Mountain Lion 10.8.5 - it's probably 3-4 years old.
    The Bootcamp partition currently has Windows 7 installed.
    I want to know whether I can install Windows 8.1 from a USB stick into a Bootcamp partition. Apple's article on the topic refers to Bootcamp 5.1, but my OSX install has Bootcamp 5.0 - I am assuming 5.1 comes with the Mavericks version.  I don't want to upgrade to Mavericks because I am running out of space as it is on the OSX partition.
    Thus my question. So can I?

    Your laptop has a DVD drive, right? If so you need to burn your ISO to a disc, will not work off USB

  • [SOLVED, kind of] UEFI bootable USB from ISO doesn't start

    Hi there,
    out of curiosity I wanted to create an UEFI bootable usb stick with the latest Archiso 2013.01.04. I've followed https://wiki.archlinux.org/index.php/UE … B_from_ISO
    and created two directories
    # mkdir -p /mnt/{usb,iso}
    Then I've mounted Archiso to /mnt/iso
    # mount -o loop Download/ISO-Images/archlinux-2013.01.04-dual.iso /mnt/iso
    After this I used cfdisk to create a FAT32 filesystem /dev/sdb1 on the usb stick, followed by
    # awk 'BEGIN {FS="="} /archisolabel/ {print $3}' /mnt/iso/loader/entries/archiso-x86_64.conf | xargs mkfs.vfat /dev/sdb1 -n
    Then I've mounted /dev/sdb1 to /mnt/usb and copied all iso-files there:
    # mount /dev/sdb1 /mnt/usb
    # cp -r /mnt/iso/* /mnt/usb
    Followed by:
    # umount /mnt/{usb,iso}
    # sync
    After rebooting and hitting F11 I was presented with the UEFI firmware-tool from which I can choose UEFI (and other) applications to start. I could choose my usb stick in UEFI mode, but - only the screen turned blank for the blink of a second and the UEFI tool was on again.
    Because my system is already booting in UEFI mode using rEFInd, I wanted to try rEFInd on the usb stick instead of gummiboot.
    Following https://wiki.archlinux.org/index.php/UE … B_from_ISO I've copied /usr/lib/refind/refind_x64.efi (from refind-efi 0.6.4-1) to /mnt/usb/EFI/boot/bootx64.efi and created a /mnt/usb/EFI/boot/refind.conf with this text:
    timeout 5
    textonly
    showtools about,reboot,shutdown,exit
    # scan_driver_dirs EFI/tools/drivers_x64
    scanfor manual,internal,external,optical
    scan_delay 1
    dont_scan_dirs EFI/boot
    max_tags 0
    default_selection "Arch Linux Archiso x86_64 UEFI USB"
    menuentry "Arch Linux Archiso x86_64 UEFI USB" {
      loader /arch/boot/x86_64/vmlinuz
      initrd /arch/boot/x86_64/archiso.img
      ostype Linux
      graphics off
      options "pci=nocrs add_efi_memmap archisobasedir=arch archisolabel=ARCH_201301"
    menuentry "UEFI x86_64 Shell v2" {
      loader /EFI/shellx64_v2.efi
      graphics off
    menuentry "UEFI x86_64 Shell v1" {
      loader /EFI/shellx64_v1.efi
      graphics off
    And yes, I've checked the "loader" and "initrd"-Paths - they are correct, as well as the archisolabel
    But - again - after rebooting and hitting F11 I could select my usb stick as UEFI boot device, but all that happened was the screen going blank for the glimpse of a second and returning to the UEFI chooser.
    Even my last attempt - keeping the original name refind_x64.efi in /mnt/usb/EFI/boot didn't help.
    Via efibootmgr I can see:
    $ sudo efibootmgr
    BootCurrent: 0001
    Timeout: 5 seconds
    BootOrder: 0001,0002,0007,0005,0006
    Boot0001* rEFInd 0.6.4-1
    Boot0002* rEFInd_recover
    Boot0005* Hard Drive
    Boot0006* USB
    Boot0007* UEFI: TOSHIBA TransMemory PMAP
    with "Boot0007" as my usb stick.
    So my question is: Did I miss something or have I found a bug ?
    Last edited by swordfish (2013-01-13 12:43:33)

    Hm, funny thing - now it's working, but I don't know why
    I've tried to convert the partition table of the usb stick from MBR to GPT using cgdisk. There I had a problem with setting the partition type to EF00. It worked under cgdisk, but then I couldn't mount my usb stick (dev/sdb1) anymore to /mnt/usb. Then I've tried to set the partition type to vfat, but couldn't identify what is vfat under cgdisk . I've tried different types of "Windows" but whatever I tried, the usb stick won't mount on /mnt/usb.
    Journalctl always says:
    Jan 13 12:23:03 sushi sudo[727]: nihonto : TTY=pts/0 ; PWD=/home/nihonto ; USER=root ; COMMAND=/usr/bin/cgdisk /dev/sdb
    Jan 13 12:23:03 sushi sudo[727]: pam_unix(sudo:session): session opened for user root by nihonto(uid=0)
    Jan 13 12:23:11 sushi sudo[727]: pam_unix(sudo:session): session closed for user root
    Jan 13 12:24:00 sushi su[972]: (to root) nihonto on /dev/pts/0
    Jan 13 12:24:00 sushi su[972]: pam_unix(su:session): session opened for user root by nihonto(uid=1000)
    Jan 13 12:24:18 sushi kernel: loop: module loaded
    Jan 13 12:24:18 sushi kernel: ISO 9660 Extensions: RRIP_1991A
    Jan 13 12:24:35 sushi kernel: EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
    Jan 13 12:24:35 sushi kernel: EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
    Jan 13 12:24:35 sushi kernel: EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
    Jan 13 12:24:35 sushi kernel: FAT-fs (sdb1): bogus number of reserved sectors
    Jan 13 12:24:35 sushi kernel: FAT-fs (sdb1): Can't find a valid FAT filesystem
    Jan 13 12:24:35 sushi kernel: ISOFS: Unable to identify CD-ROM format.
    So I tried it again with cfdisk which nagged about "unsupported GPT" but kept working. This time I choose "0C W95 FAT32 (LBA)" as partition type - maybe this did the trick because in my earlier attempts I did choose "0B W95 FAT32".
    Anyway - after following the advice stated in https://wiki.archlinux.org/index.php/UE … B_from_ISO and installing rEFInd to the usb stick I could boot the usb stick in UEFI mode
    But - as I said earlier - I don't know what did the trick
    Last edited by swordfish (2013-01-13 12:38:18)

  • How to recover notebook with Recovery DVD's instead of USB-stick?

    I've ordered a Recovery kit from hp.com for my Compaq Mini 110c.
    Apperantly HP sends DVD's to recover notebooks... I don't know if they know it, but there is no DVD-player in a notebook.
    To order a recovery kit, I had to fill in a sheet with my model number and serial number. So they should know what kind of system I have. But OK, let's get to the point.
    First of all, my keyboard doesn't work, my trackpad only works when I didn't touch my keyboard after reboot. If I press any key the trackpad doesn't work anymore and I have to connect my USB mouse. And I cannot connect to my wireless network.
    I've had a stupid virus on this notebook and I think that's why its acting strange.
    Before ordering the recovery kit, I tried formatting my system with a default Windows XP disk (after copying it to a bootable USB stick). I managed to get to the setup menu in XP, but apperantly the SATA-disks in my notebook are not recognized by the WinXP setup.
    I don't have a legal Windows Vista or higher version available.
    So I've ordered the recovery kit from HP. When I try to make a bootable HDD with the recovery DVD's, I get a warning that some file on the DVD was not found.
    I'm a bit out of ideas to recover my notebook.
    Any help or remarks would be great...

    Hi Thom,
    There are Two options available.
    1.  You can order a replacement set of Recovery Discs using the link below - these will reinstall the operating system, all required drivers and nearly all of the original software ( the exception often being trials of MS Office ).
    Order HP Recovery Discs.

  • Elitebook 8460p only boots from two specific USB sticks

    My Elitebook 8460p boots perfectly normally from HDD but will ONLY boot from two specific USB sticks - 1. A Windows Recovery USB and 2. A Parted Magic USB stick which is a commercial partition recovery/imaging utility - it will NOT boot from ANY OTHER USB stick at all.It'll boot from a CD/DVD. What I would like to know is why it won't boot from any other bootable USB stick at all other than those two?

    That is because the other usb sticks you have tried have not been made properly bootable. Check the partition type on the sticks that work. Do they have a uefi partition or are they just MBR partitions that are active? Use Windows own disk management snapin to investigate the usb sticks.

Maybe you are looking for