Author Topic: Help with index.dats  (Read 911 times)

Marinoman

  • Newbie
  • *
  • Posts: 9
  • Kudos: 0
Help with index.dats
« on: 15 March 2002, 16:14 »
When I open a ms-dos prompt and type in this code it opens the index.dat :
Code: [Select]
But when I restart in DOS MODE and type:
Code: [Select]
Content.ie5 opens but index.dat says bad command or filename. What am I doing wrong? Also, I am using WinME.

[ March 15, 2002: Message edited by: Marinoman ]

Dan Marino is the MAN!!

badkarma

  • VIP
  • Member
  • ***
  • Posts: 497
  • Kudos: 0
Help with index.dats
« Reply #1 on: 15 March 2002, 17:30 »
the edit command isn't in your path, find the edit command and use the full path to start (something like c:\windows\system\olddos\edit)

you can also edit your autoexec.bat and add the line PATH=%PATH%:[path to edit program]

[ March 15, 2002: Message edited by: BadKarma ]

If you can't learn to do something well, learn to enjoy doing it poorly.

Marinoman

  • Newbie
  • *
  • Posts: 9
  • Kudos: 0
Help with index.dats
« Reply #2 on: 15 March 2002, 21:58 »
When I type the edit command to open index.dat from a MS-Dos Prompt while windows is loaded it opens. But when I type the command in MS-Dos index.dat wont open.
Dan Marino is the MAN!!

Centurian

  • Member
  • **
  • Posts: 235
  • Kudos: 0
    • http://www.darkmares.2ya.com
Help with index.dats
« Reply #3 on: 16 March 2002, 01:06 »
Hey,

 
quote:
Originally posted by Marinoman:
When I type the edit command to open index.dat from a MS-Dos Prompt while windows is loaded it opens. But when I type the command in MS-Dos index.dat wont open.


Like BadKarma explained to you, you will need edit.com in your path.

Ok very simply in windows your path is C:\windows;C:\Windows\command; add other paths here.

Edit.com lives in C:\windows\command\

In dos you have to define your path. To do that you will need to change your autoexec.bat and your autoexec.dos files.

So Open Notepad.
Now go to C:\
If they exist get Autoexec.bat and add this line.
Path=%PATH%;C:\windows;C:\Windows\command
Then save it and get Autoexec.dos and do the same thing.

If they dont exist then make them with that line.

The %PATH% adds anything already in the path to your path before adding the additions. So if you have your sound blaster path set at PATH=C:\SB
then %PATH% adds that prior to adding the new path additions.

Now reboot your computer.

Then you should have no problems finding Edit.com.
To test this after rebooting just type Path at the dos Prompt. If everything I said above is correct your screen would look like this.

C:>PATH
C:>C:\SB;C:\Windows;C:\Windows\Command
Now since Edit.com is in the Windows\command directory typing Edit from anywhere will bring up edit.com.

Does that clear it up?
Later
Centurian

Marinoman

  • Newbie
  • *
  • Posts: 9
  • Kudos: 0
Help with index.dats
« Reply #4 on: 16 March 2002, 03:22 »
Okay Centurian, I'll try that. Thanks.
Dan Marino is the MAN!!