Disconnect stream with a .cmd or a .bat

JeanXeb

Member
Hello
Can you help me to disconnect a stream with a .cmd or a .bat :
I thought it worked with the following command line, but no...
"C:\Program Files (x86)\RadioBOSS\radioboss.exe" -disconnect1
Cordially
 
Those are scheduler commands, not command line parameters.

You can do this using the API: https://manual.djsoft.net/radioboss/en/remote_controlapi.htm

The link to call this will look like this:
Code:
http://localhost:9000/?pass=123&cmd=disconnect%201
(the space here is converted to %20 because it's an URL)

Calling it from .cmd will probably be like this (untested):
Code:
start "" "http://localhost:9000/?pass=123&cmd=disconnect%201"

This should launch a default web browser and exec the command.
 
Back
Top