Symantec Management Platform (Notification Server)

 View Only
  • 1.  Display all Groups a Computer is a member of

    Posted Dec 05, 2014 11:32 AM

    Is there a report or something that I could use to view all the groups a computer is a member of?



  • 2.  RE: Display all Groups a Computer is a member of

    Posted Dec 05, 2014 12:29 PM

    Hello,

    Are you looking for what filters a computer is a member of?

    I adapted this from another post out there somewhere.  Sorry I could not find the original poster to provide you with the link.

    If this is what you're looking for, you can use this...

    SELECT vcollection.[Name] AS [Collection/Filter],vcollection.[Description]

     FROM vCollection

    JOIN CollectionMembership ON CollectionMembership.[CollectionGuid] = vcollection.[Guid]

     JOIN vComputer ON vcomputer.[Guid] = CollectionMembership.[ResourceGuid]

     WHERE vcomputer.[Name] = 'pcname here'



  • 3.  RE: Display all Groups a Computer is a member of

    Posted Dec 05, 2014 02:33 PM

    Not filters - Groups

    Organization view and Groups

    I want to know the Groups,  We use Groups for certain policies here so I would like to know the groups a PC has membership into.



  • 4.  RE: Display all Groups a Computer is a member of
    Best Answer

    Posted Dec 10, 2014 09:38 AM
      |   view attached

    I added a Right-Click action for that:

     

    Resource Type: Computer

    Action Type: URL

    Base URL: http://nsserver.domain.local/Altiris/Resource/Explorer/OrganizationalSummary.aspx?ResourceGuid=%GUID%

    Open in: New Windows

    Parameter Name: GUID = Resource Guid

     



  • 5.  RE: Display all Groups a Computer is a member of

    Posted Dec 10, 2014 12:06 PM

    I'm having a hard time finding the GUID for a Parameter name.  How are you doing this?



  • 6.  RE: Display all Groups a Computer is a member of
    Best Answer

    Posted Dec 11, 2014 07:37 AM

    First you add the parameter with "+" and choose "Resource Guid"

    Second you edit the parameter with "Pencil" and rename it to "GUID"

    This is only done to avoid spaces in the URL.

     

    Most likely the parameter is not "Resource Guid" in my screenshot anymore because the alias "GUID" was already created.

     

     

     



  • 7.  RE: Display all Groups a Computer is a member of

    Posted Dec 11, 2014 01:31 PM

    Thanks it works like a charm!  Exactly what I needed.