Hi,
I have a python script set up with several TV nodes listed. I choose one and the script sends all needed info to the command line which starts TV and logs my in to the chosen node. The line that does the actual work is this:
retval = subprocess.call(['/program files (x86)/teamviewer/teamviewer.exe', '-i', tv_ID, '-P', '123'])
It was working swimmingly until about a month ago. Now TV is called but tries to use the last connection that I used no matter once. print() shows the above line is still formed correctly.
Now even the command line on its own without Python doesn't seem to be working either. Which I suppose would be the root cause. Has -i been removed as a command line option?
Thanks - A