hmmm, I would suggest that the quick and dirty way to do this would be to use the $lblStatus control to provide this extra level of detail ... in terms of slowing down your script, would suggest using short Sleep() delays for this ... example:

$lblStatus.Text = "Mapeando os drives ..."

$CMD = "net use h: \\dell_server\user /yes"
$lblStatus.Text = $CMD
shell $CMD
sleep(0.500)

$CMD = "net use i: \\dell_server\user /yes"
$lblStatus.Text = $CMD
shell $CMD
sleep(0.500)

$CMD = "net use j: \\dell_server\user /yes"
$lblStatus.Text = $CMD
shell $CMD
sleep(0.500)

And so on and so on ... you would have to customize the delay to suite your environment, etc.

-Shawn

[ 01. October 2003, 19:39: Message edited by: Shawn ]