Batch Backup

How can I backup all the business I manage at once please?

run backup software on Managers application data directory if you run a local server or desktop version of Manager.

I have create a .bat file with the following commands:
echo off
for /f “delims=” %%a in (‘wmic OS Get localdatetime ^| find “.”’) do set dt=%%a
set YYYY=%dt:~0,4%
set MM=%dt:~4,2%
set DD=%dt:~6,2%
set HH=%dt:~8,2%
set Min=%dt:~10,2%
set Sec=%dt:~12,2%
set stamp=ManagerBackup_%YYYY%%MM%%DD%@%HH%%Min%
mkdir %stamp%
cd %stamp%
xcopy “C:\Bios\Manager*.*” /s

and then I run this .bat file from windows scheduler
You have to replace last command with the path your data is stored

A button to generate a backup for all companies in an archive file would be very useful for accounting service organisations using Manager Cloud/Server.

2 Likes