You can use a batch file to perform a backup. My demo copy of ProScan have stopped working many moons ago but this file I made seems to work as it should. The folder where ProScan are installed might be different on your computer so you probably need to edit that as well where the backup folder should be. The
@Echo are just a beep sound and cannot be copied from here and might create an error if not deleted but I have the file on google drive.
drive.google.com
@Echo OFF
@Echo Backup of only new recorded files from ProScan to a new location each hour
@Echo You can abort operation at any time by Ctrl+C
timeout /T 10 >nul
REM
:1
REM Set all accessible files to attribute A and leave those that are in use
@Echo
ATTRIB +A "C:\Program Files (x86)\ProScan\Recordings\*.*" /S /D
REM Copy only files that are set with attribute A and at a later date than in the backup folder
XCOPY "C:\Program Files (x86)\ProScan\Recordings\*.*" D:\ProScan_Backup\*.* /A /D /S /Y
@Echo
@Echo **** Done copying files ****
REM wait for one hour, 360 seconds and then copy any new files created
timeout /T 360 /NOBREAK
goto 1
/Ubbe