Script Center > Gallery > Printing > List Printer Information
TechNet Script Center logo

Welcome to the TechNet Script Center Gallery!

Each contribution is licensed to you under a License Agreement by its owner, not Microsoft. Microsoft does not guarantee the contribution or purport to grant rights to it.

List Printer Information

(Microsoft)
VERIFIED AND TESTED BY THE SCRIPT CENTER TEAM
Rate it:
 
 
 
 
 
Script Code
Object REXX
strComputer = "."
objWMIService = .OLEObject~GetObject("winmgmts:\\"||strComputer||"\root\CIMV2")
do objItem over objWMIService~ExecQuery("Select * from Win32_Printer")
    say "Attributes:" objItem~Attributes
    say "Availability:" objItem~Availability
    z = objItem~AvailableJobSheets
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Average Pages Per Minute:" objItem~AveragePagesPerMinute
    z = objItem~Capabilities
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    z = objItem~CapabilityDescriptions
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Caption:" objItem~Caption
    z = objItem~CharSetsSupported
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Comment:" objItem~Comment
    say "Config Manager Error Code:" objItem~ConfigManagerErrorCode
    say "Config Manager User Config:" objItem~ConfigManagerUserConfig
    say "Creation Class Name:" objItem~CreationClassName
    z = objItem~CurrentCapabilities
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Current Char Set:" objItem~CurrentCharSet
    say "Current Language:" objItem~CurrentLanguage
    say "Current Mime Type:" objItem~CurrentMimeType
    say "Current Natural Language:" objItem~CurrentNaturalLanguage
    say "Curren tPaper Type:" objItem~CurrentPaperType
    say "Default:" objItem~Default
    z = objItem~DefaultCapabilities
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Default Copies:" objItem~DefaultCopies
    say "Default Language:" objItem~DefaultLanguage
    say "Default Mime Type:" objItem~DefaultMimeType
    say "Default Number Up:" objItem~DefaultNumberUp
    say "Default Paper Type:" objItem~DefaultPaperType
    say "Default Priority:" objItem~DefaultPriority
    say "Description:" objItem~Description
    say "Detected Error State:" objItem~DetectedErrorState
    say "Device ID:" objItem~DeviceID
    say "Direct:" objItem~Direct
    say "Do Complete First:" objItem~DoCompleteFirst
    say "Driver Name:" objItem~DriverName
    say "Enable BIDI:" objItem~EnableBIDI
    say "Enable Dev Query Print:" objItem~EnableDevQueryPrint
    say "Error Cleared:" objItem~ErrorCleared
    say "Error Description:" objItem~ErrorDescription
    z = objItem~ErrorInformation
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Extended Detected Error State:" objItem~ExtendedDetectedErrorState
    say "Extended Printer Status:" objItem~ExtendedPrinterStatus
    say "Hidden:" objItem~Hidden
    say "Horizontal Resolution:" objItem~HorizontalResolution
    say "Install Date:" objItem~InstallDate
    say "Job Count Since Last Reset:" objItem~JobCountSinceLastReset
    say "Keep Printed Jobs:" objItem~KeepPrintedJobs
    z = objItem~LanguagesSupported
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Last Error Code:" objItem~LastErrorCode
    say "Local:" objItem~Local
    say "Location:" objItem~Location
    say "Marking Technology:" objItem~MarkingTechnology
    say "Max Copies:" objItem~MaxCopies
    say "Max Number Up:" objItem~MaxNumberUp
    say "Max Size Supported:" objItem~MaxSizeSupported
    z = objItem~MimeTypesSupported
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Name:" objItem~Name
    z = objItem~NaturalLanguagesSupported
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Network:" objItem~Network
    z = objItem~PaperSizesSupported
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    z = objItem~PaperTypesAvailable
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Parameters:" objItem~Parameters
    say "PNP Device ID:" objItem~PNPDeviceID
    say "Port Name:" objItem~PortName
    z = objItem~PowerManagementCapabilities
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Power Management Supported:" objItem~PowerManagementSupported
    z = objItem~PrinterPaperNames
    if .NIL <> z then
        do x over z
            say objProperty.Name ": " x
    end
    say "Printer State:" objItem~PrinterState
    say "Printer Status:" objItem~PrinterStatus
    say "Print Job Data Type:" objItem~PrintJobDataType
    say "Print Processor:" objItem~PrintProcessor
    say "Priority:" objItem~Priority
    say "Published:" objItem~Published
    say "Queued:" objItem~Queued
    say "Raw Only:" objItem~RawOnly
    say "Separator File:" objItem~SeparatorFile
    say "Server Name:" objItem~ServerName
    say "Shared:" objItem~Shared
    say "Share Name:" objItem~ShareName
    say "Spool Enabled:" objItem~SpoolEnabled
    say "Start Time:" objItem~StartTime
    say "Status:" objItem~Status
    say "Status Info:" objItem~StatusInfo
    say "System Creation Class Name:" objItem~SystemCreationClassName
    say "System Name:" objItem~SystemName
    say "Time Of Last Reset:" objItem~TimeOfLastReset
    say "Until Time:" objItem~UntilTime
    say "Vertical Resolution:" objItem~VerticalResolution
    say "Work Offline:" objItem~WorkOffline
end
Platforms
Windows Server 2008 R2 No
Windows Server 2008 No
Windows Server 2003 Yes
Windows 7 No
Windows Vista No
Windows XP Yes
Windows 2000 Yes
For online peer support, join The Official Scripting Guys Forum! To provide feedback or report bugs in sample scripts, please start a new discussion on the Discussions tab for this script.
Disclaimer The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.
Be the first to create a discussion.