The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

WQL Subquery as field value, CIMV2 WMI WQL query for WMI-Filter

I need help on a WMI query for a Group Policy WMI-Filter. I'm querying the win32_group namespace within the root\CIMV2 WMI provider. I am doing a search for a Local Security group (like ...
0
votes
3answers
26 views

WQL query for clients by minimum OS Version Number

Say I needed a WQL query to find clients running Windows 8 or greater: WQL query Windows 8 or Greater SELECT Version FROM Win32_OperatingSystem WHERE Version >= '6.2' Wouldn't you run the risk ...
2
votes
1answer
37 views

Does WMI query allow group by?

I have a WMI query on Win32_Processor. When I test the query on a server that has 2 processors with 4 cores each it returns the same information for each core. Does WMI query allows group by, lets ...
-1
votes
1answer
71 views

Monitor Drive. Using VB Script

I want to monitor a drive for file changes, using VBScript. I have the below code. It works fine for InstanceCreationEvent and InstanceDeletionEvent. But InstanceModificationEvent is not happening. ...
0
votes
0answers
76 views

Can't open a dcom session with jinterop

I'm trying to use jinterop to run wmi queries on remote PCs, but I can't even start a dcom session. I know wmi is working because I can access it with powershell\wmic\vbscript without issues. Also, ...
2
votes
1answer
86 views

How to handle management exception for WMI

i am reading processor's details WIN32_PROCESSOR using WMI. Currently i am trying to read these property:SELECT CAPTION,L2CACHESIZE,L3CACHESIZE FROM WIN32_PROCESSOR. So that i am working with below ...
0
votes
1answer
77 views

WQL query Win32_NtLogEvent on WinRM using group by

I need a query that returns the SourceName, Logfile, EventIdentifier, Type, NumberOfEvents from Win32_NTLogEvent where NumberOfEvents is the number of events that share common SourceName, LogFile and ...
0
votes
0answers
34 views

How to get memory range used by a specific device with WMI (Windows Management Instrumentation)

How can I get the resources used by a specific device (in particular, the memory range) of a specific device knowing it's name and/or DeviceID and/or the Pci bus number, Device number and function ...
2
votes
1answer
89 views

WMI query returns nothing

I am making a query with WMI to check for a particular drive letter, if it does not exist then I want to run a method that will create it with specific settings. Now the problem I am facing is when I ...
1
vote
1answer
49 views

rebuild wmi classes with c#

i am writing c# code to rebuild the wmi classes. i found that it can be done with the help of these command as discussed here : Regsvr32 %SystemRoot%\System32\wbem\wmidcprv.dll cd /d ...
1
vote
0answers
64 views

How to convert a ManagementObjectCollection object into a format readable by Powershell?

I am trying to retrieve logical disk information from remote machines using Daniele's custom get-wmiobject function due to my need for a timeout parameter. The function works perfectly fine, but I ...
0
votes
0answers
32 views

IEnumWbemClassObject::Next method hangs when the provider is down

IEnumWbemClassObject::Next method hangs when the provider is down. The sample code snapshot while ( WBEM_S_NO_ERROR == hr) { hr = pEnumerator->Next( WBEM_INFINITE,1, &Obj, &Return ); ...
0
votes
3answers
51 views

Why Linq-to-WMI `where` query doesn' work?

This doesn't work (0 items): var cfg = from n in context.Source<Win32_NetworkAdapterConfiguration>() where n.Description == theDescription select n; But this does: var cfg = new ...
2
votes
0answers
123 views

WMI Win32_Directory fail in For-loop with error 800706BE The remote procedure call failed

I search before ask and not find anything applicable to my code. Also what I tried is commented in the code. The error 800706BE (The remote procedure call failed) appear in For..Next loop and each ...
1
vote
2answers
141 views

Send mail using VB Script?

I have the following code to monitor a drive. Now I an getting Echo for each file creation or deletion event. Is there and way to modify the WScript.Echo to send a mail notification? strDrive = "c" ...
0
votes
1answer
128 views

WMIC Command Not Working in For Loop of Batch File

I have a batch file that I am trying to run, but I keep getting an error. I think that this question is similar to I can't get the right syntax to use WMIC in batch file, but dbenham's answer ...
1
vote
1answer
118 views

Retrieving OS Name of MS Windows Platform

I need to get information on OS Name of MS Windows Platform. I've googled it and found GetVersionEx would do it. But I just need OS Name, is there any simplest way of achieving it? not using system() ...
0
votes
0answers
65 views

Win32_PrintJob _InstanceModificationEvent not working

I am using below code and is not invoking printJobEvent on PagesPrinted. It only executed once on job Added for printing. I worked with doPDF and its working very fine. With all Print Events ...
0
votes
0answers
43 views

How to get the time at which the file is modified?

I've following script: intInterval = "2" strDrive = "c:" strFolder = "\\Test\\" strComputer = "." Set objWMIService = GetObject( "winmgmts:" & "{impersonationLevel=impersonate}!\\" & ...
0
votes
1answer
82 views

WMI Win32_PageFileSetting

This code using WMI is yielding no results. I am testing on wind 7 with following WMI code. ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\CIMV2", ...
1
vote
0answers
131 views

ManagementException - Invalid Class

I am having an issue querying WMI that has me completely baffled. The Application I am building utilizes WMI counters that are installed as part of the VMware View Agent into a VDI desktop. The ...
0
votes
1answer
79 views

WMIService file results sometimes give “object does not support this property”

I am trying to modify all shortcuts on a computer. The script works fine but every now and then throws an error that the .Target property of an object is not available. Since my query only looks up ...
0
votes
1answer
68 views

is control panel program list is similar to the win32_product list…?

My task is to list all the software programs that are installed in my desktop. will i use the win32_product for displaying this list. will the following query works for this...? select * from ...
-1
votes
1answer
126 views

WMI searches with c# threading how to work more CPU efficiënt

I have a program that creates a thread to search the WMI (Win32 classes) to check for all kinds of system information. Now I create a thread for each search, but obviously when I use my combobox and ...
1
vote
0answers
170 views

Retrieve port name for excel.ActivePrinter

Hi for the print method to work on excel i need the printername and the port name like this: "printer On NE3" just as an example. The problem is, is that I use a virtual printer and the port is ...
1
vote
2answers
167 views

C++ WMI Get AccountName knowing the user SID

I want to retrieve the user AccountName knowing its SID. The SID is obtained using a WMI query: Select * from Win32_UserProfile, and i'm trying to get the user AccountName using the following query: ...
0
votes
3answers
154 views

query inbound / outbound IPv4 packet count statistics of network card programatically in c#

I want to get statistics about sent and received packet counts (IP level : including TCP, UDP, etc) of a network card. How can I query that information from windows?
1
vote
1answer
488 views

AutoIT Check If Process is running on Remote PC

I currently have some AutoIT code that will terminate a process on a remote machine, but I'm needing to find a way to add a check to see if the process is running first. After spending some time ...
0
votes
1answer
106 views

Enumerate Properties collection in vb.net

Microsoft's article, ManagementBaseObject.Properties Property, shows how to enumerate the properties in a collection For Each p As PropertyData In properties Console.WriteLine(p.Name) ...
0
votes
0answers
39 views

WMI events and Performace

My program consumes WMI event "RegistryValueChangeEvent" in order to recieve registry update notifications. But I register to this event several times to watch many value changes. In fact, I do it ...
0
votes
0answers
90 views

TimeStamp_Sys100NS returning null from Win32_PerfFormattedData_PerfProc_Process wmi

I am trying to return the TimeStamp property using a wmi query and getting an object reference error. When I look in quickwatch, the property itself is null. I've seen examples of this on the web ...
0
votes
1answer
48 views

How to know which service fire this __InstanceModificationEvent event?

I have simple codes to track service state. But in my code, i can just know service started or stopped. I want to know which service started or stopped. Here is my code samples. This is main ...
0
votes
0answers
100 views

How to get domain user SIDs from local machine when enumerating local group membership

I am enumerating a local group on Windows domain-joined machines. I'm using WMI to do this as it is very remote & supply-credentials friendly. In my scenario my code is always running remotely and ...
0
votes
0answers
227 views

VBScript - Error: Can not access read-only document

I'm trying to write a VBScript that collects basic system information and writes the data on an excel file. When executing, I get the below error message, Microsoft (R) Windows Script Host ...
1
vote
2answers
228 views

Check on avaiable port using wmi win32 class?

I am using inno setup to make an installation file. It required to pull local ip address (which I able to do by querying Win32_NetworkAdapterConfiguration) and check if a specific port is open for the ...
1
vote
1answer
836 views

Searching for a File on Remote Machine WMI C#

I want to search for a file on remote machine. I don't know the EXACT file path but I know its under C:\Windows\System My query is something like this in WMI string querystr = "SELECT * FROM ...
1
vote
1answer
1k views

Batch WMIC redirecting output and wrapping into variable

I'm trying to use WMIC to remove some old printers on our older print servers if I use the below syntax from the command line it works WMIC PRINTER WHERE "SERVERNAME LIKE '%%OLDSERVERNAME%%'" DELETE ...
1
vote
1answer
678 views

How to query Folder Size in remote computer through WMI and C#

How to query Folder Size in remote computer through WMI and C#. I need to find the each User's folder size in C:\Users in remote System through WMI. I tried Win32_Directory , CMI_DataFile but not ...
2
votes
2answers
166 views

Issues in Finding Windows Activation through SoftwareProductLicensing Class

I am using the below code to determine the activation of the Widnows7. I am getting 7 instances/product. I am not clear which product refers to original Windows 7. I am unable to find documentation ...
1
vote
2answers
182 views

Query Mapped Network Drive

This query runs fine on my local machine: strComputer = "." drive = "C:" path = "\\path\\to\\local\\folder\\" Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" ...
2
votes
1answer
287 views

Windows API equivalent to “WMIC QFE Get”

I am a newbie in C++ and currently working to get Windows Hotfix/Patch information in C++ DLL. I have evaluated the following ways: By executing a sub process in C++ code and running wmic qfe get ...
1
vote
0answers
236 views

Not able to get UniqueId of CPU using WMI classes c++

In an application, it needs to retrieve, a system specific UniqueId. SO that I have tried to retrive the UniqueId of the CPU. and I am using WMI class property to retrieve that. But on trying to ...
1
vote
1answer
809 views

Where do ManagementObjectSearcher query values come from? (WMI)

In trying to find a set of computers on a network, I discovered the ManagementObjectSearcher class along with the ManagementObject class. The constructor for ManagementObjectSearcher takes a ...
0
votes
0answers
159 views

Is there a way to get WMI data into T-SQL

The following is a SQL-like command used in a sample VBScript to get Biztalk suspend instances via the WMI interface. select * from MSBTS_serviceinstance where ServiceStatus=4 ...
0
votes
1answer
118 views

how to get WMI events?

How to list the WMI events registered to Msvm_ComputerSystem class. I have created a vm and have an event to registerpoweronEvent. now i want to list the events registered. please help in this.
0
votes
0answers
61 views

WQL - query unique event entries under application log file

Given an application log file on a remote machine, what WQL query can I use to retrieve a list of the unique events on a particular day?
0
votes
2answers
415 views

Test to see if directory is shared using PowerShell?

This seems like a very easy thing to do; however, I don't know anything about WMI. How would I go about determining if a directory is shared over the network on one of my servers (using PowerShell)? ...
0
votes
1answer
919 views

How to make a script only run once per user by gpo?

I have been searching the web and i came up with NO results while it seems so convenient to have! Background information: With basic netlogon batchfiles i used a write a checkfile in a temp folder to ...
2
votes
2answers
290 views

How do I get the available FreeSpace from a drive from a remote computer?

I'm trying to get the FreeSpace from the D drive of a remote computer. Towards the end, I'm getting a ManagementException was unhandled by user code "Not Found" This is the line that gives me the ...
0
votes
1answer
88 views

WMI 'invalid class' error

My server is Winserver 2003, and i can add 'Web Service' counter in Perfmon indeed. But when i ran this SELECT * FROM Win32_PerfRawData_W3SVC_WebService query in wbemtest, it gave me an 'Invalid ...

1 2 3 4