creating bootable USB

Try looking for help here if you are having problems with the Ultimate Boot CD.

Moderators: Icecube, StopSpazzing

Locked
Message
Author
Disker
Posts: 1
Joined: Sat Sep 27, 2008 4:06 pm

creating bootable USB

#1 Post by Disker » Sat Sep 27, 2008 4:10 pm

High everyone!

I read in the description of the 4.1.1 version that there is a script for creating a bootable USB stick with UBCD on it. For the life of me I can't find it so if someone can point me in the right direction I would appreciate it.

Thanks! :D

StopSpazzing
Posts: 462
Joined: Tue Sep 09, 2008 4:37 pm
Location: California, USA
Contact:

#2 Post by StopSpazzing » Sat Sep 27, 2008 11:27 pm

This is where its located after extracting it:..\tools\ubcd2usb

I made a bat file that helps build the usb.

Here is my batch file:

Code: Select all

echo off
cd d:\ubcd\tools\ubcd2usb
ubcd2usb d:\ubcd i:
You will HAVE to change it to your location of your ubcd folder location AND change "I:" to your usb drive letter. It doesnt like spaces....just a warning.


For some odd reason my usb builds never work right and get boot errors...so if after making the usb you get errors go here:
http://www.pendrivelinux.com/2006/03/25 ... sb-device/
Works fine...you just have to build the iso then run that app they give you.
~Just StopSpazzing~

Visit the UBCD Wiki: http://wiki.ultimatebootcd.com
Please check your UBCD ISO MD5 Hash Sum; May prevent issues later on by not having an exact copy.

Currently Working on Common Issues and Repair Tips on the Wiki.

Icecube
Posts: 1278
Joined: Fri Jan 11, 2008 2:52 pm
Contact:

#3 Post by Icecube » Sun Sep 28, 2008 3:58 pm

@ StopSpazzing
Use quotes to make it possible to use spaces in the paths.

Code: Select all

echo off
cd "d:\ubcd extract\tools\ubcd2usb"
ubcd2usb "d:\ubcd extract" i:

StopSpazzing
Posts: 462
Joined: Tue Sep 09, 2008 4:37 pm
Location: California, USA
Contact:

#4 Post by StopSpazzing » Tue Oct 28, 2008 9:40 pm

Icecube wrote:@ StopSpazzing
Use quotes to make it possible to use spaces in the paths.

Code: Select all

echo off
cd "d:\ubcd extract\tools\ubcd2usb"
ubcd2usb "d:\ubcd extract" i:
Yeah, I kinda realized that..and I knew that but wasnt thinking clearly at the time of posting.
~Just StopSpazzing~

Visit the UBCD Wiki: http://wiki.ultimatebootcd.com
Please check your UBCD ISO MD5 Hash Sum; May prevent issues later on by not having an exact copy.

Currently Working on Common Issues and Repair Tips on the Wiki.

Locked