IPrintQueueInfo Property: IsPrinterShared

Property Name
IsPrinterShared

Property Type
Boolean

Description
Gets and sets a boolean value that indicates whether the specified printer is shared or not.

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")
'Mark the printer as shared
PrintQueueInfo.IsPrinterShared = TRUE
'Commit the changes to the print queue
PrintQueueInfo.SetInfo

 

See Also