Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

backing up files automatically


Cjones
 Share

Recommended Posts

All,

I have an external drive attached to my laptop. I save X2 files to the desktop and periodically copy them to the external. My question-Is there a way to set up the external hard drive to automatically backup the files once daily? So when I forget to do it manually I am still covered. Is there an application that does something like this?

TY in advance,

Chris

Link to comment
Share on other sites
  • 2 weeks later...

All,

Syncback works great. Thank you. I do have a problem though.

I set up Sync back to backup all files to my external that was plugged in by usb as drive F:.

However, when I started up my laptop today and plugged in the external it came up as drive G:. So Syncback backed up all my files on the wrong drive. Is there a way to assign a permanent Drive letter to my external? So that no matter what order or USB port I plug it into it comes up as F:.

TY,

Chris

Link to comment
Share on other sites

You could always use a batch file and pin it to the start menu

 

code:

 @echo off

:: variables

set drive=E:Data-Backup

rem set dateNtime="%date:~0,2%-%date:~3,2%-%date:~6,6%_%time:~0,2%-%time:~3,2%"

set backupcmd=xcopy /s /c /d /e /h /i /r /y

 

echo ### Backing up My Documents...

%backupcmd% "C:Data" "%drive%Data"

%backupcmd% "C:Drivers" "%drive%Drivers"

%backupcmd% "C:Apps" "%drive%Apps"

%backupcmd% "C:mcamxconfig" "%drive%mcamxconfig"

%backupcmd% "C:mcamxlatheposts" "%drive%mcamxLathePosts"

%backupcmd% "C:mcamxmillposts" "%drive%mcamxmillPosts"

%backupcmd% "C:mcamxcnc_machines" "%drive%mcamxcnc_machines"

%backupcmd% "C:mcamxmoduleworksmachsim" "%drive%mcamxmachsim"

 

 

echo ### Backing up Favorites...

%backupcmd% "%USERPROFILE%Favorites" "%drive%Favorites"

 

 

echo ### 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 ### Backing up email and contacts (MS Outlook)...

%backupcmd% "%USERPROFILE%Local SettingsApplication DataMicrosoftOutlook" "%drive%Outlook"

 

rem echo ### Backing up the Registry...

if not exist "%drive%Registry" mkdir "%drive%Registry"

if exist "%drive%Registryregbackup.reg" del "%drive%Registryregbackup.reg"

regedit /e "%drive%Registryregbackup.reg"

 

:: use below syntax to backup other directories...

:: %backupcmd% "...source directory..." "%drive%...destination dir..."

 

echo Backup Complete!

@pause

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...