Client Management Suite

 View Only
  • 1.  Need printer report from Altiris

    Posted Jun 16, 2016 01:17 PM

    I need query all our network printers with Printer name, IP address, subnetmask, gateway, I don't know where is the table name has all this info

     

    Thanks

     

    Lillian



  • 2.  RE: Need printer report from Altiris

    Broadcom Employee
    Posted Jun 17, 2016 02:33 AM

    Hi,

    Try Inv_AeX_AC_TCPIP and Inv_AeX_AC_TCPIPv6 - these tables contain all the info about known network devices.

    Thank you,

    Alex.



  • 3.  RE: Need printer report from Altiris

    Posted Jun 17, 2016 01:01 PM

    I just run the query

    selct * from inv_Aex_AC_TCPIP, it only show all my computers devices, not priter.

     

    Thanks

     

    Lillian

     



  • 4.  RE: Need printer report from Altiris

    Broadcom Employee
    Posted Jun 20, 2016 04:33 AM

    Hi,

    Actually there is built-in report "All Network Printers" in NS console - do you see any data in it?

    06202016--printers-report.png

    Thank you,

    Alex.



  • 5.  RE: Need printer report from Altiris

    Broadcom Employee
    Posted Jun 20, 2016 07:19 AM

    More info: there are at least two ways to detect printers in the network:

    1. Run Network Discovery task (Home -> Discovery and Inventory -> Network Discovery) in your network.

    2. Import corresponding resources from AD (Action -> Discover -> Import Microsoft Active Directory, select "Import Print Queue resources...")

    There are several views in the database which contain data about discovered printers like: vNetworkPrinter, vNetworkPrinterResource, vRM_Network_Printer_Item

    Priners inventory information stored in the tabel: "Inv_ID_Network_Printer".

    HTH,

    Alex.

     

     



  • 6.  RE: Need printer report from Altiris

    Posted Jul 12, 2016 12:55 PM

    Alex,

     

        I run all the table you gave to me, it look good, but can I have those printer name with IP address, subnet mask, default gateway?

       where are this table?

     

    Thanks

     

    Lillian



  • 7.  RE: Need printer report from Altiris

    Broadcom Employee
    Posted Aug 31, 2016 07:52 AM

    Hi Lillian,

    Please try following query:

    SELECT [Name], [IP Address], [Subnet Mask], [Subnet], [Default Gateway] FROM Inv_ID_Network_Printer
    LEFT JOIN Inv_AeX_AC_TCPIP ON Inv_ID_Network_Printer._ResourceGuid = Inv_AeX_AC_TCPIP._ResourceGuid

    Thank you,

    Alex.