Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development


Reply
 
Share Thread Tools Display Modes
Old 04-05-2003, 02:44 PM   #1
Registered User
 
Join Date: Apr 2002
Location: Charlotte, NC
Posts: 315
bombboyer
Using DOS and 98 at once, can I toggle at boot time with a keypress?

Here's my dilemma: I like Win98 because of Winamp/plugins, some auto-sync software I have, as well as networking support. Unfortunatly, the boot time kills me. I want to go to DOS, but I don't want to give up my networking and file-syncing.

I'd like to use MPXPlay most of the time for playing songs, but I'd like to have Windows for maintenance.

Is there anyway I could install 98 set it to boot into DOS normally, but boot Windows if I held a certain button during boot?

Remember that I'm using a numeric keypad and a character LCD.
__________________
Silver 1999 Nissan Pathfinder!
Completion: [*********-] 90%
Everything working! Mobile MP3s ROCK!
LEFT TO DO: Improve power on circuit, fix slow boot time

- 550mhz PIII on Abit BH6
- 128MB RAM
- 40x4 Backlit Character LCD
- 17 key numeric keypad - Repainted buttons
- 2.1GB laptop drive for OS
- 4.3GB drive for MP3s

http://www.mp3car.com/usersites/bombboyer/ Redesigned, new pics!
bombboyer is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 04-05-2003, 09:17 PM   #2
Low Bitrate
 
Join Date: Feb 2001
Posts: 78
bh76
If you have Tweakui, open it up, then goto the startup tab. Uncheck "Start GUI Automatically".
(If you don't have Tweakui, then you'd need to edit msdos.sys and change bootgui=1 to bootgui=0)

Once this is done, the computer will boot into Dos by default. Windows can then be launched by typing "win".
One way to automate this process would be to edit the autoexec.bat and add the following lines to the end:

CHOICE /N /C:12 /T:1,5 Boot Into Windows? [1-No, 2-Yes]
IF ERRORLEVEL == 1 GOTO END
WIN
:END


In this example the choices are 1&2, the default choice is 1 with a timeout of 5 seconds

This should get you started. It won't display anything on the lcd. For that you'd need to use a third party program, like LCDPrint.
__________________
http://thecoldfront.com
bh76 is offline   Reply With Quote
Old 04-06-2003, 01:21 PM   #3
Registered User
 
Join Date: Apr 2002
Location: Charlotte, NC
Posts: 315
bombboyer
How could I make it call LCDprint every second while it's waiting? Kind of like a countdown:

5 seconds remaining
4 " "
3 " "

etc...

and then at any time I could enter 1 or 2 and enter, just so i know when I have to press it.

I can handle working LCDprint, but I need help with the batch file.
__________________
Silver 1999 Nissan Pathfinder!
Completion: [*********-] 90%
Everything working! Mobile MP3s ROCK!
LEFT TO DO: Improve power on circuit, fix slow boot time

- 550mhz PIII on Abit BH6
- 128MB RAM
- 40x4 Backlit Character LCD
- 17 key numeric keypad - Repainted buttons
- 2.1GB laptop drive for OS
- 4.3GB drive for MP3s

http://www.mp3car.com/usersites/bombboyer/ Redesigned, new pics!
bombboyer is offline   Reply With Quote
Old 04-06-2003, 03:05 PM   #4
jol
FLAC
 
jol's Avatar
 
Join Date: Jan 2002
Location: Mellansel, Sweden
Posts: 1,299
jol is on a distinguished road
I would have a floppy with autoexec.bat that has "win" in the end, so it would boot dos w/o the floppy, and windows with it in
__________________
-
My cars
-
jol is offline   Reply With Quote
Old 04-06-2003, 04:03 PM   #5
Low Bitrate
 
Join Date: Feb 2001
Posts: 78
bh76
You could try something like this:


ECHO Boot Into Windows? [1-No, 2-Yes]
REM Add lcdprint here
CHOICE /N /C:012 /T:0,1 (5)
IF ERRORLEVEL == 3 GOTO WIN
IF ERRORLEVEL == 2 GOTO DOS
REM Add lcdprint here
CHOICE /N /C:012 /T:0,1 (4)
IF ERRORLEVEL == 3 GOTO WIN
IF ERRORLEVEL == 2 GOTO DOS
REM Add lcdprint here
CHOICE /N /C:012 /T:0,1 (3)
IF ERRORLEVEL == 3 GOTO WIN
IF ERRORLEVEL == 2 GOTO DOS
REM Add lcdprint here
CHOICE /N /C:012 /T:0,1 (2)
IF ERRORLEVEL == 3 GOTO WIN
IF ERRORLEVEL == 2 GOTO DOS
REM Add lcdprint here
CHOICE /N /C:12 /T:1,1 (1)
IF NOT ERRORLEVEL == 2 GOTO DOS
:WIN
REM Add lcdprint here
WIN
GOTO END
:DOS
REM Add lcdprint here
:END


It's kind of repetitive but it should work. I don't know of any way to get "choice" to handle the enter key, though.
__________________
http://thecoldfront.com
bh76 is offline   Reply With Quote
Old 04-07-2003, 07:17 AM   #6
Maximum Bitrate
 
MikeHunt79's Avatar
 
Join Date: Aug 2001
Location: Cambridge & Bristol, UK
Posts: 707
MikeHunt79
i simply have a file called "1.bat" that simply contains the line:

win

So i only have to hit 1 and enter if i want 98.
__________________
My Setup
MikeHunt79 is offline   Reply With Quote
Old 04-07-2003, 09:41 AM   #7
Low Bitrate
 
Join Date: Aug 2002
Posts: 75
prerunnerv6
Like Mikehunt said, a batch file would work.

Note: I believe that MPXPLAY uses "1.bat" for the soundblaster card. So you would have to give it another number.

If you don't have the "Tweak" program and you want to edit the msdos.sys file, remember you may have to use the "attrib" command to get to it.

I believe it's "attrib msdos.sys -h -r -s" .

I use mpxplay so that's what I remember having to do.
prerunnerv6 is offline   Reply With Quote
Old 04-08-2003, 12:13 AM   #8
Maximum Bitrate
 
Join Date: Dec 1999
Location: Buena Park, CA
Posts: 468
AVGeek
When I was using MPXPlay, there were no preassigned batch files. I had 1.bat and 2.bat, with 1.bat running MPXPlay without preloading ID3 Tags (quick boot time), and 2.bat scanning and loading all songs into the default playlist (this is how I handled song updates). I also ran Win98 in DOS mode, and used 0.bat to enter the Windows GUI for networking and file maintenance, as I only used a numeric keypad in the truck.
__________________
KG6OQD
www.americansandassociation.org
AVGeek is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




All times are GMT -5. The time now is 04:13 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.0
Copyright © 1999 - 2008 Mp3Car.com Inc.
"VaultWiki" powered by VaultWiki v2.5.2.
Copyright © 2008 - 2009, Cracked Egg Studios.Ad Management by RedTyger
Message Board Statistics