Loading
It's possible to get the computer description information in the SLM or Inventory?

Our IT support team usually use the OS computer descript to input additional information as "asset number", for instance:

 

image.png 

I couldn't find this information in the Inventory Server, I'd like to confirm if is there ways to collection this from our computers and make it available to be consulted over SLM.

 

Thanks in advance.

 

 

 

 


  • As far as I'm aware the information isn't collected by the agent. Happy for someone to correct me if I'm wrong though!

     

    If I am right, you could do the below to get it in.

     

    • Custom snow-ps1 script that's included in the agent that gets the computer description (wmic path win32_operatingsystem get description)
    • Custom stored procedure that runs during the data update job to take the information from the inventory and stores it in a Custom Field assigned to each computer

     

    I'd suggest getting it done via professional services, however.

    Expand Post
    Selected as Best
  • Jelle Wijndelts (Flexera Software)

    It is possible for the agent to collect additional information from a computer. for instance collect certain registry keys. these get collected using a powershell script This data is then transferred to the Inventory server using the standard agent Snowpack file. It is then possible to add a custom stored procedure to the Data update job which can transfer the data from the inventory database into a custom field against computers.

    Expand Post
  • As far as I'm aware the information isn't collected by the agent. Happy for someone to correct me if I'm wrong though!

     

    If I am right, you could do the below to get it in.

     

    • Custom snow-ps1 script that's included in the agent that gets the computer description (wmic path win32_operatingsystem get description)
    • Custom stored procedure that runs during the data update job to take the information from the inventory and stores it in a Custom Field assigned to each computer

     

    I'd suggest getting it done via professional services, however.

    Expand Post
    Selected as Best
    • That'll work 😉

       

      The name of the powershell script needs to be something like scan-xxx.ps1.

      In the script you will have to get the description, e.g. "Get-WmiObject -Class Win32_OperatingSystem |Select Description" and put this into a variable.

      Then use the cmdlet "Yield-Registrykey" (comes via the Snow Agent) to add the information as a custom registry key to the .snowpack file.

       

      The custom registry key will actually end up in the SnowLicenseManager database after Data Update Job, but will be not accessible anywhere in the WebUI.

      So you will have to add a custom procedure to copy the information into custom fields to be able to include it into reports etc. as Laim described.

      Expand Post
  • We import arbitrary attributes from Users and Computers in AD to custom fields in SLM using Web configurator.

    It is easy to adapt if you want to add more attributes, we have quite a few at the moment, but you need help with the initial implementation.

    • If I am correct, the description of the PC as shown in the screenshot is not synced with the description in AD.

      So it depends on what information TIE/Software wants to get.

      If it is the "local" description, you will have to grab that from the computer itself.

      • That's true, I did not read the question well enough.

        You can sync them though, but that's a different discussion.

Loading
It's possible to get the computer description information in the SLM or Inventory?