Hey Richard, so to prevent the redundency since I will be mapping printers from the ini first, how exactly would I tie the results into the $sDone variable if I'm starting with the code below?
 Code:
$ID = Left(@WKSTA, 4)
$PrinterList = Split(ReadProfileString('C:\printers.ini', $ID, 'Printers'), ';')
$DefPrinter = ReadProfileString('C:\printers.ini', $ID, 'Default')
For Each $Printer in $PrinterList
	AddPrinterConnection($Printer)
Next
SetDefaultPrinter($DefPrinter)

 


thanks mate, this site has been a lifesaver