Page 1 of 1
How to backup the encryption used with Syncovery on Windows?
Posted: Tue Apr 30, 2024 2:44 pm
by tukan
Hi all,
I would like to have a complete off-line backup with complete possibility to decrypt all encrypted files. I would store the information in e.g. Veracrypt container so it would be still safe.
Is there a way to backup the encryption information used in Syncovery?
Thank you.
Re: How to backup the encryption used with Syncovery on Windows?
Posted: Tue Apr 30, 2024 3:12 pm
by tobias
Hello,
the only information you need is the encryption Password Phrase, which you can find in each profile unter "Compress/Encrypt", on the "Encrypt" tab sheet.
Re: How to backup the encryption used with Syncovery on Windows?
Posted: Wed May 01, 2024 8:53 am
by tukan
tobias wrote: Tue Apr 30, 2024 3:12 pm
Hello,
the only information you need is the encryption Password Phrase, which you can find in each profile unter "Compress/Encrypt", on the "Encrypt" tab sheet.
Thank you Tobias for your reply. For encryption yes, but I have also scrambled the files. How do I know which file is which? This also applies to deleted files directory, how to unscramble the files without Syncovery?
Re: How to backup the encryption used with Syncovery on Windows?
Posted: Wed May 01, 2024 10:29 am
by tobias
Hi,
you can't really unscramble the filenames without Syncovery. But don't worry, Syncovery will always be there.
However I will provide a way to export a list or CSV table where you can look up encrypted file names.
In general only use encrypted filenames if you really really feel the need for it. It makes things more complicated.
Re: How to backup the encryption used with Syncovery on Windows?
Posted: Sun May 05, 2024 10:55 am
by tukan
tobias wrote: Wed May 01, 2024 10:29 am
Hi,
you can't really unscramble the filenames without Syncovery. But don't worry, Syncovery will always be there.
However I will provide a way to export a list or CSV table where you can look up encrypted file names.
In general only use encrypted filenames if you really really feel the need for it. It makes things more complicated.
The exporting feature would be great. It would be great if this could be automated for off-line backup workflow.
I always try to scramble the filenames only when absolutely necessary. In this workflow we have about 300k files total. From those we scramble about ~500 files, which is still far more than manageable manually. Unfortunately, in this use-case it is needed, no way around it.
Re: How to backup the encryption used with Syncovery on Windows?
Posted: Tue Jan 06, 2026 9:45 pm
by tobias
Hello,
the newest Syncovery 11.12 can now export a CSV file via the menu in the Sync Preview (in the Tools submenu).
You can also automate export with a PascalScript like this:
Code: Select all
function OnProfileResults(const FilesCopiedL2R,FilesCopiedR2L:Integer;
const FilesToCopyL2R,FilesToCopyR2L:Integer;
const BytesCopiedL2R,BytesCopiedR2L:Int64;
const ResultString:UnicodeString;
const Error:Boolean):Boolean;
begin
Result:=true;
ExportFileListTo('F:\Tests\exportedautomatically.csv');
end;