Yep this is the problem I had, I think you need a Bi-Directional cable.

Here is that code converted to KiX.

Anyone got PostPrep working with this new board, I get funny characters everywhere.

$strComputer = "."

$objWMIService = GetObject("winmgmts:"+"{impersonationLevel=impersonate}!\\"+$strComputer+"\root\cimv2")
$colInstalledPrinters = $objWMIService.ExecQuery ("Select * from Win32_Printer")


For Each $objPrinter In $colInstalledPrinters
? "Name: "+$objPrinter.Name
? "Location: "+$objPrinter.Location


Select Case $objPrinter.PrinterStatus
Case 1
$strPrinterStatus = "Other"
Case 2
$strPrinterStatus = "Unknown"
Case 3
$strPrinterStatus = "Idle"
Case 4
$strPrinterStatus = "Printing"
Case 5
$strPrinterStatus = "Warmup"
Case 6
$strPrinterStatus = "case 6"
Case 7
$strPrinterStatus = "offline"
EndSelect
? "Printer Status: "+$strPrinterStatus
? "Server Name: "+$objPrinter.ServerName
? "Share Name: "+$objPrinter.ShareName
Next



Edited by Richard Farthing (2004-07-30 12:09 PM)