Property Name
PrinterName
Property Type
String
Description
Gets and sets the name of the specified printer.
Remarks
The user must have administrative privileges on the print queue to
use this method.
Example
Dim PrintQueueInfo As IprintQueueInfo
'Get the IPrintQueueInfo interface. In the path HP DeskJet '500C is
the print queue.
Set printQueueInfo = GetObject ("NTDS://MSFT/MOON/HP DeskJet
500C")
'Change the name of the printer
printQueueInfo.PrinterName = "DeskJet"
'Commit the changes to the print queue
PrintQueueInfo.SetInfo
See Also