@echo off

echo Robocopy Sicherung l„uft...

set firefox_source="%APPDATA%\Mozilla\Firefox\Profiles"
set firefox_target="I:\Daten\Internet\Mozilla\Firefox"
set firefox_log="I:\Daten\Internet\Mozilla\firefox_log.txt"

set thunderbird_source="%APPDATA%\Thunderbird\Profiles"
set thunderbird_target="I:\Daten\Internet\Mozilla\Thunderbird"
set thunderbird_log="I:\Daten\Internet\Mozilla\thunderbird_log.txt"

robocopy %firefox_source% %firefox_target% /MIR /R:100 /W:600 /LOG:%firefox_log% /NP > NUL
robocopy %thunderbird_source% %thunderbird_target% /MIR /R:100 /W:600 /LOG:%thunderbird_log% /NP > NUL

echo Robocopy Sicherung abgeschlossen.

exit