Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi,

I have a WCF(TCP/IIS7) application that needs to add performance counters on startup, this is a bit of my code for that :

category = PerformanceCounterCategory.Create("Orbit5Service", "MyApp Application Service Counters", PerformanceCounterCategoryType.SingleInstance, col);

The problem is that this will throw an "Requested registry access is not allowed." excetpion. I really need to add this performance counters on startup so how do I grant the ApplicationPoolIdentity the rights to do that?

share|improve this question

1 Answer

up vote 0 down vote accepted

I hade to change the account that runes the AppPool to a account that do have admin rights.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.