Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey all, I'm having trouble with PerfMon on one system out of fifteen in a development environment. Accessing it from the local machine is fine but connecting to it remotely throws a "Cannot connect" error.

Each machine is running Win 2003, is connected to the same domain and I have admin rights to all.

There were some services set to disabled which are normally enabled by default so I've set these to match the other machines on the network - still have the same problem.

Any ideas?

Cheers

**Update**

Ok - I found it was the remote registry service not running correctly causing the above error; Once that was enabled Perfmon is now telling me "No such interface supported".

If I connect through Computer Management, it fails the first time, but the second attempt is successful. Connecting through perfmon fails everytime.

share|improve this question
1  
and that is programming related how? – Mitch Wheat Mar 23 '11 at 0:45
good point - I'm trying to connect to performance counters through WMI, but can't even get in via Perfmon. Feel free to move the topic if you don't think it's related. – brainwood Mar 23 '11 at 0:47

2 Answers

up vote 3 down vote accepted

Fixed - for anyone that runs into this issue, hopefully this can help you..

Enabling Remote Registry fixed my first problem.

The second issue, "No such interface supported" turned out to be permissions issues within the registry. Apparently the machine had some pretty obscure permissions set to specific registry keys a long time ago, which are now irrelevant.

Resetting permissions with secedit fixed it up -

secedit /configure /cfg %windir%\repair\secsetup.inf /db secsetup.sdb /verbose

Perfmon counters are now accessible remotely.

share|improve this answer

I fixed my case as follows:

  • Add Firewall rule Performance Logs and Alerts from the predefined rule list.
  • From client, run the Performance Monitor as the remote user
    Eg: runas /user:remote_machine\username "mmc perfmon.msc"

Of course, the user must be at least in the user groups "Performance Log users" or "Performance Monitor Users".

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.