Hi John I had the same problem recently except I'm using windows XP home<br>but it should work the same.<br><br>The trick is that you cannot access the method directly by calling it as for<br>some reason process.GetOwner is an integer 0 (perhaps the return code
<br>of the method or something). What you have to do is use the execMethod_<br>function.<br><br>so your code would look something like this:<br><pre>for proc in procs:<br>        result = proc.execMethod_('GetOwner')<br>        print &quot;%s's owner is %s&quot; % (
proc.Name, result.User)<br><br>And similar replacements with the other calls to GetOwner.<br>execMethod_ returns an object with two feilds User and domain.<br><br>Hope this is what you were looking for<br><br></pre><br>