Have a situation where I want to control some FOMAKO cameras using VISCA, but from a windows command prompt.
You'll need two programs
NCAT (this will send the actual HEX commands)
https://nmap.org/dist/nmap-7.98-setup.exe
and
XXD (This tool will translate HEX commands)
https://sourceforge.net/projects/xxd-for-windows/
Download and install these.
From a simplicity sake, drop XXD into a folder that will contain your batch files
the command syntax is as follows:
echo 'HEX VALUE' | xxd -r -p | ncat CAMERA_IP VISCA_PORT
So the example below will send the HEX to the camera at 192.168.0.11 port 52381 and change it to recall a set point #3 (subsitute 03 in bold for 01 or 02 or whatever preset value you want to recall.
echo '8101043f0203ff' | xxd -r -p | ncat 192.168.0.11 52381