In the Services.exe, For each service, we can see two types of LogOn
- Local System account
- This account.
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:
- ./SomeUsername as Local User Account,
- NT Authority/LocalService as localService
- NT Authority/NetworkService as Network Service and so on.
Please give me some insights on this!

You can look into services registry branch
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<your sevice name>.The value
ObjectNameis what you are looking for.It will be text string like
NT AUTHORITY\NetworkServiceNT AUTHORITY\LocalServiceLocalSystemin case of build-in credentials.