got the ruby script running ! In the beginning I thought I wouldn't use it, but I found a nice solution and modified the script. I shared the altbinzfolder on my downloadpc. With my laptop I'm able to check the status. Here's my script:
require 'rexml/document'
include REXML
file = File.new("//<downloadpcname/altbinz/altbinz_status.xml", "r+")
doc = Document.new(file)
root = doc.root
printf("---- %s ----\n", root.elements["title"].text )
printf("connect %9s\n", root.elements["connect"].text )
printf("Current speed %9s ", root.elements["CurrentSpeed"].text )
printf("QueueSize %9s\n", root.elements["QueueSize"].text )
printf("limit %9s ", root.elements["limit"].text )
printf("Free Space %9s\n", root.elements["FreeSpace"].text )
printf("ETA %9s\n", root.elements["ETA"].text )
sleep 5
I made a shortcut on the desktop (laptop) to the abz.rb file, so when I click it, a small popup appears for 5 seconds, containing the status.
Thanks, guys :!: