How 'bout something like this:
Code:
Dim $asPCs, $sPC
$asPCs="PRC03","PRC04","PRC06","PRC07","PRC08","PRC09","PRC10","PRC11","PRC12","PROP02"
For Each $sPC in $asPCs
"Checking "+$sPC+@CRLF
Use G: /delete /persistent
USE G: "\\"+$sPC+"\C$$" /USER:ADMINISTRATOR /PASSWORD:PASSWORD_OBSCURED
If @ERROR
"Could not map G: to this PC"+@CRLF
"Error is ["+@ERROR+"] "+@SERROR+@CRLF
Else
; Do your version checking here...
EndIf
Next