How to Backup Your Hard Disk Data
By Peter Bowey
Implement your own Backup System:
Backing up computer data has become an imperative job for Windows users. This occurs because data safety is very critical and every user must be aware that unpredictable events can happen and that could destroy important data on their PC's or Mac's. Learning how to perform backups is a really 'an absolute must'. Any user, no matter how confident he or she is about their computer, need undertake actions to prevent losing data (images, music, documents, work, email, etc). Hard disks crash, power blackouts occur, accidental deleting of files DOES occur. Viruses or other unplanned events can destroy your work in a split second, but, don't blame these events; blame yourself for not learning backing-up! Now read on - to learn how.
A basic Introduction: Performing a Basic Backup - for those just getting started!
What and How to Backup?
If you were a System Administrator responsible for maintaining critical Network Servers, the answer would be EVERYTHING! However, this would make for some extra hard work and a deep understanding of how computers work. What I outline here is a simple basic backup method. Attempting to backup everything is a very hard challenge for modern Windows. Why? Since Windows 2000 release, Windows (2000, XP, and Vista) has become a true multi-tasking operating system. This means there are some System Files that CANNOT be 'easily' backed-up - or restored. It is like trying to lift yourself out of bed - by your own feet!
Complete software backups are possible with multiple operating systems and more than one hard drive!
To dual boot means that you have more than one operating system installed on the hard drive and that you can decide between the two when you start your computer.
Instead of backing up everything, I will advise you on my own simple back-up method. This involves only those things that are irreplaceable, and that means critical data and personal files. All other things (Operating System and Programs) can be replaced by a clean install. Let us look at each software component in order:
Now, if you do some analysis of your own hard drive, you will find that at least 70%, and probably more, of what is on your hard drive falls in one of the above categories. With just a little preparation, you can reinstall all of this above software - if you really need to do so.
Create your own Backup with a Batch File: Step one is purchase an external USB hard drive kit. Once installed correctly, a new drive will be shown in "My Computer". Make a note of the drive letter that is allocated to it -eg; E: or F: or G:, etc...
The key to your own automated backup is the use of a batch file. This is a text file (or script file) that contains commands that are executed whenever the file is run. Creating a batch file is quite easy. In Windows, you can create one using Notepad. The thing to remember is that it must be a pure ASCII text file. Using a Word Processor, even WordPad, will not produce a pure text. I recommend using Notepad.
It is often easier to copy your existing work directories to separate hard disk (or a network resource) rather than using other complicated backup software. Several directories can be backed up easily by simply creating a simple a batch file (termed .CMD file in Windows 2000, XP and Vista). This 'backup' file can be saved and you may either:
Windows Batch files have many other uses - just like this working example. Copy the text box below, and paste it into Notepad. Save the file with a name like 'MyBackup.cmd, and be sure to add the cmd extension, and not the default txt.
This can be used as a working template of your own automatic backup script! Modify it to suit your own needs:
Notes: substitute the 'set drive=E:Backup' for the drive letter of your 2nd hard drive (or other network path).
Copy and Paste this 'Backup Script' to Notepad: (then save as MyBackup.cmd)
@Echo off:: variables
Set drive=E:Backup
Set BackUpCmd=xcopy /s /e /h /c /d /i /r /k /y
Echo 1. Backing up My Documents...
%BackUpCmd% "%USERPROFILE%My Documents" "%drive%My Documents"
Echo 2. Backing up Favorites...
%BackUpCmd% "%USERPROFILE%Favorites" "%drive%Favorites"
Echo 3. Backing up email and address book (Outlook Express)...
%BackUpCmd% "%USERPROFILE%Application DataMicrosoftAddress Book" "%drive%Address Book"
%BackUpCmd% "%USERPROFILE%Local SettingsApplication DataIdentities" "%drive%Outlook Express"
Echo 4. Backing up email and contacts (MS Outlook)...
%BackUpCmd% "%USERPROFILE%Local SettingsApplication DataMicrosoftOutlook" "%drive%Outlook"
Echo 5. Backing up email and contacts (Incredimail)...
%BackUpCmd% "%USERPROFILE%Local SettingsApplication DataIMIdentities" "%drive%Incredimail"
Echo 6. Backing up email and contacts (Mozilla)...
%BackUpCmd% "%USERPROFILE%Application DataMozillaProfiles" "%drive%Mozilla"
Echo 7. Backing up the Windows Registry...
If not exist ";%drive%Registry" mkdir "%drive%Registry"
If exist "%drive%Registryregbackup.reg" del "%drive%Registryregbackup.reg"
Regedit /e "%drive%Registryregbackup.reg"
Echo Backup Complete! ... Hit any key ...
@Pause
The above Batch Script performs the following:
This script copies the files to the directory defined in the %drive% variable (E:Backup in the above script). After the first run, the script will incrementally add (over-write) any files that are found to be new - or have been changed. This backup script will copy system and hidden files found.
Understanding the Backup script:
Notes:
Easily Backup And Search Your Email
A great program that allows you to easily backup many popular Windows email programs, is MailStore Home. This is a free software tool will allow you to backup and archive email from the following email based programs:
MailStore Home allows you to backup your email's messages from many common applications into one accessible archive store. MailStore will import your existing email from Outlook, Windows Mail, Outlook Express, Thunderbird, Exchange. Once MailStore has archived your email, you can use this software to easily search through all your messages by keyword. Optionally, you can quickly create a backup CD or DVD within this program. CD and DVD burning is fully integrated within MailStore Home. Archived email messages are stored in a easy MIME-compatible format, and can be easily recovered at any time.
A better tool than using xcopy = RoboCopy:
Robocopy, or "Robust File Copy", is a command-line folder replication tool. It has been freely available as part of the Windows Resource Kit (outside this site), and has now been introduced as a standard component of Windows Vista.
Robocopy is noted for its capabilities above and beyond the built-in Windows COPY and XCOPY (outside this site) commands, including the following:
Robocopy will not copy open files that are found to be 'in use' by other users or applications. The Windows Volume Shadow Copy service is the only Windows sub-system that can open files while they are in use. Robocopy does not implement accessing the Volume Shadow Copy service.
Traditionally Robocopy itself is a command-line tool, however Microsoft Technet has provided a GUI front-end.
This article is written by Peter Bowey and is copyright - April 2008
This article originates from content located at Peter Bowey Computer Solutions
You may read futher articles on computer backups and data recovery by visiting my website at http://www.pbcomp.com.au/computer-services.html
If you have a unusual computer related problem, feel free to contact me. Please supply information about the computer event, including a previous history for the computer, recent software changes, and the type of operating system; - Windows 98, 2000, XP, Vista, MAC OS9, OSX - etc!
Peter Bowey Computer Solutions
69 Sutherland Ave, Hayborough
Victor Harbor, SA, Australia, 5211
Ph: (08) 8552 8630
Fax: (08) 8552 9185
Mobile: 0414 440 575
Article Source: http://EzineArticles.com/?expert=Peter_Bowey
http://EzineArticles.com/?How-to-Backup-Your-Hard-Disk-Data&id=989909
More Related Articles:
Success Is In The Details Often times people believe that things happen in leaps and bounds. Often times people want things to happen in leaps and bounds. I am no different. I find myself wanting what I want on a grand scale right now. It's a human trait to be this way. The key here though is to learn to expect success one little step at a time. Success happens on a much much smaller scale than we imagine it happening. There are a hundred sayings through out history to explain this. "The journey of a thousand miles begins with the first step." "How do you eat an elephant? One bite at a time." We have heard these sort of things before, and now we need to remember them. Success is in the details. Success happens in the moment by moment decisions .. [Click to continue]
Time Clock Software - Why Your Small Company-Business Needs A Time Tracker Rules on attendance and punctuality are put in place to ensure work efficiency and maintain smooth work flow in the company. A good time clock software can greatly help human resource managers and employers in ensuring these rules are strictly implemented. What exactly is a time clock software? Time clock software products are computer programs that manage and keep daily time records of a company's employees, replacing the time-consuming manual timekeeping equipment used in the past. The data recorded on the software can facilitate the processing of payrolls and salaries. The software is great for companies with a large pool of employees. Different types of t .. [Click to continue]
Home Businesses So Much Software and So Little Money Working from home being your own boss sounds great doesn’t it? In fact more and more people are trying their hand at making either a full time or part time income from the Internet. If you have or are considering taking the virtual entrepreneurial road you soon realize that making money online isn’t as easy as many of the Internet Marketing sales pages would lead you to believe and this is where the trouble begins. I call this the cat and fishbowl syndrome, here’s why… Many people that are trying to make an online business work, windup feeling like a frustrated cat that sits staring at a delicious looking fish inside a fishbowl but can’t figure out how to get to it. They know that t .. [Click to continue]
Getting Ahead The Smart Way Life’s journey can be hard. That’s a simple fact that many have found too distasteful to handle. Yet, for those who know how to play the game, you could still have your roses even in the midst of thorns. How? You play it smart. The question that may agitate your mind is ‘how do I play smart in a life full of contradictions?’ The real lesson I have discovered and which studies have shown, that has passed from generations of human existence is that no man ever achieve his heart’s desire who is not willing to play smarter than the circumstances that buffets him. Take the lion for example. He is always on the prowl, yet most of the time he never get ahead until he jumps on his prey. That is some smartness at th .. [Click to continue]
Top Tips To Secure Your Online PC Most of us use a PC these days, but how many of us are really serious about securing it? Well, not most of us! They just need to get their job done sitting on the PC and hence look no further. But they do find themselves in great trouble when the PC crashes, files are corrupted, login information are stolen or attacked by viruses and malwares. Now, we know that "prevention is better than cure" and "self help is the best help". So according to the lines of these famous proverbs, I will try to highlight some tips through which a newbie user would be able to secure his PC. This article even applies to advanced and experienced users alike. So read on and help yourself to ward off your PC security woes. 1. Use an Antivi .. [Click to continue]
Success Is In The Details
By Dwayne Gilbert
Time Clock Software - Why Your Small Company-Business Needs A Time Tracker
By Ilse Hagen
Home Businesses So Much Software and So Little Money
By Je Dunn
Getting Ahead The Smart Way
By Yinka Aderibigbe
Top Tips To Secure Your Online PC
By Agnivo Roy