daniel
June 2, 2025, 10:42am
4
Glad the panic is over… now setup a new Task Scheduler that runs and backups your flow server to a different hard drive using this script from same post:
You can automate this process with a batch script…
Please change sitename, basepath, and ncpath to match your environment.
sitename: Your IIS site under which Novacura is running
basepath: Where you want your backups to go
ncpath: The full path to the Novacura directory within the data folder
@echo off
setlocal
set sitename=Default Web Site
set basepath=C:\Users\%username%\backups\Novacura
set ncpath=C:\Novacura\Data\Novacura Flow
goto adminchk
:adminchk
ECHO Checking permissions...
net se…