Sorry. We did a 63 mile ride to get a badge in Strava and it wiped me out.
So, if you're still curious, the first thing you'll have to do to get this to work is to enable telnet in windows. It's very simple. Here's a guide.
https://www.technipages.com/windows-10-enable-telnetThen, create two files in notepad or whatever, and save them as whateveryouwant.vbs. Here's the code I used to paste into the files. This one is to pause all folding.
Set cloner = CreateObject("WScript.Shell")
cloner.run"cmd", true
WScript.Sleep 300
cloner.SendKeys"telnet 127.0.0.1 36330"
cloner.SendKeys("{Enter}")
WScript.Sleep 300
cloner.SendKeys"pause"
cloner.SendKeys("{Enter}")
WScript.Sleep 500
cloner.SendKeys"quit"
cloner.SendKeys("{Enter}")
WScript.Sleep 500
cloner.SendKeys"exit"
cloner.SendKeys("{Enter}")
And here's the code for unpausing.
Set cloner = CreateObject("WScript.Shell")
cloner.run"cmd", true
WScript.Sleep 300
cloner.SendKeys"telnet 127.0.0.1 36330"
cloner.SendKeys("{Enter}")
WScript.Sleep 300
cloner.SendKeys"unpause"
cloner.SendKeys("{Enter}")
WScript.Sleep 300
cloner.SendKeys"quit"
cloner.SendKeys("{Enter}")
WScript.Sleep 300
cloner.SendKeys"exit"
cloner.SendKeys("{Enter}")
Like I mentioned before, in your cause you'd just change one line in each script to something like this:
cloner.SendKeys"pause 1"
That's an educated guess as to the ID of your main GPU.
Running the file should work just fine. Then I used autohotkey to make some hotkeys that run those scripts. If you want I can help you with that too, but I already feel like I'm explaining addition to a mathematician, as I take it you know quite a bit more about computers and coding than I do.
EDIT: Previous version had wrong syntax for pausing individual slots.