Dom
Member
Registered: 13th Sep 03
User status: Offline
|
Anyone know of any good backup software that will just backup a directory/number of files (if they have been changed) every time windows shuts down?
been looking around and cant find anything - dont really want a program that will compress it into its own format etc, just copy the files to a different drive,
tar
|
Aaron
Member
Registered: 9th Aug 04
Location: Cottingham, East Riding
User status: Offline
|
not sure about everytime windows shuts down...but Microsoft have made a power toy for sync'ing two folders contents called SyncToy
Google "SyncToy", its free
|
Bart
Member
Registered: 19th Aug 02
Location: Midsomer Norton, Bristol Avon
User status: Offline
|
we use http://www.handybackup.com which is pretty good.
ITs simple to use, you can backup over network to any device and its also pretty cheap and inc free updates
|
Steve
Premium Member
Registered: 30th Mar 02
Location: Worcestershire Drives: Defender
User status: Offline
|
You could create a batch file that has the command
xcopy c:\blah c:\backup
shutdown -s -t 01
Then create a shortcut on the desktop to it or sumthing and call it shutdown computer, then use that tp shutdown the PC instead of normal start>shutdown
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
quote: Originally posted by Steve
You could create a batch file that has the command
xcopy c:\blah c:\backup
shutdown -s -t 01
Then create a shortcut on the desktop to it or sumthing and call it shutdown computer, then use that tp shutdown the PC instead of normal start>shutdown
that will do nicely mate never thought of using batch files lol does the xcopy command overwrite files if the same ones are found?
|
Steve
Premium Member
Registered: 30th Mar 02
Location: Worcestershire Drives: Defender
User status: Offline
|
might do, just go into dos type xcopy /? and it'l give you a list of extensions to use with it
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
cheers fella
|
James_DT
Member
Registered: 9th Apr 04
Location: Cambridgeshire
User status: Offline
|
xcopy /D:month-date-year will copy all files created/modified after the date specified. Otherwise, xcopy just overwrites files unless you tell it not to.
|
Russ
Member
Registered: 14th Mar 04
Location: Armchair
User status: Offline
|
quote: Originally posted by Steve
You could create a batch file that has the command
xcopy c:\blah c:\backup
shutdown -s -t 01
Then create a shortcut on the desktop to it or sumthing and call it shutdown computer, then use that tp shutdown the PC instead of normal start>shutdown
would i be able to exec a btch file on somebody elses pc on my network? if so do you know cmd :x
namely -
shutdown -s -t 01
|
Steve
Premium Member
Registered: 30th Mar 02
Location: Worcestershire Drives: Defender
User status: Offline
|
you can use shutdown to remotely shut down another windows xp/2000 machine provided there are no blocked ports etc, the command is
shutdown -s -m \\computername
|