Hi all,

I'm new to kixtart. But I can already say it is one of the more handy things to know. I'm also proud that it was a dutchman who invented it. Ofcourse with the input of many others.

I would like some help on the following piece of code wich i cannot get to work properly:
code:
$server = server
$shares = Mark,www,hdd,Public
$drives = e:,f:,g:,h:
$I = 0

FOR EACH $mapping IN $shares
use $drives[$I] \\$server\$mapping
$I = $I + 1
NEXT

I think it obvious what I want it to do, but it wont work right. So... What am I doing wrong?

Mark