Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DOS...

Status
Not open for further replies.

jasony

Programmer
Joined
Jan 13, 1999
Messages
18
Location
US
I need to reinstall Win98, but must first back up all of my email to my &quot;D&quot; drive. The problem is that I cannot get into Windows, so I need to find these files, and copy them to &quot;D&quot; in DOS. Does anyone know where these files are, what the file extensions are, and how i get them to copy to &quot;D&quot; ?? I am using Outlook Express, and win98se if it means anything.<br>
<br>
Thanks,<br>

 
You should find them in C:\windows\application data\microsoft --- somewhere in there. Sorry I don't have a 98 machine to give you the exact place, but hopefully that helps.
 
I am using win98 se and outlook express 5.<br>
Sorry if this is to simple I am not sure what you do or do not need to know<br>
My e-mail files are stored:<br>
<br>
C:\WINDOWS\Application Data\Identities\*******\Microsoft\Outlook Express<br>
<br>
<br>
The above ***** will be numbers and letters unique to your id. There should be .dbx files that have your sent, drafts, folders, deleted, etc. I would backup the full directory.<br>
To copy in dos. First go to the directory ( I assume your at a dos prompt now)<br>
cd C:\WINDOWS\Application Data\Identities\*******\Microsoft\Outlook Express<br>
<br>
Say you want the files to go to d:\bkupmail<br>
type <br>
d: enter(this takes you to d drive)<br>
<br>
md d:\bkupmail (this makes a directory on your d drive)<br>
<br>
type while in the directory you want to copy from:<br>
copy *.* d:\bkupmail\*.*<br>
the above command will copy the files from the c: to the d:<br>
<br>
type d:<br>
type cd d:\bkupmail<br>
type dir (When you type dir this will list the files in this folder probably a good idea to make sure they copied). <br>
<br>
? when you reinstall win98 are you going to format the hard drive or fdisk?<br>
Is your d drive a partition or second physical drive? Depending on what you are doing you may want to back up your data on a tape drive or some other backup device.<br>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top