How can I run many commands at the same time...
Lets say I need to ping 6 hosts at once, something like:
$var1 = Ping("www.AutoItScript.com",250)
$var2 = Ping("google.com",150)
$var3 = Ping("gadzila.com",100)
$var4 = Ping("yahoo.com",50)
$var5 = Ping("enysite.com",100)
$var6 = Ping("sexycompany.org",200)
But this this script will run one PING after another, but how can i run them all at the same time and get result ?