SteveC
SteveC

Reputation: 16815

Setting permissions on application event log

Is there some way to set the permissions on a Windows event log, in this case Application, similar to what you can do for directories and files ?

Upvotes: 2

Views: 5693

Answers (1)

n8wrl
n8wrl

Reputation: 19765

Yes. We do this for the 'limited priv' account we run our web app as:

To enable Application Event Log entries for all members of USERS group:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
Edit CustomSD and append this to the end:
(A;;0x7;;;AU)

Upvotes: 5

Related Questions