Hi Forum! Hi Developers.
I use Duplicate for a long time, thanks to all developers and contributors for that great piece of software!
For friend which is not so experienced with computers, want to start a Duplicati Backup when a given USB Device is plugged in in Windows11. Starting the Backup is already working, but i have the problem, that the created backup Fileset version does not show up in the WebUI.
This is what i have done:
- Installed Duplicati Service with “–portable-mode”
- Start WebUI and set up a Backup Job to USB Device
- Exported Backup Job to Command-Line Command with the WebUI
- Put exported Command in a Batch file (attached at the end of the post)
If i run the batch file as Administrator the Backup runs with no errors.
But if i check in the WebUI it says “Last Backup: never”
I can restore Files from the Backup, but before it says “unknown Backup size and versions”
I have tried the following, but with no success:
- Stop Duplicati Service before running Commandline Backup
- Added the Option "–server-datafolder=“C:\Program Files\Duplicati 2\data” corresponding to the Services “–protable-mode”
Does someone has an advice for me how to get the Data about existing Backups in the Web-UI in sync with the runs from the commandline?
Here is my Batch File that runs the Backup:
net stop duplicati
“C:\Program Files\Duplicati 2\Duplicati.CommandLine.exe” backup “file://C:\duplivolume\” “C:\Users\admin\Desktop\” --backup-name=Test --dbpath=“C:\Program Files\Duplicati 2\data\VBQIHMMIAQ.sqlite” --encryption-module= --compression-module=zip --dblock-size=100MB --no-encryption=true --disable-module=console-password-input --server-datafolder=“C:\Program Files\Duplicati 2\data”
net start duplicati
Yours, Gerd