views:

1391

answers:

2

I'm working on a script to get started in Powershell. I'm trying to convert a working VBScript script that enumerates mapped network drives on a remote Windows computer.

One of the tasks is to use remote WMI to read the registry and find the process owner of explorer.exe in order to determine who is logged in. This seems easy enough going by this guide.

However, the WMI method I need to call is GetOwner() from Win32_Process, which requires two output parameters to store its return value.

How can I call a method with output parameters? When I try to give it two strings, I get the error: Cannot find an overload for "GetOwner" and the argument count: "2".. The MSDN page says there are 2 parameters, so I'm not sure what I'm doing wrong.

+3  A: 

$explorer = gwmi Win32_Process -computerName computerName -filter "Name='explorer.exe' and SessionID=0"

$explorer.GetOwner() | select user,domain

Shay Levy
Sweet !
spoulson
I'd give you doublevotes if I could. This is a better approach, but unfortunately doesn't match the main question so I kinda can't assign this as the accepted answer.
spoulson
I may be missing something but the method signature doesn't show the overload you mentioned:PS > $explorer.GetOwner.OverloadDefinitionsSystem.Management.ManagementBaseObject GetOwner()
Shay Levy
You're using a different method. I don't really see why, or how I would've known, that the Win32_Process doc shows two output parameters, but via Powershell it accepts none. Does Powershell simply redirect output parameters as output sets?
spoulson