SysOpt Forums

System Optimization and PC Performance

[ Home | News | Features | User Reviews | Overclocking | Benchmarks | About Us | Forum FAQ

Go Back   SysOpt Forums > General Tech > Technical Support

Technical Support Have a technical problem? Can't get your PC to boot, a modem to be recognized, or drivers to install? This is the place to ask your questions.

Reply
 
Thread Tools Search this Thread Display Modes
Old 09-18-2002, 10:27 PM   #1
FZWG
Senior Member
 
FZWG's Avatar
 
Join Date: Jul 2000
Location: Illinois, USA
Posts: 506
TBRDINIT.BAT??

Appreciate some assistance.

Started the computer in MS-DOS mode, and a duplicate remark appeared right above the Command prompt.

The duplicate remarks read as follows:

C:\>
C:\> IF EXIST C:\TBRDINIT.BAT CALL C:\TBRDINIT.BAT

Tried to track some info about the remark, and it appears to be associated with SC706 Acoustic Edge. Do have a Philips Rhythmic Edge sound card installed, but do not know what this remark is associated with.

Autoexec.bat and Config.sys do not have any entries dealing with this.

Any suggestions as to how to get rid of this remark?

Thank you in advance for your help.

FZWG is offline   Reply With Quote
Old 09-18-2002, 10:43 PM   #2
AllGamer
Kaameehameeehaaa!
 
AllGamer's Avatar
 
Join Date: Feb 2001
Location: On Line
Posts: 16,261
Quote:
C:\> IF EXIST C:\TBRDINIT.BAT CALL C:\TBRDINIT.BAT
is very simple
as you can read

it's 1st checking to see if that file is really there

and if it's then it runs it

but if it's not then it''ll simply ignore and skip
AllGamer is offline   Reply With Quote
Old 09-18-2002, 10:59 PM   #3
FZWG
Senior Member
 
FZWG's Avatar
 
Join Date: Jul 2000
Location: Illinois, USA
Posts: 506
Thanks for your reply.

Do understand the line: it it is there, call it; if not, forget it... sort of thing.

The line is in C:\WINDOWS\DOSSTART.BAT

Can it just be given a good ol' delete, or do I need to follow a DOS protocol?
FZWG is offline   Reply With Quote
Old 09-19-2002, 02:07 AM   #4
rangeral
Moderator
 
rangeral's Avatar
 
Join Date: Oct 1999
Location: staten is.,ny
Posts: 4,583
Put a semi-colon in front of it like this

; C:\> IF EXIST C:\TBRDINIT.BAT CALL C:\TBRDINIT.BAT

then see if system functions normally if it does then you can delete or leave as is in case you need it in the future, the semi-colon will put a stop on the line so it doesn't run.
__________________
HOCKEY RULES!
rangeral is offline   Reply With Quote
Old 09-19-2002, 07:02 AM   #5
Steve R Jones
Assistant Admin
 
Steve R Jones's Avatar
 
Join Date: May 1999
Location: Dallas, Tx
Posts: 4,672
Might edit the bat file and see what it does or wants to do.
Steve R Jones is offline   Reply With Quote
Old 09-19-2002, 03:59 PM   #6
FZWG
Senior Member
 
FZWG's Avatar
 
Join Date: Jul 2000
Location: Illinois, USA
Posts: 506
Deleted the file, after saving it to a floppy disk.
Just in case....

Thanks much for the help.

FZWG is offline   Reply With Quote
Old 09-19-2002, 05:23 PM   #7
Strawbs
Ultimate Member
 
Strawbs's Avatar
 
Join Date: Sep 2001
Posts: 4,702
looks almost like "T'Bird Initiation"
__________________
Strawbs is offline   Reply With Quote
Old 09-19-2002, 05:49 PM   #8
AllGamer
Kaameehameeehaaa!
 
AllGamer's Avatar
 
Join Date: Feb 2001
Location: On Line
Posts: 16,261
Quote:
Originally posted by rangeral
Put a semi-colon in front of it like this

; C:\> IF EXIST C:\TBRDINIT.BAT CALL C:\TBRDINIT.BAT

then see if system functions normally if it does then you can delete or leave as is in case you need it in the future, the semi-colon will put a stop on the line so it doesn't run.
actually in a .bat

is REM instead of ;

AllGamer is offline   Reply With Quote
Old 09-20-2002, 03:29 AM   #9
rangeral
Moderator
 
rangeral's Avatar
 
Join Date: Oct 1999
Location: staten is.,ny
Posts: 4,583
Yes your rite semi-colon you'd use in .ini and .sys, forgot to think about the basic autoexec.bat file and rem to remind me.
__________________
HOCKEY RULES!
rangeral is offline   Reply With Quote
Old 09-20-2002, 05:30 AM   #10
ukulele
Gone Fishin'
 
ukulele's Avatar
 
Join Date: Aug 2001
Location: Southern Most Point in US
Posts: 6,257
You could do a search for C:\TBRDINIT.BAT. If it doesn't exist then you obviously dont need the pointer.
ukulele is offline   Reply With Quote
Old 09-20-2002, 06:36 AM   #11
Psycho Logical
Senior Member
 
Join Date: Jul 2001
Location: Wisconsin, U S A
Posts: 666
Re: TBRDINIT.BAT??

Quote:
Originally posted by FZWG
Started the computer in MS-DOS mode, and a duplicate remark appeared right above the Command prompt

C:\>
C:\> IF EXIST C:\TBRDINIT.BAT CALL C:\TBRDINIT.BAT.
The first prompt is the normal response to Start > Shutdown > Restart in MS-DOS mode > OK

The next line is a statement that is contained in the DOSSTART.BAT file, which -- if present in the Windows folder -- will always run when you restart in this way.

The IF EXIST statement is displayed on the screen because that statement has executed and exited successfully.

Since no errror message is displayed, this also means that the TBRDINIT.BAT file does in fact exist, and it processed its own statement(s) and exited to the final Command prompt, also without an error.

The next question is: What is in the TBRDINIT.BAT?

Most probably it contains statements that set up the sound card for use in DOS. If you do need to have sound in DOS, those statements must execute.

If the real problem is that you just don't want the IF EXIST statement to appear on the screen, but still do want the file to run, you can edit the file and put @ ECHO OFF on a separate line before (above) the IF EXIST line.
Psycho Logical is offline   Reply With Quote
Old 09-20-2002, 07:06 AM   #12
Psycho Logical
Senior Member
 
Join Date: Jul 2001
Location: Wisconsin, U S A
Posts: 666
Quote:
Originally posted by AllGamer
actually in a .bat

is REM instead of ;
Actually, in a batch file you can use REM or ::(double colon)

Putting "REM" before a line has a major limitation when that line also contains a pipe (|)and/or a redirect symbol ( >, <, or >>). It can cause problems because of the way the command processor (Command.com) deals with such lines.

The double colon prevents this by creating a label with a colon as the first character. Although Command.com treats it as a label, GOTO does not, so there is no chance of confusing a label and remark.
Psycho Logical is offline   Reply With Quote
Old 09-20-2002, 01:34 PM   #13
FZWG
Senior Member
 
FZWG's Avatar
 
Join Date: Jul 2000
Location: Illinois, USA
Posts: 506
Thanks for the replies.

Also, thank you for the DOS 'education'.

From what you are telling me, if the file is placed back where it was, the @echo would preclude it from appearing on the screen.

Don't know that I'll ever need sound in DOS. Not a gamer. However this is good info to keep for future reference.

Thanks again.

FZWG is offline   Reply With Quote
Old 09-20-2002, 01:40 PM   #14
ukulele
Gone Fishin'
 
ukulele's Avatar
 
Join Date: Aug 2001
Location: Southern Most Point in US
Posts: 6,257
Quote:
Don't know that I'll ever need sound in DOS
Your right about that. When you install most sound cards you are given an option to install DOS support. I just say no cause I don't play any DOS games anyway.
ukulele is offline   Reply With Quote
Old 09-20-2002, 02:08 PM   #15
FZWG
Senior Member
 
FZWG's Avatar
 
Join Date: Jul 2000
Location: Illinois, USA
Posts: 506
FZWG is offline   Reply With Quote
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
Forum Jump


All times are GMT -4. The time now is 12:57 PM.


  • Weekly CPU Prices for February 5, 2010
  • Weekly CPU Prices for January 29, 2010
  • Weekly CPU Prices for January 22, 2010
  • Weekly CPU Prices for January 15, 2010
  • Weekly CPU Prices for January 8, 2010
  • Weekly CPU Prices for December 31, 2009
  • Weekly CPU Prices for December 25, 2009
  • Weekly CPU Prices for December 18, 2009




    IBM Power7: Big Blue's Answer to Oracle, Intel
    Chip Stocks Stabilize as Market Fall Continues
    Mozilla Firefox to Drop Support of Mac OS X 10.4
    SAP's CEO Ouster Latest Indication of Troubles
    Oracle Adds SOA Depth with AmberPoint Deal
    Cisco Aims to Simplify Datacenter Migrations
    Google Earns High Marks for Super Bowl Ad
    Investors Unimpressed With NetSuite's Q4
    Facebook Says Adios to Microsoft Banner Ads
    Why Red Hat Had to Pull the Plug on Exchange


  • Acceptable Use Policy


    The Network for Technology Professionals

    Search:

    About Internet.com

    Legal Notices, Licensing, Permissions, Privacy Policy.
    Advertise | Newsletters | E-mail Offers


    Powered by vBulletin® Version 3.7.3
    Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
    Copyright 2002 Jupitermedia Corporation