Client Management Suite

 View Only
  • 1.  Require report to show services being started by which AD account.

    Posted Oct 07, 2014 01:35 AM

    Team,

    Can we find a report from Altiris server from which we can know that which services being started by which user AD ID.

    Because many user’s starting and stopping server’s services. Please provide me solution. 



  • 2.  RE: Require report to show services being started by which AD account.
    Best Answer

    Posted Oct 07, 2014 01:36 AM

    Hi,

    Please check this.

     

    select

    vc.Name [Computer Name]

    ,vc.[OS Name]

    ,svc.Name [Service Name]

    ,svc.Description

    ,svc.StartupType

    ,svc.LogonAs

    from vComputer vc

    join Inv_AeX_AC_NT_Services svc on svc._ResourceGuid = vc.Guid

    where vc.[OS Name] like '%server%'

    and svc.LogonAs not in

    ('LocalSystem',

    'NT AUTHORITY\LocalService',

    'NT AUTHORITY\NetworkService',

    'NT AUTHORITY\NETWORK SERVICE',

    'NT AUTHORITY\LOCAL SERVICE'

    )



  • 3.  RE: Require report to show services being started by which AD account.

    Posted Oct 07, 2014 09:28 AM

    Are you trying to find out what user account a Windows service is configured to use (the Logon As value)?  Or are you asking what user is manually stopping and starting services.  For the first item, the report Ambesh provided should help.  If the second item, that would require analyzing the security logs.  I'm not aware of any option to pull that information into Altiris, other than perhaps Monitor Solution but I'm not an expert on that product.  



  • 4.  RE: Require report to show services being started by which AD account.

    Posted Oct 10, 2014 04:55 AM

    Hello dst_admin,

    Any update on this. or you are looking for more help.