Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

How can I retrieve a Windows Computer's SID using WMI?

I'm not looking for User SIDs. I'm looking for the computer SID, which active directory would use to uniquely identify the computer. I also don't want to query the active directory server, i want to ...
5
votes
3answers
469 views

Can the physical USB port be identified programatically for a device in Windows?

I have a USB device that enumerates with a different interface, VID, PID and serial number when commanded to do so, and I'd like to keep track of the physical device after this change occurs. My ...
5
votes
1answer
482 views

GET USB unique ID on putting or removing the key

I need to get the unique USB ID (not a Volume serial number ) on putting/removing the USB. But in all case "PNPDeviceID" is always empty. The code which I used is: static void Main(string[] args) { ...
4
votes
1answer
182 views

WMI query in C# does not work on NON-English Machine

I am creating an application that needs to track when a process starts, then raise an event when it's finished. I have code that works perfectly, and does exactly what I need on an English machine, ...
4
votes
2answers
187 views

Updating via WMI

I need an example of an update query using WMI. I have searched but I couldn´t find anything. Can anyone paste some sample code if possible? Thanks.
4
votes
2answers
228 views

Is there a replacement or update for WmiSet for post-Delphi 2007?

We currently use WmiSet from Online Admin to run Wmi Queries and query registry settings on remote machines. The problem is that it only supports Delphi up to RAD Studio 2007. We are currently in ...
3
votes
1answer
667 views

Hyper-V/WMI programming Question

I've looked at several objects in the "root\virtualization" name space but I have not been able to find where Hyper-V stores the path to the config file for a given virtual machine. I need to get this ...
2
votes
1answer
355 views

Problem with remote install by WMI : the installation package is not accessible form the remote machine

I want to install a MSI package on a remote computer. The local and remote computer both are members of a domain called "adn.lan" and the user/password I pass as parameter to connection has full ...
2
votes
1answer
495 views

Delphi Wmi Query on a Remote Machine

We use WmiSet to do Wmi Queries on remote machines. It works very well in Delphi 2007 but is not currently available for Delphi XE. I found some code to do Wmi Queries from a previous SO Question ...
2
votes
2answers
668 views

How to detect antivirus installed on windows 2003 server and 2008 server 2003 server R2and 2008 server R2 using WMI or other then WMI in C++

i have used WMI to detect that antivirus is present on OS, itz woking fine and display me information of antivirus like name and instance id on win xp and window7 by using ...
2
votes
1answer
2k views

Query WMI remotely with PHP

My current code looks like this: define ( 'CPU_NAME', 'remote_server' ); $obj = new COM ( 'winmgmts:{impersonationLevel=impersonate}//' . CPU_NAME . '/root/cimv2' ); if ( is_object ( $obj ) ){ ...
2
votes
1answer
2k views

using WMI to uninstall applications remotely

I am trying to write a mini w32 executable to remotely uninstall an application using WMI. I can list all the installed applications using this code below but i couldnt find a way to uninstall the ...
2
votes
1answer
222 views

How can I add programatically service dependencies to an installed Window service?

How can I add programatically service dependencies to an installed Window service ? It would really helpful, If someone suggest solution using WMI through the System.Management namespace . What is ...
2
votes
0answers
975 views

USE WMI and WMQ to get Logical Disk and Partition Information from Win32_PnPEntity of SERVICE type USBSTOR

I am detecting when our proprietary USB device is attached to a PC. When we detect this, we get the related Win32_PnPEntity. We want to use this Win32_PnPEntity as a source of the following ...
2
votes
2answers
2k views

WMIprvse process leaks memory on 2008 server R2

I have a Windows 2008 R2 server running on a VM machine. My .NET service is running on this server periodically querying WMI, for example: SELECT ProcessId FROM Win32_Service WHERE ... After a day ...
2
votes
1answer
423 views

WMI querying issues in Python

I've recently been working on a Squish test script, and trying to do something like what's described in the solution at: ...
2
votes
2answers
1k views

Get Link Speed - Win32_PerfRawData_Tcpip_NetworkInterface

I found Determining the network connection link speed and now I am trying to correlate the data from Win32_PerfRawData_Tcpip_NetworkInterface with Win32_NetworkAdapter (or ...
2
votes
1answer
1k views

Determine Users Accessing a Shared Folder Using PowerShell

I need to determine the users/sessions accessing a shared folder on a Windows XP (SP2) machine using a PowerShell script (v 1.0). This is the information displayed using Computer Management | System ...
2
votes
1answer
141 views

How to check if a CD-ROM is real or virtual

I am using the following WMI query to enumerate the CD/DVR drives on my machine: select * from Win32_CDROMDrive Question: Is there any way I can detect which of the drives returned are actual, ...
2
votes
3answers
943 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
0answers
57 views

WMI Search Wildcard returns nothing

EDIT: Added oScope When I run my query without wildcards, it returns what I expect it to. But if I modify the query just a little, it doesn't throw errors. Instead, it just doesn't return anything, ...
1
vote
1answer
85 views

How to get Battery charging status from WPF applicatioin using WMI?

I'm trying to get charging percent, and exactly the same text that is Windows showing - Not Charging, Full Charged, Charging I'm using wmi-query. I don't want to hard-code that texts, because it's ...
1
vote
0answers
44 views

few very odd Performance counter using WMI or System.Diagnostics class

I want to get few performance counter using WMI query/System.Diagnostics class(C#.net). 1> Cache Total Hit Ratio   2> Cache Total Turnover Rate   3> Cache Total Entries   4> Web Service - Current ...
1
vote
3answers
149 views

Trouble with WMI filter

I've got a notepad.exe started in my session : gwmi -Query "Select CommandLine from Win32_Process where CommandLine='C:\Windows\system32\notepad.exe'" gives Get-WmiObject : Demande non valide Au ...
1
vote
0answers
103 views

WMI query to Win32_Directory not returning all results

I'm running some WMI queries against a remote computer (from JavaScript/JScript, WMIC, a downloaded WMI query tool -- it makes no difference), to which I have adminstrator privileges. The query is ...
1
vote
2answers
197 views

c# 'Invalid class' in a simple WMI query

I will like to find some result after this query, but in the beginning of the foreach loop, the error "invalid class" occur. string wmiQuery = string.Format("SELECT * FROM Win32_Process"); var ...
1
vote
2answers
465 views

How to construct WMI query

I'd like to find results that Name starts with param1, and ends with param2 but my code doesn't work string wmiQuery = string.Format("SELECT CommandLine FROM Win32_Process WHERE Name LIKE '{0}%' AND ...
1
vote
2answers
572 views

WMI command to connect to remote machines and retrieve Software Version and Installation Date

I need help in connecting to 2 remote machines running Windows XP and retrive details of a software version and installation date. I am new to WMI and would appreciate if someone could guide me in the ...
1
vote
1answer
72 views

Which property to use in Win32_PerfRawData_PerfProc_Process for indicating performance?

Inside the Win32_PerfRawData_PerfProc_Process class, which property is best describe the performance of the particular running service?
1
vote
1answer
312 views

How to export all rows of a WMI query to a file?

Given a query such as SELECT * FROM WIN32_PROCESS Is there a way to interrogate the result object for the names of the columns returned? Write all the rows in the result object to a text file, ...
1
vote
0answers
263 views

Registering Custom WMI C# class/event

I have a project with a class that extend a WMI event and used to publish data through WMI. the class look like this (just few rows of the entire class): ...
1
vote
2answers
244 views

How do I get the names of the columns returned by a WbemScripting query?

I have the following procedure to run a WMI query, and it works perfectly well. procedure TFormMain.GetWMIOSInfo(const RemoteMachine, Username, Password: string); var FSWbemLocator: OLEVariant; ...
1
vote
1answer
448 views

cant connect to remote machine using WMI and Perl

I'm trying to write a script that will get event log information off of a remote windows machine using the win32::ole module and a WMI query. I can ping the machine but no matter what my WMI ...
1
vote
0answers
80 views

Select query of wmi used to view the process which has max usage of cpu

What is the query used to view the topmost process which is having maximum usage of CPU using WMI?
1
vote
1answer
943 views

C# .NET ManagementObjectSearcher Query

My C# .NET 2.0 application performs two queries using the ManagementObjectSearcher class: _searcher = new ManagementObjectSearcher("root\\WMI", "SELECT * FROM MSWmi_PnPInstanceNames"); _searcher = ...
1
vote
1answer
511 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
323 views

WMI Query for list of hotfixes installed in a system?

I am writing a perl script that will list the hotfixes installed in my system and check if any pre-requisite hotfixes are not available before beginning my program; So I need to be able to enumerate ...
1
vote
1answer
294 views

Finding processor usage through WMI

I am trying to use the Win32_PerfRawData_PerfOS_Processor class on a windows server enterprise 2007 remotely to find the CPU usage. But I am getting huge 14-15 digit values like 11745679223456 %. Any ...
1
vote
2answers
453 views

Java accessing WMI as a particular user

I am trying to write a Java application that will query the WMI on windows hosts within domains to obtain their mac address and dns name. I can run the script via exec or using a few of the jars I ...
1
vote
1answer
344 views

WMI error when connecting to IIS7

I am getting the same error described here: http://forums.iis.net/p/1033115/1700749.aspx I have a PowerShell cmdlet that tries to control our web application running on Windows Server 2008 SP2 and ...
1
vote
3answers
665 views

Is there a way to query WMI without using PowerShell or CIM Studio?

I'd like to query WMI for WCF service information, but I'd rather not use PowerShell or the CIM Studio. Any other tools for doing this (command-line is cool too)?
1
vote
1answer
1k views

In WMI, can I use a join (or something similar) to acquire the IisWebServer object for a site, given server name and deployment location

Given a server name and a physical path, I'd like to be able to hunt down the IISWebServer object and ApplicationPool. Website url is also an acceptable input. Our technologies are IIS 6, WMI, and ...
1
vote
1answer
531 views

Access SQL - WMI Namespaces from Remote Machine

i am playing with Powershell and SQL WMI events and i am wondering if i can do this stuff remotely from the admin notebook: I'd like to query the "root\Microsoft\SqlServer\ServerEvents\MSSQLSERVER" ...
1
vote
1answer
761 views

Can't locate Flash Player in WMI win32_product table

How come the Macromedia Flash Player isn't present in the WMI win32_product table? The Flash Player is installed on the machine where I'm executing the query. I'm trying to execute the following ...
1
vote
3answers
2k views

WMI Process Watching uses too much CPU! Any better method?

I need to watch when certain processes are started or stopped on a Windows machine. I'm currently tapped into the WMI system and querying it every 5 seconds, but this causes a CPU spike every 5 ...
1
vote
4answers
401 views

Checking for equivalent shared folders in .net

Is there a way, within the .net framework, to check to see if two different shared folders are actually pointing to the same physical directory? Do directories in Windows have some sort of unique ...
0
votes
2answers
80 views

Detect unmounted volumes on selected disk with Powershell WMI or Diskpart

How to link unmounted volumes to physical disks? Say, I need to find and mount unmounted volumes on disk 3 as numbered by Diskpart or WMIC, or Powershell WMI. How to find out with a script, what ...
0
votes
1answer
33 views

Can value for win32_computersystemproduct be changed?

i have need to change win32_computersystemproduct property values to something otherthan what they are set to right now. Also this is for Windows 7 in a Parallels VM on MAC. Can someone point me to ...
0
votes
0answers
18 views

wmi query to get “memoryPagesPerSec ”

I have worked on how to get performance data. new counter i need to add in my requiremnet, is "memoryPagesPerSec " I have use inbuild class to get this counter, but not get the value it is always ...
0
votes
1answer
130 views

WMI Query - 2008 Performace counters alerts

I have a set of performance counters alerts on windows 2008 server, which I configured to write in the Event Viewer once the alert is fired. It does write in this event viewer "Applications and ...

1 2