Reputation: 37
I have created a simple windows service (e.g. MyService.exe) and a (ATL) COMserver (e.g. MyCOMServer.exe).
I would like the service to create an instance of an interface exposed by MyCOMServer. The COMserver currently does nothing.
It works if the service account is 'Local system', or a user which is member of the administrator group, but NOT with a standard user or 'Local service'
My question is, what are the minimum required user account permissions needed? Or does it only work with an account with administrator privileges?
Upvotes: 0
Views: 188
Reputation: 16
Run dcomcnfg admin tool from an admin account, and either set the launch permissions for MyCOMServer specifically (better), or set the default COM permissions for everyone.
Upvotes: 0