Symantec Management Platform (Notification Server)

 View Only
  • 1.  AUP Expiration Missing in First Time Setup

    Posted Feb 07, 2017 07:48 PM

    I just upgraded from SMP 7.5 to 8.0 HF5 where I noticed that under the First Time Setup tab, the Solution Licensing section no longer has an AUP Expiration Date column.  Thought the column was squashed way at the end although no matter what I do, I can't expand it.  No biggie as it still shows Days Left but thought I'd mention this omission in case it wasn't intentional by the developers.



  • 2.  RE: AUP Expiration Missing in First Time Setup

    Broadcom Employee
    Posted Feb 08, 2017 01:59 AM

    1) There are available default Automation Policies with custom Query:

    • Product License AUP Expiration Notice
    • Product License Count Notice
    • Product License Termination Date Notice

    As example you can use this Query from 'Product License AUP Expiration Notice" automation policy to see AUP expiration date AUP expiration remaining days

    SELECT p.Name, p.Description,
        IsNull(cast([AupDate] as nvarchar(20)), '-') as [AupDate],
        case when DATEDIFF(day, getdate(), [AupDate]) > 0 then DATEDIFF(day, getdate(), [AupDate]) else 0 end as [AUPDaysRemaining]
    FROM LicenseStatus ls inner JOIN vProduct p
        On ls.LicensingPolicyGuid = p.Guid  
    WHERE (IsTrial = 0) AND (TotalCount > 0)
    AND ((DATEDIFF(day, getdate(), [AupDate]) <= 56) AND DATEDIFF(day, getdate(), [AupDate]) >= 0)    

    2) You can open "Symantec Installation Manager" -> "Add/Update Licenses" and check current licenses(s) state along with their AUP expiration date.

    IP.