Three things are certain: Death, taxes, and lost data.
You can put them off but you can’t eliminate them.
The only difference between a good hard drive and a bad hard drive, is that the good hard drive hasn't crashed yet.
[auto], [demand], [autosave], [xlfiles], [prntscrn], [office], [files], [backup], [offsite], [multipledrives], [system], [runbat], [removable], [briefcase], [readonly], [recovery], [precautions], [prohelp], [prorepair], [prorecovery], [wbrecovery], [backupto_CD], [relCD], [relCloning], [relDataAdmin], [relDonate], [relFileRecovery], [relHDref], [refUtil], [relSettings], [relos], [relOE], [misc], [changed], [whogot], [word], [funstuff],
See Workbook Recovery for files left behind from Excel without a file extension such as 7655D900 or 2CB4D900 with a file type of “File” instead of “Microsoft Excel Workbook”,
Sub backup() 'Don Guillett, misc, 2000-05-08 Fname = ActiveWorkbook.Name ActiveWorkbook.SaveCopyAs "C:\msoffice\personal\BACKUP\ " & Fname ActiveWorkbook.Save End SubTo copy to the same directory with a different filename:
This version creates a directory, if missing, for the date:
Sub backupBYDATE() 'Don Guillett, misc, 2000-05-08 modified filename for date...... 'documented in http://www.mvps.org/dmcritchie/excel/backup.htm Dim dname as String, strTest as String dname = "c:\mybackup\B" & Format(Now(), "yyyy_mmdd") strTest = Dir(dname, vbDirectory) If (strTest = "") Then MkDir (dname) ActiveWorkbook.SaveCopyAs dname & "\BK_" & ActiveWorkbook.Name ActiveWorkbook.Save 'also save current file End Sub
To make this automatic use the Before_Save event as opposed to Before_Close to save a backup each time you are finished but not if you if you decide not to save your current changes. Based on Don Guilett and Harald Staff (2002-03-07 worksheet.functions). Install in ThisWorkbook, modified to allow for several differently named workbooks. Note the c:\backups directory must exist. Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, _ Cancel As Boolean) Application.DisplayAlerts = False 'based on Harald Staff 2002-03-07 Dim Fname as string Fname = ActiveWorkbook.Name If UCASE(ThisWorkbook.FullName) <> UCASE("c:\backups\" & Fname) Then _ ThisWorkbook.SaveCopyAs "c:\backups\" & Fname Application.DisplayAlerts = True End SubModifying the filename with “BK_” prefix in the SaveCopyAs avoids accidentally opening and confusing it in the last used list with the good production file.
Harold Staff (2000-09-08 in misc) mentioned that SaveCopyAs added to important Excel workbooks prevents someone from saving with Word and messing up because the command will not function in Word therefore the previous SaveAsCopy version is safe.
Robert Bruce (2001-10-04 in programming) mentioned that you can use Environ("Temp") to get the path to your PC’s environmental Temp directory.
David McRitchie (2001-10-24 in misc) a variation that includes check for and creation of any required directory based on the filename being created. Example creates files based on filenames in a selection of cells. (folderexists, createfolder, savecopyas)
Restoring an .XLB file from a backup may require reentering the assigned macros, see BarHopper macro to recursively reassign the macro names, seems to reset something internally to get them functional.
With Office versions after 2000, you have the “Save My Settings Wizard” in Office Tools. This is very reliable for all Office Apps In Windows...Start>All Programs>Microsoft Office>Microsoft Office Tools>Save My Settings Wizard (Nick Hodge, 2005-05-30). Also see how to restore settings.
Firefox:, backup your profile directory.
Quicken, backup the entire folder that contains qdata.QDF You should keep your data separate from the software. (also see stocks.htm page.
Office 2000 Save My Settings Wizard
http://office.microsoft.com/downloads/2000/o2ksmsdd.aspx
(archived copy for text)
Windows NT users must also create a current copy of the
Emergency Repair Disk
[archived] (START --> HELP --> ERD). Purpose of ERD: backs up Registry, keeps record of current desktop, and other things. If you ever have to use the ERD and it effects restores from the installation CD, you must also rerun your latest Service Pack. (on NT service packs supercede previous service packs).
I am using DOS batch (.bat) files in a DOS Command Window to backup my data.
BAT files are invoked instantly just like .exe files so you want to use
an editor to change the text content. There are only two commands
besides HELP that are needed to find the directories and to copy directories and files.
On some systems HELP may not work in which case try XCOPY /? or DIR /?
DIR, Displays a list of files and subdirectories in a directory. SUBST, Associates a path with a drive letter. XCOPY, Copies files and directory trees. HELP DIR |more HELP XCOPY |more DIR d: /s /on You want to set up your Command Prompt so that it does not start in a system directory, and some other things you might want to change in your properties for Command Prompt. Shortcut Tab: Target: %SystemRoot%\system32\cmd.exe -- which you probably already have Start in: c:\ Run: Normal Window Options Tab: Cursor size: Small, Display options: Window Buffer size: 50, Number of buffers: 4, [x] Quick Edit mode, [x] Insert mode Font Tab: 8x12, Raster Fonts, (each character is 8 screen pixels wide, 12 screen pixels high) Layout Tab: Scree buffer size: Width: 100, Height: 300 Window size: Width: 100, Height: 39; [x] Let system position window Colors Tab: (important if want to see black on white) Screen text RGB(0,0,0), Screen background RGB(255,255,255) Pop-up text RGB(128,0,128), Pop-up background RGB(255,255,255) Compatibility Tab: [ ] Run in compatibility mode (leave it off) |
Hidden Files: You probably won’t get far with these directions
unless you unhide hidden files. .XLB is a hidden file for instance. (topic hidden files)
My Computer, Tools(or View), Folder Options, View and make sure “show all files” is checked.
Backup, Backup, Backup always take Backups
I create some online backups with a miscbkup.BAT file that included
some coding like this, only a lot more extensive. The drive where
most of my data is on is backed up including a duplicate that exists in
the d:\miscbkup subdirectories. A backup has been stored off-site
(one is a lot better than nothing). The following not a
real backup because it is stored on the same physical drive as the
original data but it does provide a means to restore a file that I accidententally
incorrectly modify or delete. Lacking a real backup device
you can zip the miscbkup folder to a whole lot of diskettes.
REM --
d:\miscbkup\miscbkup.bat --
XCOPY
c:\netscape\users\*.htm d:\miscbkup\c\netscape\users\*.*
/S /D /H
XCOPY
c:\*.xlb
d:\miscbkup\c\*.* /S /D /H
XCOPY
d:\myfiles\*.xls d:\miscbkup\d\myfiles\*.*
/S /D /H /Y&nbbsp;
XCOPY
d:\data\*.* d:\d\data\*.* /S /D /H
It is real easy to run and real easy to restore a file to when you ran the miscbkup.BAT batch file. The beauty of using XCOPY is that if the destination directory does not exist it will be created. The /S includes subdirectories, and the /D checks the timestamps to see if it needs to be copied. The /H copies hidden filess. The /Y suppresses prompting to confirm you want to overwrite an existing destination file. There are other options and you should check them out in the Help. There is also a list option to see what would be copied without actually doing the copy.
Again you need to have off-site backup in case of disaster (#offsite) in some form such as tape, diskettes, zip-drive, CD-R, or if you are on a network to your server -- I am not referring to your ISP, and those servers had better be backed up. Generally if you are responsible for the data, it is your responsibility to insure that there is backup. Don’t forget to locate and backup your Email. Backing up your data only to another hard drive may not do you much good if you get serious hardware or software problems, you need something stored elsewhere. If you are a business and you don’t have off-site backup and have a disaster that destroys your computer and data you can say good-bye to your business.
The media that you use for backup is not permanent no matter what anyone tells you. Rainforest data was put on tape backup probably in a temperature controlled backup, the tapes became brittle and unusable and what was left couldn’t be used because the tape drives no longer exist. Remember punched cards. I'd heard of an operations manager who didn't trust tape and backed up their disk drives to punched cards. Though they were just a backup think about it, the punch card readers aren’t around, those old machines, aren’t around, the programs probably aren’t around and the people who ran them aren’t around. The point -- your backup is not permanent no matter what anyone tells you.
Backup Considerations using a CD-R for backup
A CD-R can be treated as a big diskette. If a file is deleted
or rewritten on a CD-R the old space is still there and is not reusable.
Files that have been rewritten or deleted cannot be read by ordinary means
as they are not accessible through the directory. A CD-R
holds about 650 MB and costs about $.30 US. A CD-RW which
can be rewritten on by reformatting the entire CD-RW once filled up holds
only about 450 MB and costs about $1 US. Since the purpose
of a backup is to keep data for awhile, a CD-R works very well. Sometimes CD-R($.30) and CD-RW($1).
On a former system my c: drive contained my WinNT system and commercial software programs.
My d: drive contained the files that I put a lot of work into and would
lose if all software were reinstalled on a new machine after a disaster.
More specifically my d: drive contains .my data; the data I create such
as Excel files, Word files, HTML files, REXX files, REXX macros.
My d: drive contains more data than will fit on a 650 MB CD-R so some folders
will be backed up less frequently on another CD-R. The
backup looks very similar to the previous code. Again this is just
an example of some of the code. Folder dataq1 is not being
backed up. Individual files on the d: drive that are not in a folder
are being backed up, followed by selected folders. I create the basis
for this list from a list of the main directories on the d: drive
-- DIR d:\*. >> xxxx.bat and
then using my REXX macros to reformat the output, you will probably have
to reformat using some other means.
REM -- d:\backupd.bat --The last entry shown above is copying the files that were previously copied from the c: drive to the miscbkup folder. Since I am backing up the d: drive, I have no need to create a second backup copy of those files.
xcopy d:\*.* f:\bk1\d\*.* /d
xcopy d:\clubs\*.* f:\bk1\d\Clubs\*.* /s /d
xcopy d:\comics\*.* f:\bk1\d\comics\*.* /s /d
REM d:\dataq1\*.* f:\bk1\d\dataq1\*.* /s /d
xcopy d:\dcf40\*.* f:\bk1\d\dcf40\*.* /s /d
xcopy d:\download\*.* f:\bk1\d\download\*.* /s /d
xcopy d:\drivem\*.* f:\bk1\d\driveM\*.* /s /d
xcopy d:\excelgrp\*.* f:\bk1\d\excelgrp\*.* /s /d
xcopy d:\family\*.* f:\bk1\d\family\*.* /s /d
...
xcopy d:\miscbkup\c\*.* f:\bk1\d\miscbkup\c\*.* /s /d
xcopy d:\website\*.* f:\bk1\d\website\*.* /s /d
xcopy h:\excel2k\*.* f:\bk1\h\excel2k\*.* /s /d
...
xcopy d:\images\*.* f:\bk2\d\images\*.* /s /d
...
Drive F: is the staging area for my backups. Currently I create 3 CD-RW (bk1, bk2, bk3) with bk1 having the most important frequently changed files. The letter after that is the drive letter. The actual backup CD for BK1 does not include BK1 directory -- it would have the directories that have the drive letter (c,d,h) as the major directories.
The types of data that I save from C: drive include my Excel toolbars, my Netscape bookmarks, my Email, things that contain my own material that are on the C: drive. The MISCBKUP.BAT ptfile also clears out my Netscape, IExplorer, and AOL cache first before it finishes. The cached files are on my c: drive and don’t get backed up anyway. It is a good idea to empty the RECYCLE folders before doing backups. I don’t copy them with my selective XCOPY commands. The first time I backed up the entire d: drive, and my browser files, I saw some files being backed up unnecessarily including the RECYCLE folders, and cached.
You will want to make sure you are exporting your IE Favorites, and IE cookies files to an area you regularly backup.
In Firefox you want to backup your profile directory use about:cache to locate it. In Opera you might want to check help for the word backup.
Currently I begin another CD-R every two months and update it weekly. With the /D option on XCOPY only the files that got updated are rewritten or added so this can continue for some time if I still had say 20% empty space after the first use. The CD-R cannot be used on a regular CD-ROM drive until a formatted for such use afterwards -- that takes about two hours. There is no need to actually make it readable on a regular CD-ROM drive since if you lost all your hardware, you can do this on another CD-Writer later. So I wait until it is filled up before making it readable on a normal CD-ROM.
You can use CD-R platters to backup your data and rotate one off-site and continue to use both until one fills up. When one of them fills up format it to be readable on a regular CD-ROM and retire it as a permanent backup. Replace the filled up one with a backup to a new CD-R and continue rotating them off-site, on-site.
CD-RW do not have the capacity nor the longevity of a CD-R but have the advantage of
being rewriteable so data will be erased as you delete files or replace
them. A CD-R can only be written to once, but you can use multi-sessions
with most CD-R writers. Software varies on whether you can continue
to write later on a CD that has been formatted for use on any CD drive.
There is difference in the longevity of the dyes and reflective surface on a
CD. It is best to only write on the clear part of a CD as the ink in
any pen will eventually work through the surface. Same applies to
sticking labels on a CD. Check current best practices with CD media.
additional references:
Fred Langa > Langa Letter: Time To Check Your CDRs > November 3, 2003 –
CDs thought to be good for a century may be useless within 2 years,
Understanding CD-R & CD-RW - Author’s Notes
Thumbdrives:, hold 32MB to 2GB, are very useful for backing up data and transferring data quickly. But before removing a thumbdrive be sure to close the device or your directories otherwise files may not be actually updated on the device, sharing some of the problems of other removeable media devices. Just like any other removeable device don't save to a remomveable device directy from Excel.
Each time he wants to make sure all files are up to date on the 2nd HD, he right clicks the Shortcut to “My Briefcase” and select “Update All” and presto, in seconds all files are checked whether they are the latest version and if not gives you the option whether you want to update or not. Which he indiates is very fast and easy, but only suitable for those with that 2nd HD.
You can create a backup batch file using Excel. In the following example all data is on the c: drive because the hard drive is not partitioned and there is only physically one hard-drive. Place the resulting column F into a batch file for backing up your data files.
Dir c:\*. /ad /l /on > c:\temp\bk1.csv
start c:\temp\bk1.csv
then open using Excel with Data, Text to columns, place columns at locations 15, 20, 28, 36 43 and upon completion place the following formula into cell F1 and fill-down:
=IF(B1<>"<dir> ","","xcopy c:\"""&1& """" & LEFT(REPT(" ",20),MAX(2,20-LEN(E1))) &"d:\bk1\"""&E1&""" /s /d")
Use of the macros TRIMALL, lower_case might be useful.
Paste the resulting column F into a .bat file. i.e. batbacks.bat
A | B | C | D | E | F | |
1 | albums | <dir> | 02/22/2002 | 4:48a | albums | xcopy c:\"albums" d:\bk1\"albums" /s /d |
2 | data | <dir> | 05/17/2001 | 10:40p | data | xcopy c:\"data" d:\bk1\"data" /s /d |
3 | progra~1 | 03/13/2001 | 1:52p | program files | ||
4 | scanso~1 | <dir> | 05/19/2001 | 2:16p | scansoft documents | xcopy c:\"scansoft documents" d:\bk1\"scansoft documents" /s /d |
5 | snakeyes | <dir> | 02/18/2002 | 8:37p | snakeyes | xcopy c:\"snakeyes" d:\bk1\"snakeyes" /s /d |
6 | temp | <dir> | 05/20/2001 | 12:44a | temp | xcopy c:\"temp" d:\bk1\"temp" /s /d |
7 | webpages | <dir> | 06/23/2001 | 1:18p | webpages | xcopy c:\"webpages" d:\bk1\"webpages" /s /d |
8 | windows | 03/13/2001 | 1:52p | windows |
Using XCOPY in the WinNT DOS Command Window, I personally to not have a problem with files restored from a CD backup. Those on Windows XP also should be unaffected as it apparently (see article above) will not turn on the Read Only bit.
For those that have a problem here are some additional solutions to remove the read-only attribute on your restored files.
Copy your file to another dataset, and work with the copy so you don’t mess up the original if there is anything there. If the file is small enough make another copy onto a diskette and set that aside away from harm. Don’t run a recovery against your original file, because you may well end up with nothing as a result.
I bring you some feedback from a presentation by someone who restores data as a profession.Sooner or later you will experience a hard disk crash, so back up your data. Most of the people who spend the bucks to try to restore data, have very good data backup procedures in place but one critical dataset got caught in between.
Some Basic Facts (#prorepair)
- If the hard drive suddenly stopped without any indication of any problems, that is a good sign that recovery is an electrical problem and can be repaired. (connections, wiring, circuit board on drive, etc.)
- Data is seldom recovered from a disk crash. There are outfits that have a customer service department that will tell you they have a 95% recovery rate from hard disk crashes -- they lie. How would you know if you had a disk crash without paying someone to tell you. If you had a scratching sound, or a clicking sound your data is doomed. There is no data once the surface of the disks has been converted to grooves and metal filings (dust).
- If the drive can be identified, there is a good chance of recovering some data.
- If the drive makes a clicking noise, you have about 20 minutes to two hours of usage left. Backup your files immediately starting with your critical files first. DO NOT RUN utilities that write to the disk such as Norton Utilities to fix up disk errors -- it will destroy your data. Such utilities are designed for repairing minor errors and are not designed for massive failures to rewrite data to another location.
How is data recovered (#prorecovery)
Data recovery is a large field, and involves not only physically damaged media, but deleted files, files with lost passwords, A customer’s hard disk is removed and cloned so that all work in done on the copy, preserving the customer’s original disk as untouched as possible.How much is this going to Cost?
A lot.Your recovery cost, if a file can be recovered will be based on such things as.
- You will be asked for a list of files that have to be recovered, the bigger the list the more files that will have to be reassembled back into a file. The bigger the list the more files segments that will have to be put back together; and, of course, the more it will cost to reassemble the pieces back into a file. The list of files will be what determines success or failure. Adding more files to the list will, of course, increase the costs.
- The bigger the hard drive, the more searching it will take for files; however, restricting to a smaller partition will help keep down data recovery cost. Files have to be reassembled from pieces scattered all over a drive. The bigger the drive the more searching.
- Don’t ask for recovery of programs, a one byte error will render program worthless; whereas, 800 bytes missing/lost/damaged in a data file may be hardly noticeable. If you have data compression on that is another story, any loss there will destroy the files.
What can the user do to prevent a hard disk crash
What can the user do to prevent a hard disk crash on an already purchased system, where the components have already been selected and assembled.Nothing. But that is not entirely true as you should protect your equipment from overheating and electrical damage. Overheating is a at least a major contributor to equipment failure. Lots of dirt and dust inside computer and poor ventilation are major causes of overheating. In the home or home office environment, backup drives typically do not include a fan, you should only have backup drives turned on when in actual use and you should have an external fan running on them when in use. Backup drives when not in use should be unplugged to help avoid electrical damage to equipment when not in use including problems with lightening which can damage nearby unplugged equipment in close proximity with plugged in equipment.
General Rules to avoid data recovery expenses
- Take backups.
- Back up your data, don’t bother backing up software packages that you simply reinstall.
- Put your data on reliable drives, not on the latest drive with the most GB capacity. All the drives are the same size so if you buy a 8 GB hard drive it will be less intricate and less prone to errors than 17 GB drive, get the picture.
Eliminate unnecessary files
Eliminate unused files for performance such as your browser cache files, your wastebasket (recycle bin), and your temporary files, and then Defrag your hard drives.Scandisk (chkdsk /f), Open Excel in safe mode
- Starting Excel in safe mode brings up Excel without macros and without addins.
To start it in safe mode use the "/s" switch e.g.
"C:%92Program%20Files%92Microsoft Office\Office\excel.exe" /s
291288 - Startup Switches for Microsoft Excel (2002: 291288, 2000: 211481; 97: 159474)- Use scandisk or chkdsk /f depending on your system to check your hard drive and/or floppies for bad tracks.
You may have a Backup from Excel in the same directory
- File with an Extension of “.xlk” and displays file type as “Microsoft Excel Backup”, in order to have these files you have to use “Save As” with the Always create backup option. This is on a per file basis. The “.xlk” backup is always one Excel save behind.
- File with no filename Extension and displays with a file type of “File” instead of “Microsoft Excel Workbook” and have funny looking names like 7655D900 or 2CB4D900 which are hexadecimal digits were created when Excel was working on a file. Be sure to look at the datetime stamps in the directory. If you find something interesting right-click on it and open in Excel, then do a file, Save As giving it a distinctive name including the date such as Junk_7655D900_20040629.xls and you can compare it with the other file.
It is important that you be able to see all file extensions, so that you can really tell what you have:Then if you did find something in the same directory you could compare the two workbooks.
Click to open “My Computer” and then select “View”, “Folder Options”. Select the “View” tab and then scroll down to the entry that says “Hide file extensions for known file types” and make certain it’s not checked. (An additional reason to always show file extensions can be seen in Virus Protection: Tutorial [replacement article] also see my own OE6 page).Preliminary Notes: ★
Copy your file to another dataset, and work with the copy so you don’t mess up the original if there is anything there. If the file is small enough make another copy onto a diskette and set that aside away from harm. Don’t run a recovery against your original file, because you may well end up with nothing as a result.Quick Method to see data ★
Even though the intent would be to recover the workbook you may need to see what would have been the visible data immediately. If you see the data here it gives more hope of recovery of at least something. This information is part of the method described in Q214253 found from Q142117. Place one of the following formulas into cell A1 and replicate across and down using the fill-handle. The longer formula will prevent reporting zeros for cell that are blank or look blank. (single quotes around file and sheetname, two double quotes together to indicate no text contained)=IF(trim('J:\myfolder\[myfile.xls]mysheet'!A1)="","",'J:\myfolder\[myfile.xls]mysheet'!A1)
='J:\myfolder\[myfile.xls]mysheet'!A1
The actual instructions have you use File Open to browse to the folder of the damaged file, then cancel out of it, then File, New to create a new Excel file. This simplifies formula entry and File save for the new file. The simplied entry of the better formula would then be:=IF(trim('[myfile.xls]mysheet'!A1)="","",'[myfile.xls]mysheet'!A1)
Remove the formulas you just created which are dependent on the corrupt workbook.
Select ALL, Copy (ctrl+c), Edit, Paste Special, valuesAttempt to recover the formulas (and constants): not tested yet
You could get the formulas with something like:
=personal.xls!getformula('[workbookname.xls]sheetname'!A1)
or perhaps, something that you use change all to fix up
="xxyy=" & personal.xls!getformula('[workbookname.xls]sheetname'!A1)Read as a webpage Corrupt Files, Jan Karel Pieterse, some options to try and open a corrupt file or retrieve information out of it,
Recovery of workbook, some things that often work ★
- The formats for XL97, XL98(MAC), XL2000 and now XL2002 are the same you may be able to to read the workbook on a different machine. Reading an XL2000 book on with XL97, reading a file made on a PC on a MAC. My own experience with a file that stopped working on XL2000 was that it could be read without problems with XL97, but I still had to delete the last sheet added before I could use it again on XL2000. MAC users can frequently read files that no longer work on XL2000.
- Recovery of macros using MS Word (see next topic).
- Recovery using StarCalc from Sun (see related area: StarOffice and OpenOffice)
- Recovery using Excel XP (Excel 2002), or Excel 2003 would probably be best, if available to you.
Password Recovery
One of the most common recovery problems is associated with password protection. Password removal for sheet level and workbook level passwords with the almost free (postcard thankyou) Excel® Password Remover*. Finding the actual password takes much longer but free software is available. Recovery of file protected passworded files can be very expensive. A list of recovery sites for of passworded sheets, workbooks and/or files.
* http://www.straxx.com/excel/password.html was formerly http://www.elkraft.ntnu.no/~huse/xlpassword.htmData Recovery
Commercial recovery programs or services, the following have been mentioned in the Excel groups and may be worth looking into if you have serious problems with corrupted data. Checking out the costs might be a further incentive to back up your files.http://www.officerecovery.com/excel/ Excel Data Recovery Tool, purchase about $150. (formerly conceptdata ?); and,alternative: for Excel 97 check MS KB Q142117 for recovery tool for XL97 only.
http://www.datamechanix.comMS KB recovering data -- also see related area below
- Q179871 -- XL2000: Methods for Recovering Data from Damaged Workbooks
- Q214253 -- XL2000: Linking to Data in a Damaged File
- Recovery of Modules from a corrupt Excel workbook using VBA Editor in Word. llaw (llaw@hciww.com) 2000/06/21 in programming -- actually written by Robert Bruce.
- Microsoft Excel 97 File Recovery Macro within Microsoft Office 97 Resource Kit Tools and Utilities (online) ★
- Recovering Files Manually in Excel 2002 ★
I have absolutely no experience with any of these and keep hoping that I never will have to use extraordinary means to recover an Excel file.When Excel works on a file it renames and saves a copy of the original in the same directory with a random name comprised of 8 hex digits with no extension. If Excel was terminated you may still have this file and you can try opening (a copy of) this file in Excel. When Excel completes normally the new version is saved again and the original is deleted and the new version is renamed to the original version. This is part of the reason one should never keep their original files on floppies, the other reason is that floppies are not very reliable. Renaming of files is a problem to security administration and to AntiVirus programs since this appears to be an attempt to defeat some security measures.
- Methods to Recover Corrupted Files in Microsoft Excel, ★ppt presentation
- Under Tools --> AutoSave -- set to 8 minutes, autosave is an addin.
Q231117 - XL2000 fix for not saving AutoSave settings- Q214073 - XL2000: Temporary File Created When You Save a Document
- Q149166 - XL: "Disk Is Full" Error Saving Workbook,
Microsoft recommends not reading or saving directly to floppies when using Excel. Temporary files are used by Excel and Word when files are open some additional references (Tom Ogilvy 2000-10-20)
The following were provided in a posting 2000-10-20 by Tom Ogilvy.
- Q223976 - XL2000: "The Disk Is Full" Error Copying Very Large Worksheet
- Q214245 - XL2000: "Disk Is Full" Error Saving Workbook
- Q214073 - XL2000: Error Message When You Try to Save a File
The next 3 are essentially the same:- Q223810 - XL2000: Error Message: Document Is Not Completely Saved
- Q223812 - XL2000: Error Message: Document Not Saved
- Q223816 - XL2000: Error Message: The Disk Is Full
- Q214073 - XL2000: Error Message When You Try to Save a File
- Q103329 - XL: Error Message When You Try to Save a File
- Q149166 - XL: "Disk Is Full" Error Saving Workbook (FLOPPY)
- Q142116 -- Files Corrupted on Save: How to Troubleshoot Source of Problem
- Q142117 - XL: Summary of Methods to Recover Data from Corrupted Files ★
- Q223808 - XL2000: Error Message "Cannot access read-only document
- Q109675 - Utilities that can recover damaged files
- Q179871 - XL2000: Methods for Recovering Data from Damaged Workbooks
[ http://support.microsoft.com//kb/q179871 ]- Q213951 - XL2000: Files Corrupted on Save: How to TShoot Source of Problem Excerpt from this page:Files that you save to a floppy disk or to a network drive may intermittently become corrupted or damaged
- How to Troubleshoot Damaged Workbooks contains troubleshooting topics for Recovery Methods, and Preventing Corruption
[ http://support.microsoft.com/support/excel/content/excelfolders/default.asp#Backupmethods ]- Q147216 - XL: Linking to Data in a Damaged File (5.0 and Later)
- Q224135 - XL2000: Error Message: This File Is Not in a Recognizable Format
- Q75818 - XL: Linking to Data in a Damaged File (4.0 and Earlier)
- Excel toolbars has more information on toolbars, see the Emergency Recovery of toolbars first if you are currently experiencing a problem with toolbars.
- Microsoft Excel Pages - Tips and Tricks See Jan-Feb 1998 (download Word document)
[ http://support.microsoft.com/support/Excel/Content/Tips/xlpages.asp ]- StarOffice[TM] 5.2 from Sun Microsystems® can read and write Excel files. [76.8MB download, no longer Free], limited to 32,000 rows, very compatible with Excel. You can read all Excel files and even save as Excel 95, or 97-2000. StarCalc is the spreadsheet program. [listed on site as 79-105 Mbytes download]. Reviews of Star office 6.0 Beta. (please read next paragraph)
Sun has split StarOffice into StarOffice for the businesses that want to pay for support and into OpenOffice which remains free. Presume you want to be using OpenOffice now instead of StarOffice, note you will have to download OpenOffice from http://www.openoffice.org★[49MB], and Java from http://www.sun.com [9MB] both are free. Compare in size to the original VisiCalc (27,520 bytes. download) spreadsheet created by Dan Bricklin and Bob Frankston. Also see Spreadsheet History.- Software602, PC SUITE -- FREE Office Suite! ★, [download is 17MB], even the free OpenOffice has competition, and there is even more competition.
- Download page at Andrew Baker’s Visual Basic User's web site see Excel Workbook Rebuilder.[Free] ★
- Also see sub-topics below.
How to find more information on recovery:
go to http://support.microsoft.com/support/search/ to search the MS KBand search for article ID Q142117, or a keyword (Boolean) word search for “recover data”, (1) Excel, (2) keyword, (3) recover data, (4) Full Text, Titles with Excerpts. In the MS KB, “AND” is default. Logical operators AND, OR, AND NOT can be used in upper or lowercase, parenthesis and symbols are not understood by MS KB.Check Google Usenet Advanced Search for “Corrupted Files” in newsgroups: microsoft.public.excel.*Some more links on recovery of corrupt Excel files
- Recover a corrupt Excel file a Google archived posting of some links collected by Thomas Ogilvy (2000-04-17).
Recovery of other files
- Zero Assumption Digital Image Recovery, v1.0 [600k] W98/2k/XP FREE, should work with any media type (e.g. CompactFlash, MemoryStick, SmartMedia and so on) accessible by means of operating system.
- Roadkil.Net, Recovers files from disks with physical damage. Allows you to copy files from disks with problems such as bad sectors, scratches or that just give errors when reading data. The program will attempt to recover every readable piece of a file and put the pieces together. Using this method most types of files can be made useable even if some parts were not recoverable in the end. [ref]
Backup to CD by zipping personal folders (#backupto_CD)
Because it is hard to make up a Batch file the will keep putting the right files to a CD. I'm switching to backing them up manually with Back4win by folders to a CD as zip files, which you can do easily by folder(s), and skipping any file you don't want. (Alt+N brings up a checklist for backup]. back4win can also to a restore.The primary thing is to keep your data in your own folders not in system folders and to backup your folders. For instance my Excel files are at least two levels down in my own folters, and my Outlook Express files are are in my own directories structures so I can just backup a high level directory.
- Back4Win - Backup Program by Alistair George Manufacturing ★, free for homeuse, backup selections to a CD or CD-RW. make sure you specify your CD drive when giving a name for backup. Creates .zip files (suggest using UltimateZip as a companion). [~2004-06-24 LG]. The read-only bit is fortunately not set on these zipped files on a CD-R. /\
(Some additional free backup programs [LG 2005-02-14 from PC World])
- Abakt - Abakt...?, Free backup software, providing advanced filtering and command line options. [LG 2005-01-06]
Extract to...
Extract to here
Extract to folder
Create Self-Extractor (.exe)
E-mail ...zipUltimateZip - Download ★★, better than WinZip. though UltimateZip is no longer free for home use, it is still a bargain compared to other payfor software (don't know if there are free alternatives, Windows 2002 has something builtin). Can unzip to new folder same name, same folder, or anywhere else. Can look at files without permanently unzipping. Right-click options. Note with 3.0 the licensing has changed -- now Shareware for companies, still Freeware for private (home) use(see news, FAQ page, Order). {uzip(/\), directory}. Windows XP reportedly has a file unzipper. Outlook & OE block .zip attachments see Woody's Office Watch articles n45, and n46.
Add to Archives
Add to "filename".zip
Zip and E-mail "filename".zip
Additional downloadable software (mostly free) Related Information -- Backup id="relbackup"
- AutoSafe v.3.3, Jan Karel Pietersek, creates copies of open workbooks at regular intervals in a separate (user-selectable) directory. If an abnormal termination of Excel occurs, the backup copies remain on disk, and Autosafe finds them the next time Excel is started and presents recovery options to the user. This utility is freeware only for individual (private) users.
- Back It Up, Bernt Levinsson, identified in LockerGnome, Version 5.0.1.91 beta 1,66 MB Freeware .
- Using Excel VBA to backup files from one directory to another.
- XXCOPY, a Versatile File Management Utility --- Boldly Extended ..., (Extended XCOPY) Use as Command or in batch script. File management and
synchronization utility by Pixelab, Inc. [parameters] [Examples] - Microsoft bows to feedback and brings back real file backup in Windows 7 (TechRepublic), should really make you happy if you've always used XCOPY that you never had to deal with the nonsense of backing up only by file categories instead of folders, what kind of a backup was that anyway, probably really messed up restores.
Related Information -- CD, [CD-RW, DVD, DVD-RW, DVD+RW] (#relCD)
CD - Related Information -- General Information
- CD-Recordable FAQ, Andy McFadden, ★ subtopic: How do I make my CD-ROM work on the Mac, WinNT, and UNIX?
- Burning CDs in Windows XP, Alex Nichol, ★(overview), ISO (long filenames) and UDF (packet writing: Direct CD, InCD, DLA) file systems,
- DVD FAQ (big file 592KB, linked directly to capacities), Jim Taylor
- CD-RW Central, [hijacked URL, see archive ] based in UK, CD and DVD daily news and product announcements. Site has been obviously hijacked and I cannot locate new site if there is one.
- TheOpenCD [FAQ], potential for important works. It is a collection of Open software that you can download and install.
- CDRLabs.com - Home, News, Reviews, Articles
CD - Related Information -- CD Recovery
- ISOBuster v1.0 [1.7M] W9x/2k/XP FREE, presented in LockerGnome as free to recover CD data, but it is $20 to recover UDF Packet written data (CD-R and CD-RW), so it is free only to recover data from commercially pressed CDs (i.e. software, music).
- Q321641 - How to Troubleshoot Issues with Reading CD, CD-R, CD-RW, and DVD Discs
- Unstoppable Copier 1.9, Recover files from scratched CD's or defective floppy/hard disks. FREE download (didn't work)
CD - Related Information -- HP CD Writers
From http://www.hewlett-packard.com search: read-only +cd-writer +copied
- Hewlett-Packard has a page on HP CD-Writer Plus Drives - Sharing Recordable CDs with Other Systems Using Adaptec DirectCD and Easy CD Creator .
- A utility is required to be able to read CD-RW media on a regular CD-ROM (MultiRead) drive.
Related Information -- Cleanup (#relCleanup)
Be careful what you ask to be deleted. You probably do not want to delete MRU files (Most recently used files list), nor your history. In any case look at each option and the amount of space that wold be saved before giving final okay. Running a cleanup program might help speed up your system.
- Disk Cleaner, Robert Moerland, Disk Cleaner allows you to easily clean up disk space that is used by temporary files like those in the system temporary folder, the Internet Explorer Cache and Cookies folder, Recycle Bin and various other areas of your system. [site] /\.
Related Information -- Cloning, Ghosting, Mirroring (#relCloning)
- Ghostfiles v2.0 [911k] W2k/XP FREE, mirroring of files, as mentioned in LockerGnome LG-20020801] Ghostfiles is a file-mirroring application, you just configure the source directory and the destination to where you want to mirror the directory, and the application will do the rest. Ghostfiles is a great application for laptop users on a network because you can use the program to mirror the contents of a local directory to a network location for your colleagues to access. You can also use the application to track the files installed during a program installation.
- Karen’s Replicator, v1.8.10, [missing try Softpedia] can be configured to synch any two disks/folder/whatever; overwriting older but not newer files. Optionally, it can synch file deletions across folders too. Synch desktop and laptop. [LangaList 2003-03-27]
Related Information -- Data Administration (#relDataAdmin)
- Eliminate unused files for performance, delete temporary internet files, *.tmp, several Temp folders including: C:\Windows\Temp\, empty wastebasket, compact email, and then Defrag your hard drive.
- Backing up Personal Computers, meryl.net article, how to back up stuff on a personal computer. Contrary to the article copying to an external hard drive is not adequate backup because if could have same hardware/software problems as your harddrive, it is not likely to be be moved to a remote location and it does not allow you to go back through your backups to when the data was good.
- Breaking Traditions in Small-Business Backup, June 12, 2003, By David Morgenstern
- End-of-Life Data Security in the Enterprise,
- Administration Best Practices , by Peter Baer Galvin, Sys Admin Magazine. Slightly off-topic
Did not find what I was actually looking for in the above articles- PC World Picks [LG 08.25.2003}, CD utilitiies, benchmarking, cloning, copying, Virtual CDs on your HD.
- HDDlife - free for personal use (not freeware), real-time hard-drive monitoring utility with alerts, malfunction protection and data loss prevention functions. Proactive hard drive failure detection system that controls 100% of hard-drive risks. [LG 2005-02-03] Looks good but have a slow system, and don't have an internal temperature sensor, so haven't downloaded it
Related Information -- Data Removal, donating old computer (#relDonate)
- Donate Drive not Data, the need to destroy data on old hard drive before trashing or selling an old computer. [LG 2003-11-18]
- Simple File Shredder [LG 2005-08-25]
Related Informaiton -- Documentation and Planning (#documentation)
Make sure you know what you have on your system, you will need to know what to reinstall, what your serial numbes were for software. [also check out Things you should have that are Free which has additional utilities.]
- Belarc Advisor, free for personal use, Find out serial number, model, hardware and software on your computer. Tells when and where installed. My report is 5 pages, 11 pages if you expand titles (paren tips) and HREF with bookmarklet. If you plan on reinstalling your system, you definitely want to run and retain the actual HTML of this report, includes product keys of installed software. Have used this one. (also see Lavalys)
Discontinued, but can be obtained from: Obtain from Tucows Downloads - Belarc Advisor 7.1h Freeware SoftwareRelated Information -- File Recovery (#relFileRecovery)
- Copy It Anyway 2.2, copies corrupted files which can’t be copied the standard way because of some error on media the file is stored on.
- Drive Rescue - the hard disk recovery tool, Freeware, Alexander Grau, supports all Windows® FAT-drives, mentioned in LockerGnome 2001-12-20.
- Disk Investigator v1.1 [527k] W9x/2k/XP FREE, view deleted files or directories, and restore them if necessary, mention in LockerGnome 2002-07-16. Looks at disk sectors so reconstruction might be necessary.
- NTFS Reader for DOS v1.0 [59k] W9x/2k/XP FREE, retrieve data from an NTFS formatted drive while you are running on a FAT32 formatted drive, LockerGnome 2002-08-02.
- Ole Erlandson's VBA Tips Restore information from corrupt Excel workbooks. Tool to recover contents. [Free] ★
- File Recovery Notes, "How to Restore a File" ★, Norman Harker, posting 2002-11-08, Norman indicates half of his work is recovering other people's files, this is long annotated list of free and commercial recovery software. Just in case Microsoft changes their link - Tip #28 is "Never Save directly to Floppy", which Norman suspects is the most common cause of Excel file corruption, just like what is reported in the newsgroups.
- Favorite Utilities To Disaster-Proof Your PC (PC World Picks), list includes FreeUndelete v1.0 Rescue files accidentally deleted from an NTFS file system.
- File Recovery Extravaganza, Claus Valca's Blog at Grand Stream Dreams (2009-02)
- Free Undelete Utility Recovers Deleted Files, Unerases Lost Data ★, use after accidental deletion of files on a NTFS (used by default in Windows XP, 2000 and NT), FAT32 or FAT16 file systems. Read the information about "Proper Usage Techniques" on that page.
- Five Best Free Data Recovery Tools, The best way to recover from unexpected data loss is to be properly prepared, tools for use after losing data.
- Also see the main links within the Related Area, particularly Open Office.
Interesting Information -- Hard Drives (HDD) and Floppy Drives (#relHDref)
- StorageReview.com Reference Guide - Hard Disk Drives, provides an overview and history of the PC Hard Drive.
- The Invention of the Floppy Disk And Drive , invented by IBM engineers led by Alan Shugart, inventors.about.com article by Mary Bellis.
Disk Utilities - backup, recovery, status (#refUtil)
- Free Hard Disk Utilities: Recover Deleted Files and Lost Data, PCWorld ★
PC Inspector File Recovery v3.x in PC World (2003-09-24) to restore files from hard drive. Follow same link for Smart Recovery for restoring digital camera media, ie. Compact Flash cards, Smart Cards etc.- Undelete v5.0, Gets Back Overwritten Office Files (Office), (commercial software)
- CDCheck v3.0.1, PCWorld, actual site Mitja Perko, free for non-profit use.
Related Information -- System Settings (#relSettings)
- Make a copy of your System Display settings, by naming and saving your current setting (see on color page). i.e. colors of toolbars, scrollbars, font size/color, and background color of areas.
Related Information -- NT (#relos)
- Create a current copy of the Emergency Repair Disk, Keep that Repair Disk Updated!, also see coping with large emergency disk files (archived copy) which indicates that the folder backed up is actually the \Winnt\Repair folder.
- These files can be edited with SysEdit. You should backup these files also: c:\winnt\system.ini, c:\winnt\win.ini, c:\config.sys, and c:\autoexec.bat
- mskb: 322756, How to back up, edit, and restore the registry in Windows XP and Windows Server 2003
Related Information -- Outlook Express (#relOE)
- As far as backup of OE is concerned, backup your Outlook Express Data files (.dbx) and your Windows Address Book (.wab). You can usually figure out how to restore your OE data files (.DBX) when you need it, but you must have the backup.
- If you use Outlook Express for EMail, --http://insideoe.tomsterdam.com/tools/index.htm#oebackup-- Outlook Express Freebie Backup For Versions 5.0 and Greater to backup OE .dbx files, msessage files, rules, identities, windows address book (.wab) by Majik (David Guess) on Steve Cochran’s site.
- Also see my Outlook Express pages begining with ../ie/oe6.htm
Related Information -- Outlook Express 5.0 and Outlook Express 6.0 (subtopic)
- Backup OE5 -- Stephen L. Cochran. If different versions of OE are involved you should export your address book to a .CSV file and import that back in. You might add a blank after the last description in the header column to reduce the risk of not restoring the last column to the address book. (from my experience)
- OE5 and OE6, suggestions for setting up Outlook Express, avoiding viruses and where to find disinfection information.
- Complete Backup -- Clone Your Identity (for Advanced Users)★, Tom Koch.
http://insideoe.tomsterdam.com/backup/bu_full.htm
Backup OE Registry program to automate this step. ★
http://insideoe.tomsterdam.com/tools/index.htm#oetool
http://insideoe.tomsterdam.com/tools.htm#regkeybackupRelated Information -- Outlook (#reloutlook)
I don't have outlook but here is some information.
- Outlook & Exchange/Windows Messaging Backup and Dual-Boot, Where is my Outlook data stored. ; Also see this newsgroup posting, your settings are in .pst file (move and use do not import on new machine).
Other Miscellaneous Applications (#misc)
- MozBackup - A utility for creating backups of Mozilla, Mozilla Firefox, Mozilla Thunderbird and Netscape profiles. It allows you to backup mail, favorites, contacts, etc. [freeware][LG] (if interested in Firefox see my own notes on Firefox customizations)
- How to: Export HTML-Kit settings to another computer
Related Information -- What’s changed (#changed)
- FileMap by BB v2.1 [110k] W9x/2k/XP FREE, lets you create an inventory list (snapshot) of the files in your Windows and System folders, so that you can do a comparison check later to determine what has been added or removed.
- Belarc Advisor, You might want to include the HTML output file the on your backup, to show a list of all installed hardware, software, updates, product id. ★ (free for personal use) /\, alternatives or similar might be Magical Jelly Bean Keyfinder v1.41 which just finds product keys.
Related Information -- Whogot (#whogot)
- mst IsUsedBy , find out which application has a file open [LG 2003-12-23], similar to WHOGOT, WHOHAS on mainframes (see my REXX macros).
Related Information -- Word (#word)
- Q211634 - WD2000: Troubleshooting Damaged Documents, troubleshooting Word 2000 (.doc) documents
Fun Stuff and similar things (#funstuff)
- Yesterday: A DBA’s backup song. More Fun Stuff just for fun.
New Stuff (#newstuff)
Haven't updated this page in a long time so just adding this at bottom of Related Information.
- 3 Signs Your Hard Drive Is Failing (And What to Do) -- MUO updated Oct 1, 2021
Please send your comments concerning this web page to: David McRitchie send email comments
Copyright © 1997 - 2009, F. David McRitchie, All Rights Reserved