Client Management Suite

 View Only
  • 1.  Moving computer to list patch management

    Posted Aug 15, 2014 03:11 AM

    Hi All

    We have a number of machines which exceeded total patch management license.

    Currently, we are replacing old machines and reinstall agent on new ones. So that we cannot add the new computer to patch mangement license list because we don't know which are current in use and which ones are not.

    How can we know which machine was not in use?

    How can we move new machine to patch management list?

    Thanks and Best Regards



  • 2.  RE: Moving computer to list patch management

    Broadcom Employee
    Posted Aug 15, 2014 04:02 AM

    You can check this thread, where is described how to reclaim license for old machines, which aren't reporting to NS server per appropriate date range:

    Also you can execute this SQL query to see list of client computers, which are using license of "Patch Management Solution" product.

    SELECT a.Guid as 'Computer Guid', a.Name as 'Computer Name', a.IsManaged, b.LicensingPolicyGuid as 'Patch Management product'
        FROM vResourceItem a
        join LicenseInUse b
        on a.Guid = b.ResourceGuid
        WHERE LicensingPolicyGuid = 'C6D19F78-1434-49AC-BEC8-D18255E99F57'
        AND IsManaged=1