Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
2k views

How can I improve WMI performance in .NET?

I've inherited code that makes numerous remote WMI calls. When I repeatedly pause execution and look at the call-stack it's almost always in a ManagementScope.Connect() call. A new connection seems ...
6
votes
2answers
633 views

I have a SID of a user account, and I want the SIDs of the groups it belongs to

This has to be obtained from a remote machine. The following query works not for SIDs, but for group and account names. "SELECT GroupComponent FROM Win32_GroupUser WHERE PartComponent = ...
4
votes
2answers
2k views

How to join in a WMI Query (WQL)

I want to get the serial number of the boot-harddisk via a WQL query. The boot-partition can be retrieved using the following query: SELECT * FROM Win32_DiskPartition where BootPartition=True The ...
2
votes
2answers
71 views

How do I count the total number of rows returned from a WQL query?

I am trying to find the total number of CPUs on a computer via get-wmiobject. The query: select * from win32_processor returns more than 1 row if there is more than 1 processor on the computer. WQL ...
2
votes
1answer
215 views

Calling WMI methods via a WQL query

I'd like to call a static method via WMI using WQL (basically the equivalent of the "Execute Method" button in wbemtest.exe), but I'm having trouble finding syntax examples. I have a custom WMI ...
2
votes
2answers
1k views

How to get a count of ManagementObjects (WMI results) without enumerating through the collection in .NET

When querying for large ammount of data through WMI (say the windows events log Win32_NTLogEvent) it is very useful to know what kind of numbers you are getting yourself into before downloading all ...
2
votes
1answer
287 views

MSNdis_StatusMediaDisconnect and device Unique Name

I'm using ManagementEventWatcher to watch the disconnection of network cable using System.Management. ManagementEventWatcher with the WQL: SELECT * FROM MSNdis_StatusMediaDisconnect, and the ...
2
votes
3answers
946 views

List of WMIEvent classes

Recently I have been learning about WMI and WQL. I found out the list of Win32 classes (from MSDN) that I can query for but I am not able to find out the list of event classes (should be the subset of ...
1
vote
2answers
186 views

WMI performance query

I am having an issue with a WMI query. I use a WMI query to search and resume an instance in BizTalk. When there are not that many instances (so when the data isn't that much) the query performs ...
1
vote
0answers
68 views

Changing WMI/WQL results output

Now this is a odd one but as I don't know WMI/WQL I hope someone can help and spot a simple mistake.. I need to find out if a system is a domain controller or not - simple with WMI select DomainRole ...
1
vote
0answers
236 views

Search For Win32_Directory using the Volume Guid

I am trying to check if a directory exists on a remote computer by using the Volume GUID rather than the Volume Name. Is there any way in WMI to accomplish this? I have a tried a few different ...
1
vote
1answer
512 views

Reliably get Latest Event Log Record with WQL

I have written an application which collects windows logs from linux, via the Zenoss wmi-client package. It uses WQL to query the Event log and parses the return. My problem is trying to find the ...
1
vote
1answer
493 views

Constructor ManagementObject(string path) fails to parse strings obtained from querying Win32_GroupUser class (C#)

So, I WMI query a remote machine to get the members of its Administrators group: SELECT PartComponent FROM Win32_GroupUser WHERE GroupComponent = ...
1
vote
1answer
737 views

Listing windows user accounts using C#

I have to list all users (both local system and domain). I tried using WQL but it takes a lot of time for the program to run. Is there any other way to get it from registry? Any help would be ...
1
vote
5answers
534 views

What format is this time value in?

I have a WMI query that specifies time in this format '20090219000000.000000+480' Can someone tell me what format this is, and does .NET have any built-in functionality to work with it? EDIT This ...
1
vote
1answer
243 views

Returning mounted drives on server in WQL

I am trying create a simple WQL query where I only return mounted drives on a server. These are drives that do not have a drive letter associated with them. I tried the following sytnax and it does ...
0
votes
1answer
12 views

How do I find out what objects I can query with WQL?

I want to use WQL to get information about IIS worker processes, plus just about everything in Resource Manager -- disk usage, memory usage, CPU usage, and network usage. Where can I find a list of ...
0
votes
1answer
65 views

How does logging in interactively to a Windows host effect WMI queries to that host?

I have an application that performs WMI queries on remote hosts. I'm attempting to define the minimal amount of security permissions required for the user used to do the queries. I've defined a user ...
0
votes
0answers
117 views

SWbemServices.ExecQuery - “Invalid Parameter” when adding a WHERE clause

I have the following JavaScript to execute a WMI query on a remote Windows host: var wmiLocator = WScript.CreateObject("WbemScripting.Swbemlocator"); var wmiService = wmiLocator.ConnectServer(host, ...
0
votes
0answers
107 views

Hyper-V : How to retrieve mac address associated to a connection using wql in Java

I'd like to retrieve the mac address associated to a Msvm_VirtualSwitch. So far I can list all using: Select * from Msvm_VirtualSwitch According to this post I should list all Msvm_SwitchPort. But ...
0
votes
1answer
634 views

Strange results from win32_NetworkAdapterConfiguration

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using ...
0
votes
2answers
784 views

query on Win32_NTLogEvent WHERE Logfile = 'Security' works only on remote machine

I've have a problem using the code below to retrieve data from the security log event of my local machine. I tested on various computers: the local machine is a windows xp sp3. The query has no error ...
0
votes
1answer
359 views

Using WQL to Limit Results on a String Match

I'm working on developing a WMI query for my application. It needs to find the assigned virtual COM port for a given VID/PID. My query currently looks like this: "SELECT DeviceID FROM ...
0
votes
2answers
259 views

WMI EventLog Time interval

Hie all, I'm trying to get eventlog entries using WMI and WQL. I can get the right log with the right sourcename of itand so on, but i can make a select query to only get result for the 5 or 10 past ...
0
votes
2answers
810 views

When querying the Win32_NTLogEvent Class from WMI with WQL is the TimeGenerated property based on Local time of the computer or GMT?

I am writing a C# windows service that is doing some churning through the eventlog on a few domain controllers. Some of them are Windows Server 2003 and some are Windows Server 2008. Upon the service ...
0
votes
4answers
578 views

WQL SELECT with optional column

I need to make a query like this: SELECT PNPDeviceID FROM Win32_NetworkAdapter WHERE AdapterTypeId = 0 Trouble is, the AdapterTypeId column isn't always present. In this case, I just want ...
0
votes
2answers
509 views

Can I get the ExecutablePath from a System.Management.EventArrivedEventArgs object?

I'm using a System.Management.ManagementEventWatcher to get the process ID and executable path for a started process: private void startWatcher_EventArrived(Object sender, EventArrivedEventArgs e) { ...
0
votes
2answers
464 views

Device driver code signing for windows XP 32 bit

I have written a device driver for a device but each time I connect the device in windows XP 32 bit, "found new hardware" wizard appears. I am signing the driver using a Comodo code signing ...
0
votes
2answers
820 views

WQL does not support TOP - need workaround

WQL (basically SQL for WMI) does not support the TOP keyword the way Sql Server and many other RDBMSs do (though the actual keyword is different sometimes but the concept is implemented.) Is there a ...
0
votes
1answer
353 views

How can I tell what WQL operators are supported on a class using powershell?

So the WQL LIKE operator isn't supported on my WMI class from this question. How do I tell ahead of time, or interactively as I write, what is/is not supported? I'd like to stick with Powershell ...
0
votes
1answer
1k views

Powershell WMI ROOT\MicrosoftExchangev2, and WQL where usage

(PS Version 1) PS C:\> $query = 'Select * From Exchange_PublicFolder WHERE Path LIKE "/Foo%"' PS C:\> $query Select * From Exchange_PublicFolder WHERE Path LIKE "/Foo%" PS C:\> gwmi ...
0
votes
1answer
925 views

How do I run the following WMI query?

How do I run the following WMI query, both programmatically to and as a one-shot deal? Can I use Visual Studio 2008, and if so what language and type of project do I setup? I'm a complete beginner at ...