Koozali.org: home of the SME Server
Obsolete Releases => SME 9.x Contribs => Topic started by: cattledog on February 15, 2017, 09:30:32 AM
-
Hi all, what is the best backup program/contib to backup a windows drive not the system drive but just a windows spare hdd on a windows 7?
Cheers in advance :-P
-
please, tell us exactly what's your aim :-)
IIUC, you have a SME server, an external W7 client with an addictional HD (not the system one) and you wish to make a backup of this drive with SME.. am I right?
-
please, tell us exactly what's your aim :-)
IIUC, you have a SME server, an external W7 client with an addictional HD (not the system one) and you wish to make a backup of this drive with SME.. am I right?
Yes this is correct if not the whole drive just a couple of folders...ie: will, house paperwork..etc
-
well..
assuming that the addictional disk is shared on w7 as (example) E$, a script on SME that mounts it with valid credentials, sync the desidered content on another dir and unmount the disk should do the job.
if you want something more efficient, take a look at backuppc (which is an overkill here IMO) or, if you wish to try it and report back, take a look at urbackup (https://www.urbackup.org/)
-
i use a simple dos batch file on the windows machine, then run the scheduler to activate it on specific time, daily or weekly, no software needed.
hddbackup.bat
*************
@ echo off
cd\
CLS
Echo Your hard drive is being backed up and cleaned of temp files
cleanmgr /sagerun:99
echo mapping drive L:
echo connecting to server
echo removing old map
net use L: /d
net use L: \\172.16.10.2\John /persistent:yes
echo (ip address of your sme server)
echo Found Server
robocopy "C:\Users\john\AppData\Roaming\Thunderbird" l:\thunderbird\ /e /R:2 /w:2
robocopy "C:\Users\John\Downloads" l:\downloads\ /e /purge
robocopy "C:\Users\John\Pictures" l:\pictures\ /e
robocopy "C:\Users\John\Documents\data2017" l:\documents\data2017\ /e /purge
robocopy "C:\Users\John\Desktop" l:\desktop\ /e purge
net use L: /d
exit
*******************
hope this could help
thanks
john
-
also have a look there : https://wiki.contribs.org/BackupPC#Backup_a_Windows_Client_with_rsync
great if you want to be able to have multiple versions, and restore a file on demand
-
i use a simple dos batch file on the windows machine, then run the scheduler to activate it on specific time, daily or weekly, no software needed.
hddbackup.bat
*************
@ echo off
cd\
CLS
Echo Your hard drive is being backed up and cleaned of temp files
cleanmgr /sagerun:99
echo mapping drive L:
echo connecting to server
echo removing old map
net use L: /d
net use L: \\172.16.10.2\John /persistent:yes
echo (ip address of your sme server)
echo Found Server
robocopy "C:\Users\john\AppData\Roaming\Thunderbird" l:\thunderbird\ /e /R:2 /w:2
robocopy "C:\Users\John\Downloads" l:\downloads\ /e /purge
robocopy "C:\Users\John\Pictures" l:\pictures\ /e
robocopy "C:\Users\John\Documents\data2017" l:\documents\data2017\ /e /purge
robocopy "C:\Users\John\Desktop" l:\desktop\ /e purge
net use L: /d
exit
*******************
hope this could help
thanks
john
Thankyou