Client Management Suite

 View Only
  • 1.  How can create report for primary login user for machine

    Posted Dec 26, 2013 02:25 PM

    I need to find out who is primary login to each machine with the report has domain, user, computer name, IP address, Primary login user.

    which table I need to join with vcomputer?

    I only need the first initial and last name for the primary login user, I don't need the domian

    example: gpd\test, I need to strip out gpd domain, only keep test as primary user

     

    Thanks

     

    Lillian

     



  • 2.  RE: How can create report for primary login user for machine



  • 3.  RE: How can create report for primary login user for machine

    Posted Dec 27, 2013 07:12 AM

    Actually the view vcomputer brings you the primary user for the machine. Do you need the first and last names registered for the domain user on Active Directory? Is that what you're trying to accomplish?



  • 4.  RE: How can create report for primary login user for machine

    Posted Jan 27, 2014 11:47 PM

    Please check the Reports below

    Reports  
     Discovery and Inventory  
     Inventory  
     Windows  
     User  
     Primary User  
     Primary User by Computer


    Reports  
     Discovery and Inventory  
     Inventory  
     Windows  
     User  
     Primary User  
     Primary User on Multiple Computers
     
     
     



  • 5.  RE: How can create report for primary login user for machine

    Posted Jan 28, 2014 06:29 AM

    As already mentioned, the vComputer view already uses the Inv_AeX_AC_Primary_User table to display its User column value, so that requirement is already taken care of.

    In order to only display a certain number of characters found within a column, you need to use either the LEFT or SUBSTRING commands.

     

    I believe that the following query suits your needs:

    SELECT
    [Name] AS Computer,[Domain],LEFT ([User],1) AS [User],[IP Address]
    FROM vComputer