How to use a command line in Windows to set recording off/on.
Download M7RSS-HSSetup2.0.6.1.exe from the download page.
There are three options:
-exit //exit the program
-stop_rec //stop recording
-start_rec //start recording
If you want to make a task in the Windows, you can make the batch. Here is the example to help you:
//——-
@echo off
echo stop rec
“C:\Program Files (x86)\M7RSS-HD\M7RSS-HD.exe” -stop_rec
echo sleep 10 seconds
ping 10.0.0.0 -n 1 -w 10000 > nul
echo start rec
“C:\Program Files (x86)\M7RSS-HD\M7RSS-HD.exe” -start_rec
echo finish
//——-