Question

Failed DOS MOVE command - Bad destination path - Wheres my files?

Asked by: bcombe

I made a batch file with a move command per line.
MOVE X:\OrginPath Y:\DestinationPath
The destination path was incorrect. The files are gone from the orgin directory.

Are the files irretreveable ? Are the files pages somewhere in RAM or buffered on disk in some normally invisible system 'folder' ? Any options at all?

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-04-06 at 11:30:41ID24299255
Tags

Batch files DOS

Topic

MS DOS

Participating Experts
4
Points
500
Comments
29

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. BATCH FILE
    Hi Does anyone know how to fire a PHP script using a BATCH file? Thanks
  2. Batch File
    Hi... I'm trying to create a batch file that is supposed to check a directory for specific file extensions and then delete them or move them to a different folder. After that it is supposed to send a message to the administrator or send an email to the administrator. Is t...
  3. Batch file to create and copy from paths in a CSV file.
    Hello. I have a CSV file that contains Source path and Destination Path info. I wish to write a batch file that will use the CSV file to: 1) Create the Destination directory (if it doesn't exist) 2) Physically copy the Source file to the corresponding Destination directory....

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: sirbountyPosted on 2009-04-06 at 11:42:08ID: 24080367

Check the directory - if it has a space -odds are it's in the first portion of that foldername...
Example:

Move c:\data\*.* f:\my data\

would potentially be in f:\my folder

Always enclose your directories with quotes to prevent this:

move "C:\data\*.*" "f:\my data\"

 

by: sirbountyPosted on 2009-04-06 at 11:42:21ID: 24080372

You can also perform a search - they'll turn up...

 

by: bcombePosted on 2009-04-06 at 12:21:26ID: 24080782

did a search without luck - also no spaces in the origin or destination paths

Any other ideas?

 

by: sirbountyPosted on 2009-04-06 at 12:22:37ID: 24080793

Can you post the paths that you used?

 

by: t0t0Posted on 2009-04-06 at 20:59:48ID: 24083854

I'm afraid the worst thing you could possibly do is to copy a bunch of files to a non-existent directory followed by a block-delete, because DOS simply interprets the non-existent directory name as a filename and you end up with just a single file being just a copy of the last file copied and all your files gone forever!

But the MOVE command doesn't let DOS do that anymore - thankfully. Also, MOVE won't attempt to move files or directories to a bad path so, if you inadvertently attempt to move C:\TEMP to D:\MY TEMP FILES (without using double-quotes) then MOVE will refuse to move your files if D:\MY does not exist.

As far as I am aware, it's safe to say if you simply move your files and not follow the MOVE command with a DELETE command (thinking the files are 'copied' to a 'bad' location and forcing a delete because they were still there) then the files are still somewhere on your system.

The question that now remains is, what was the actual MOVE command you used to move your files?

Finally, although not obvious, have you tried Windows' search facility to search for the files by specifying at least one known filename you can actually remember?

You can also do this from a DOS command line such as:

   DIR /s c:\"My File.txt"

if amongst the files you've lost, one of them is named 'My File.txt'. On the other hand, if you've lost a bunch of MP3 files then you could used:

   DIR /s c:\*.MP3

In both cases, DIR will search the whole of drive C: for the file/s. You can substitute the 'c:\' for any other drive letter such as 'd:\' or 'e:\' or whatever.

One final point. If your files are HDDEN - that is, their 'hidden' attributes are set, then DIR /S on it's own will fail to find it in which case you can use any of the two commands (I actually prefer the ATTRIB command myself):

   DIR /ah /s "c:\My File.txt"

or

   ATTRIB /s "c:\My File.txt"

or in the case of a bunch of MP3 files:

   ATTRIB /s c:\*.MP3


Best of luck!

 

by: t0t0Posted on 2009-04-06 at 21:03:11ID: 24083866

Re-posted due to typing error:

I'm afraid the worst thing you could possibly do is to copy a bunch of files to a non-existent directory followed by a block-delete, because DOS simply interprets the non-existent directory name as a filename and you end up with just a single file being just a copy of the last file copied and all your files gone forever!

But the MOVE command doesn't let DOS do that anymore - thankfully. Also, MOVE won't attempt to move files or directories to a bad path so, if you inadvertently attempt to move C:\TEMP to D:\MY TEMP FILES (without using double-quotes) then MOVE will refuse to move your files if D:\MY does not exist.

As far as I am aware, it's safe to say if you simply move your files and not follow the MOVE command with a DELETE command (thinking the files are 'copied' to a 'bad' location and forcing a delete because they were still there) then the files are still somewhere on your system.

The question that now remains is, what was the actual MOVE command you used to move your files?

Finally, although not obvious, have you tried Windows' search facility to search for the files by specifying at least one known filename you can actually remember?

You can also do this from a DOS command line such as:

   DIR /s "c:\My File.txt"

if amongst the files you've lost, one of them is named 'My File.txt'. On the other hand, if you've lost a bunch of MP3 files then you could used:

   DIR /s c:\*.MP3

In both cases, DIR will search the whole of drive C: for the file/s. You can substitute the 'c:\' for any other drive letter such as 'd:\' or 'e:\' or whatever.

One final point. If your files are HDDEN - that is, their 'hidden' attributes are set, then DIR /S on it's own will fail to find it in which case you can use any of the two commands (I actually prefer the ATTRIB command myself):

   DIR /ah /s "c:\My File.txt"

or

   ATTRIB /s "c:\My File.txt"

or in the case of a bunch of MP3 files:

   ATTRIB /s c:\*.MP3


Best of luck!

 

by: bcombePosted on 2009-04-06 at 21:44:04ID: 24084006

thanks t0t0 - I did use on an XP pro box a DOS batch file with each line of the form:

MOVE "X:\OrginPath\File01.abc" "Y:\DestinationPath\"
MOVE "X:\OrginPath\File02.abc" "Y:\DestinationPath\"
MOVE "X:\OrginPath\File03.abc" "Y:\DestinationPath\"

The destination path didn't exist and - like you said - all I have is a mystery "file".
Looks bad, eh?

 

by: bcombePosted on 2009-04-06 at 21:47:50ID: 24084027

SirBounty - I'll post the specific paths tomorrow back at office but they were environmentally contextual - one was an internal drive - the other, the destination, was on an external drive. Drive letters used in both paths.

 

by: t0t0Posted on 2009-04-06 at 22:07:35ID: 24084113

If you explicitly specified:

    MOVE "X:\SourcePath\SourceFile.ext" "Y:\DestinationPath\"

then unless "Y:\DestinationPath\" actually exists, they sould NOT have moved at all.

The worst thing that could of happened is you issued the following command (notice the missing trailing '\' at the end of the destination path name):

    MOVE "X:\SourcePath\SourceFile.ext" "Y:\DestinationPath"

In this case, 'DestinationPath' would be interpreted as a filename and all you files will disappear in a black hole named Y:\DestinationPath. So, look in the Y:\ folder for a file named 'DestinationPath'.

Ouch!! I hope you were right about the trailing backslash character.

 

by: t0t0Posted on 2009-04-06 at 22:11:17ID: 24084124

By the way, if you open your mystery file in Notepad, although most of might look like a load of gobbledegook, you may stumble across some text which mich identify it as one of your lost files.

I hope not though...

PS. You can drag-and-drop the mystery file straight into Notepad if it's Notepad is already open.

 

by: BillDLPosted on 2009-04-07 at 06:49:00ID: 24087278

I would say that if you have even the vaguest suspicion that your files have been deleted into a void, and if those files are of significant importance to cause you great inconvenience over their loss, then you should really stop using that hard drive and try a recovery program to see if they are recoverable.

Usually that involves removing the drive from which you wish to recover files, and attaching it temporarily as a slave drive to a compatible Windows PC from which you run the recovery program and specify the slave drive as the target.

Suggested program is GetDataBack.  You choose the version (FAT or NTFS) to match the filing system of the drive you are recovering from.  Trial mode is functional up to the point where it displays recovered files, but copying out the files to safety requires payment of a license.

I'm going to try and simulate what seems to have happened, and see what might be possible with your "mystery file".

 

by: BillDLPosted on 2009-04-07 at 07:06:19ID: 24087470

XP SP3.   C:\TEST folder exists as do the 3 files I created.  I have no Y: Drive, and therefore "DestinationPath" cannot exist.

@echo off
MOVE "C:\TEST\File01.abc" "Y:\DestinationPath\"
MOVE "C:\TEST\File02.abc" "Y:\DestinationPath\"
MOVE "C:\TEST\File03.abc" "Y:\DestinationPath\"
exit

C:\TEST remains where it is and the files remain where they are.  I cannot detect the creation of any new folders or files bearing any of the names.

- The same is true if I leave off the trailing backslashes from the destination.
- Removing all double quotes - same result, ie. nothing.
- No double quotes or trailing backslashes after destination - same as above.
- Same as above but create a space in destination directory - same results.

 

by: t0t0Posted on 2009-04-07 at 07:25:39ID: 24087667

BillDL

>> "The same is true if I leave off the trailing backslashes from the destination"

Try running the same commands WITH a Y: and a bad path. Then you'll get the drift. Oh, and if you don't have a Y: drive, then create one with SUBST.

>>"Removing all double quotes - same result, ie. nothing"

BillDL, we all know double-quotes ONLY (normally) effect filenames and directory names containing spaces or certain special characters.

>>"No double quotes or trailing backslashes after destination - same as above"

Once you've created your Y: drive, see what happens to your files if you remove the backslash from a bad destination path.

Your test tells us nothing. In fact, it tells us less than nothing becuase I made a point of mentioning both double-quotes and the backslash character and you have played these down.

You obviously failed to recognise that MOVE will abort at the first hurdle - at the fact there is no Y: drive. So I suggest you create a Y: drive using SUBST and give more thught to your diagnostic testing before disproving another expert's findings.

In the meantime, I urge bcombe to totally ignore BillDL's previous comment until BillDL confirms his findings after following my suggestions.



 

by: t0t0Posted on 2009-04-07 at 07:26:39ID: 24087677

bcombe

Please read my previous comment to DillDL

 

by: QlemoPosted on 2009-04-08 at 01:54:34ID: 24095015

t0t0,
are you really sure you tried that out? I have the same results as BillDL, as I would have expected:

cd c:\temp\ee\tst
copy nul a & copy nul b
subst y: c:\temp\ee\tst
move * y:\mva

does result in an error message not allowing multiple files to be moved into a single one. A backslash at the end doesn't change anything.

move a y:\mva
move b y:\mva

results in first file moved and renamed, second NOT, getting an overwrite prompt, of course.


Mysterious files are sign of bad cache memory or unreliable hard disk.


 

by: BillDLPosted on 2009-04-08 at 03:03:55ID: 24095335

Hi Qlemo

The point addressed by t0to with reference to my comment was really the fact that my destination drive did not exist, and this was therefore the first point at which the move command would have been expected to fail with no apparent sign of activity or error message.  I kind of lost direction of what I was doing away from this question as I tried to create an extensionless file using as many permutations of bcombe's original commands as I could.  I really wanted to try and recover his files but in the end all I could get was a copy of the last file"moved"  but without the extension, which was the most expected result.  I was actually trying to get what your error message told you wasn't possible, ie. "multiple files moved into a single one" to examine and extract separate files from, if that were to be possible.

I kind of type my observations in Notepad as though I'm talking to myself when I'm looking at a problem, so it sometimes comes out sounding like a lawyer cross-examining evidence in a court room even though it is often meant more as a "right, so that works, but this didn't, hmmm...why not?" transcribed thought.

 

by: t0t0Posted on 2009-04-08 at 04:41:34ID: 24095963

Qlemo

You know I respect you highly and reading your comment has prompted me to double-check, then double-check again.

Basically, if you MOVE a file (or group of files) to a bad pathname and you do not include a trailing backslash as part of the pathname, then the file/s disappear into a blackhole leaving just a single file whose name is the name of the target directoryname of the path.

The same applies to COPY too so it's not surprising MOVE behaves in the same manner. XCOPY, on the otherhand, prompts you to specify a filename or directoryname.

If you include a trailing backslash in your target directoryname then DOS will moan if the directory does not exist and the MOVE (or COPY) will fail. See below.

 

C:
CD \
MD source
MD destination

SUBST x: c:\source
SUBST y: c:\destination

MD x:\OrginPath
MD y:\DestinationPath

X:
CD OrginPath
COPY NUL File01.abc
COPY NUL File02.abc
COPY NUL File03.abc

C:
MOVE "X:\OrginPath\File01.abc" "Y:\DestinationPath\"

REN "y:\DestinationPath" "DestinationPat_"

MOVE "X:\OrginPath\File02.abc" "Y:\DestinationBadPath\"
The system cannot find the path specified.

MOVE "X:\OrginPath\File03.abc" "Y:\DestinationBadPath"

FOR /F %a IN ('DIR /A-D /B /S x:\') DO @ECHO %a
x:\OrginPath\File02.abc

FOR /F %a IN ('DIR /A-D /B /S y:\') DO @ECHO %a
y:\DestinationBadPath
y:\DestinationPath\File01.abc

NOTE: y:\DestinationBadPath is actually a file - the missing File03.abc

When MOVEing multiple files, the same happens to the first file however, DOS moans saying it "Cannot move multiple files to a single file"

Even moving files singularly one file at a time, DOS will moan at any subsequent files you attempt to move to the same bad path.

However, if you specify the '/Y' command option with MOVE then DOS will not complain and simply chuck all your files into a black hole and you lose all but the last file.


 

by: t0t0Posted on 2009-04-08 at 04:44:47ID: 24095982

One possibility that springs to mind is that his destination referred to a removable media such as a USB device. And rather than the files actually being written out to the device before unplugging it, they were only cached.

 

by: t0t0Posted on 2009-04-08 at 05:05:35ID: 24096167

BillDL

You've been around a long time and infact, I remember you from some 7 years ago when I joined EE so I have good respect for you.

The odd thing about this problem is that, to lose multiple files as he has done, he would of either have had to specify the /Y option with MOVE or (and this sound very far-fetched but not unheared of) specified a different bad destination path for each file moved.

In the first case, he will have lost all but the last file moved, as you quite rightly say however, in the second case, he would have ended up with lots of files without extensionnames in the 'parent' directory of his bad destination pathname. In the example given, they would be found in Y:\.

If he is suspects his files are somewhere (anywhere) on his hard disk drive/s, and if he can recall even a single unique phrase or word in any of his 'lost' files then he could try a search of ALL files 'contining..." which is great for text files but not very helpful for non-text files.

Finding just the last file (or extentionless file) might give a clue as to what may have happened to the rest of his files.

 

by: t0t0Posted on 2009-04-08 at 05:07:45ID: 24096185

Oops! ... search of ALL files "containing..."

 

by: QlemoPosted on 2009-04-08 at 05:19:46ID: 24096291

t0t0,
"Basically, if you MOVE a file (or group of files) to a bad pathname and you do not include a trailing backslash as part of the pathname, then the file/s disappear into a blackhole leaving just a single file whose name is the name of the target directoryname of the path."

That's true for a single file. The second file will hit the overwrite prompt.

 

by: t0t0Posted on 2009-04-08 at 09:52:45ID: 24099392

Qlemo

Didn't I say that in my post above?

.... and to add to your comment....

>> "The second file will hit the overwrite prompt"

providing you don't use the /Y option with MOVE otherwise, you won't hit the overwrite prompt and you'll lose a lot more than just the single file !!

 

by: QlemoPosted on 2009-04-08 at 10:02:33ID: 24099499

Reading the move help, I found two interesting points:

  1. /y can be provided by a COPYCMD environment variable 
  2. Default is to be prompted for overwrite, except when called in Batch File 
Maybe that is causing the confusion ... The latter is true, the prompt is only shown if in interactive mode!

 

by: t0t0Posted on 2009-04-08 at 13:27:08ID: 24101361

Ouch!! Well spotted Qlemo.

Very interesting.... I don't think we can go any further with this one. This is conclusive evidence his files have gone to file-heaven.

Great work Qlemo.

In answer to bcombe's question, there is a possibility he may be able to recover ONLY the last file MOVEd. All other files are gone forever!!

The last file will have no extension, will be named 'DestinationPath' (working from data given) and can be found in the 'Y:\'.

 

by: BillDLPosted on 2009-04-09 at 01:43:48ID: 24105257

bcombe
With this kind of certainty, your only chance now of recovering the files (apart from the last named one in your batch file) is as I mentioned in my comment ID:24087278  
" ... if those files are of significant importance to cause you great inconvenience over their loss, then you should really stop using that hard drive and try a recovery program to see if they are recoverable."

In the end, t0t0 answered your question with his comment ID:24083854

"I'm afraid the worst thing you could possibly do is to copy a bunch of files to a non-existent directory followed by a block-delete, because DOS simply interprets the non-existent directory name as a filename and you end up with just a single file being just a copy of the last file copied and all your files gone forever!"

The rest of the comments have just reinforced that answer, or served to prove that this is exactly what has happened to your files.

 

by: t0t0Posted on 2009-04-09 at 03:09:47ID: 24105669

bcombe

Thank you for pointing that out BillDL. I mentioned that very early on however, I would be more than happy for credit to be shared among us for some great detective work carried out. These are (in no particular order):

t0t0 - correctly identifying the cause of  bcombe's missing files (24083854).

BillDL - suggesting the removal of bcombe's hard disk drive for data retrieval

Qlemo - great detective work in confirming MOVE's behaviour when using the '/Y' option which reinforced the solution beyond doubt (24099499).

bcombe, please award point accordingly.


My final word on this is, there is a slim possibility of recovering files from a hard disk drive under these circumstances if the hard disk drive has been subjected to minimal change since your files disappeared.

What actually happens at the physical level during a MOVE (particularly in your case) is that your files are simply renamed one after another. To be specific, details of every file and folder (their names, location, date of creation etc., size and file attributes etc.) are stored in a part of the drive known as the FAT (File Allocation Table - in DOS) or the MFT (Master File Table - in NTFS) which is not normally directly accessible to users. When a file is deleted, the file itself remains intact on the hard drive until parts of it is eventually over-written by other data. It's the file's entry in the FAT or MFT that is actually modified indicating the file is deleted.

An undelete program will examine the entries in the FAT or MFT to determine the existence of deleted files. If it finds any, it tries to follow the links to file fragments, which may typically be spread over different parts of the hard disk drive, in an attempt to piece it back togehter. If it succeeds, your file is recovered.

If parts of the file is unrecoverable (usually because fragments of the file have been over-written), then the undelete program may fail to recover all or part of that file. This is because each file fragment includes a link to the next fragment and the undelete program tries to chain these fragments back together during the undelete process.

Some undelete programs will scan the hard drive's main storage area as well looking for any file segments which link to others and attempt to rebuild even just parts of the file.

A program which uses a combination of both these methods for recovering lost files is better suited for the success of recovery.

Data recovery of file fragments is great for files containing lists of tables of data such as an address book or tlephone directory or database as well as text files because it could significantly cut down on time required to re-enter the lost data.

Data recovery of fragments of images, music and video is trickier however, depending on their format, fragments may be successfully recovered and repaired as image, music or video snips.

Data recovery of fragments of compressed files is virtually useless unless either the start and/or end of the file is intact because these areas contiain key information for that particular compressed file and only under these circumstances is a repair tool likely to be able to recover some, if any, files from withing the compressed fragment. But don't hold me to this.


Steps you should take:

Remove your hard disk drive and attach it as a slave drive to another PC.
Use an undelete program or utility to examine the drive at the physical level.
Use an undelete program to scan the whole drive for chains of files fragments at the physical level.
No changes should be made to the hard disk drive even during the data recovery process.

 

by: t0t0Posted on 2009-04-14 at 02:12:26ID: 24136163

bcombe

Any progress?

 

by: bcombePosted on 2009-06-30 at 13:08:58ID: 31567169

Really sorry for delay. You folks are great.

 

by: BillDLPosted on 2009-07-01 at 00:02:28ID: 24752036

Thank you bcombe

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...