Okay, I got the following out of my kixtart book, I know this much, that this cmd reads the computer names from a .txt file called workstations.txt. My problem seems to be when I want it to read each computer and then mk a folder in there C:\.

I tried to add the following code in addition to it and it didn't work.
Code:
MD("\\" + $Machine + "\c$$\test")


I'm probably way off but for learning purposes can someone explain to me why that doesn't work and show me the correct way

thanks

Code:
  $ = Open(1,"C:\workstations.txt") 
$Machine = ReadLine (1)
While @Error = 0
?$Machine
$Machine = ReadLine (1)


Loop