How To Capture CopyStorm Runtime Logs
Windows
@ECHO OFF
REM
REM This script runs CopyStorm and relies on the notification system built into CopyStorm
REM to report the success/failure of a job. Log file information is written to stdout
REM in addition to the logging tables in the CopyStorm database.
REM
REM CopyStormRootDir - the directory in which CopyStorm is installed.
REM CopyStormConfigFile -- the name of the CopyStorm configuration file to run.
SET CopyStormRootDir=C:\Capstorm\CopyStorm
SET CopyStormConfigFile=C:\Capstorm\CapstormConfig\config.copyStorm
SET CopyStormCmd="%CopyStormRootDir%\CopyStorm.bat" -run "%CopyStormConfigFile%"
CALL %CopyStormCmd% 2>&1
EXIT /B %ERRORLEVEL%Linux
Last updated
Was this helpful?
