PC Review


Reply
Thread Tools Rate Thread

Best backup process and software

 
 
Bill W
Guest
Posts: n/a
 
      2nd Jan 2007
I just purchased a new external drive and want to use it to set up a
regular, automatic backup process. I currently have 2 software options -
Roxio's Backup MyPC and Microsoft's standard backup utility. I am planning
on using Microsoft's backup and perform a one-time total back followed by
weekly differential backups. Each week the new differential backup file
will replace the prior week's differential backup file. Can anyone suggest
a better plan or better backup software? Thank you for your help. I want
to do this right.


 
Reply With Quote
 
 
 
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      2nd Jan 2007

"Bill W" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I just purchased a new external drive and want to use it to set up a
> regular, automatic backup process. I currently have 2 software options -
> Roxio's Backup MyPC and Microsoft's standard backup utility. I am

planning
> on using Microsoft's backup and perform a one-time total back followed by
> weekly differential backups. Each week the new differential backup file
> will replace the prior week's differential backup file. Can anyone

suggest
> a better plan or better backup software? Thank you for your help. I want
> to do this right.
>
>


Are you trying to back up your installation or your data files?


 
Reply With Quote
 
Bill W
Guest
Posts: n/a
 
      2nd Jan 2007
Data files

"Pegasus (MVP)" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> "Bill W" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> I just purchased a new external drive and want to use it to set up a
>> regular, automatic backup process. I currently have 2 software options -
>> Roxio's Backup MyPC and Microsoft's standard backup utility. I am

> planning
>> on using Microsoft's backup and perform a one-time total back followed by
>> weekly differential backups. Each week the new differential backup file
>> will replace the prior week's differential backup file. Can anyone

> suggest
>> a better plan or better backup software? Thank you for your help. I
>> want
>> to do this right.
>>
>>

>
> Are you trying to back up your installation or your data files?
>
>



 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      3rd Jan 2007
If you wish to back up your data files then an easy solution
would be to use the Task Scheduler to invoke a batch file
such as this five-liner:

@echo off
xcopy /s /d /y "c:\documents and settings\Bill\*.*" "Q:\%date:~0,3%\Bill\"
echo.
echo Press the Space Bar to close this window.
pause > nul

It will back up all new and modified data files from your profile
folder to one of 7 folders called "Mon", "Tue" etc., thus giving
you plenty of opportunity to retrieve an earlier version of a file
that may have been damaged for some reason.

You can consolidate the seven backup folders once every
month with this batch file:

@echo off
for %%a in (Mon Tue Wed Thu Fri Sat Sun) do (
xcopy /d /s /y X:\%%a X:\Full\
rd /s /q X:\%%a
)

After you have run this batch file, the folder X:\Full will
contain the latest version of every backed up file.


"Bill W" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Data files
>
> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> >
> > "Bill W" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> >> I just purchased a new external drive and want to use it to set up a
> >> regular, automatic backup process. I currently have 2 software

options -
> >> Roxio's Backup MyPC and Microsoft's standard backup utility. I am

> > planning
> >> on using Microsoft's backup and perform a one-time total back followed

by
> >> weekly differential backups. Each week the new differential backup

file
> >> will replace the prior week's differential backup file. Can anyone

> > suggest
> >> a better plan or better backup software? Thank you for your help. I
> >> want
> >> to do this right.
> >>
> >>

> >
> > Are you trying to back up your installation or your data files?
> >
> >

>
>



 
Reply With Quote
 
Bill W
Guest
Posts: n/a
 
      3rd Jan 2007
Thank you very much. I appreciate your help.

"Pegasus (MVP)" <(E-Mail Removed)> wrote in message
news:e$(E-Mail Removed)...
> If you wish to back up your data files then an easy solution
> would be to use the Task Scheduler to invoke a batch file
> such as this five-liner:
>
> @echo off
> xcopy /s /d /y "c:\documents and settings\Bill\*.*" "Q:\%date:~0,3%\Bill\"
> echo.
> echo Press the Space Bar to close this window.
> pause > nul
>
> It will back up all new and modified data files from your profile
> folder to one of 7 folders called "Mon", "Tue" etc., thus giving
> you plenty of opportunity to retrieve an earlier version of a file
> that may have been damaged for some reason.
>
> You can consolidate the seven backup folders once every
> month with this batch file:
>
> @echo off
> for %%a in (Mon Tue Wed Thu Fri Sat Sun) do (
> xcopy /d /s /y X:\%%a X:\Full\
> rd /s /q X:\%%a
> )
>
> After you have run this batch file, the folder X:\Full will
> contain the latest version of every backed up file.
>
>
> "Bill W" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Data files
>>
>> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> >
>> > "Bill W" <(E-Mail Removed)> wrote in message
>> > news:(E-Mail Removed)...
>> >> I just purchased a new external drive and want to use it to set up a
>> >> regular, automatic backup process. I currently have 2 software

> options -
>> >> Roxio's Backup MyPC and Microsoft's standard backup utility. I am
>> > planning
>> >> on using Microsoft's backup and perform a one-time total back followed

> by
>> >> weekly differential backups. Each week the new differential backup

> file
>> >> will replace the prior week's differential backup file. Can anyone
>> > suggest
>> >> a better plan or better backup software? Thank you for your help. I
>> >> want
>> >> to do this right.
>> >>
>> >>
>> >
>> > Are you trying to back up your installation or your data files?
>> >
>> >

>>
>>

>
>



 
Reply With Quote
 
Plato
Guest
Posts: n/a
 
      3rd Jan 2007
Bill W wrote:
>
> I just purchased a new external drive and want to use it to set up a


Best backup to to save the very most important data to write once cds.

--
http://www.bootdisk.com/


 
Reply With Quote
 
Rock
Guest
Posts: n/a
 
      3rd Jan 2007
"Bill W" wrote

>I just purchased a new external drive and want to use it to set up a
>regular, automatic backup process. I currently have 2 software options -
>Roxio's Backup MyPC and Microsoft's standard backup utility. I am planning
>on using Microsoft's backup and perform a one-time total back followed by
>weekly differential backups. Each week the new differential backup file
>will replace the prior week's differential backup file. Can anyone suggest
>a better plan or better backup software? Thank you for your help. I want
>to do this right.


Have you thought about getting a drive imaging program such as Acronis True
Image to save a compressed image of the internal drives to the external
drive. Then if something damages the installation, restore the image and in
a matter of minutes you're back in business.

--
Rock [MVP - User/Shell]

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Does a harddrive image backup interfere with incremental backup process? Bob F Windows XP General 6 22nd Apr 2011 01:04 PM
L8: Backup hang half way during backup process alisampras Support 0 11th Mar 2009 04:03 AM
Software Load Problem: Software Appears in Process Tab But Not In Application Tab Burt Convy Windows XP General 3 29th Nov 2006 01:34 AM
Re: Affordable backup software not powerful enough? Try Simply Safe Backup!<-SPAM Bob I Microsoft Windows 2000 Terminal Server Applications 0 20th Jan 2005 09:32 PM
Re: Affordable backup software not powerful enough? Try Simply Safe Backup!<-SPAM Bob I Microsoft Windows 2000 File System 0 20th Jan 2005 09:32 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:06 AM.