Hi Dave,
unfortunately there is no such list (at least I don't know of one) - and if you google for something like 'how to boot windows 7 from a usb stick' you'll get pretty much the same answers.
However, for you, I'd suggest:
- try the 'working' stick again, but at first use windows to check its integrity (in windows explorer, right-click the stick, select properties, tools, integrity check) - maybe there is just a 'smaller' error on the stick. After this, format the stick, run the recovery creator, and try again.
- if this doesn't work, try to get another stick. It's really only a guess, but currently I'd go for a 2GB one, or a 4 GB one - but not bigger. Maybe someone else can share his experience with larger sticks.
- and finally, and only if you feel confident with your computer, you might use diskpart to shrink your larger stick, to try this:
start diskpart (hit the windows key and type diskpart, then ENTER. confirm the UAC warning. A black console window starts.) And now:
Please make damn sure you select the correct disk - otherwise you might loose all data on your computer!!!
list disk - and find the disk number of the stick
select disk x - where x is the number you found in the previous step
clean -
this flushes everything on the stick
create partition primary size=4000 - create a new partition, slightly smaller than 4gb
select partition 1 - select the created partition
active - activate it
format fs=fat32 - format it; this will take a while
assign - populate it to Windows
exit - quit Diskpart
This way, you shrink the stick - and at least I could successfully use the Pearl Recovery Creator to make this stick ready to install a Pearl Expert from it.
I tried to translate the 'answers' of the program to english:
Code: Select all
Microsoft DiskPart-Version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
Auf Computer: SB-LENOVO
DISKPART> list disk
Datenträger ### Status Größe Frei Dyn GPT
--------------- ------------- ------- ------- --- ---
Datenträger 0 Online 465 GB 0 B
Datenträger 1 Online 7650 MB 0 B
DISKPART> select disk 1
Disk 1 is selected
DISKPART> clean
Disk cleaned.
DISKPART> create partition primary size=4000
Partition successfully created.
DISKPART> select partition 1
Partition 1 is selected.
DISKPART> active
Current partition labeled as active.
DISKPART> format fs=fat32
100 percent done.
DiskPart has succeeded formating the volume.
DISKPART> assign
Drive Letter assigned
DISKPART> exit