Page 1 of 1

Backup destination using Macro Tags

Posted: Fri May 04, 2018 3:33 pm
by sfeldner
I know this used to work - a while back - but now I want to use the functionality and I don't think it works anymore? I want to set my Backup Path (in Settings) to "D:\Backup\yyyy-mm-dd\" and I used to do it like this: D:\Backup\$Date\ but it doesn't recognize that Macro Tag -- unless I am doing it wrong

Re: Backup destination using Macro Tags

Posted: Fri May 04, 2018 11:47 pm
by jussij
I got the following tag by searching for Macro Tags in the Zeus help:

Code: Select all

$Date<d-MMM-yyyy> 
As a test I set the backup folder to the following using the Editor Options, Backup settings:

Code: Select all

c:\temp\Backup\$Date<d-MMM-yyyy>
For me that test created the correctly dated folder and made the backup file in that folder.

NOTE: In that testing, at first and by accident I put a space at the end of the backup folder as shown below:

Code: Select all

'c:\temp\Backup\$Date<d-MMM-yyyy> '
With the space at the end the backup folder the backup did not work.

So check to make sure your do not have any spaces at the end of that backup folder.

Cheers Jussi

Re: Backup destination using Macro Tags

Posted: Sat May 05, 2018 6:08 pm
by sfeldner
This was operator error -- I forgot to specify the format <yyyy-mm-dd>.
Thanks for the help.