Reputation: 23
In the Services.exe, For each service, we can see two types of LogOn
I am just wondering is there any way to classify the LogOn accounts in "This account" to a particular set of enum or groups.
For eg:
Please give me some insights on this!
Upvotes: 0
Views: 425
Reputation: 1341
You can look into services registry branch
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<your sevice name>
.
The value ObjectName
is what you are looking for.
It will be text string like
NT AUTHORITY\NetworkService
NT AUTHORITY\LocalService
LocalSystem
in case of build-in credentials.
Upvotes: 0