Tagged Questions

Windows Management Instrumentation (WMI) is an API for managing the Windows operating system on local or remote computers.

learn more… | top users | synonyms

21
votes
12answers
14k views

Generating a unique machine id

I need to write a function that generates an id that is unique for a given machine running a Windows OS. Currently, I'm using WMI to query various hardware parameters and concatenate them together ...
17
votes
3answers
265 views

WMI, negative CPU usage value and Timestamp_Sys100NS in past

I am monitoring some machines using WMI, using .NET's System.Management stuff. The query I am using is this: SELECT Timestamp_Sys100NS, PercentProcessorTime FROM Win32_PerfRawData_PerfOS_Processor ...
16
votes
7answers
6k views

Detecting the number of processors

How do you detect the number of physical processors/cores in .net?
12
votes
2answers
4k views

How to call method with output parameters in Powershell?

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 ...
10
votes
5answers
5k views

Detecting USB drive insertion and removal using windows service and c#

Looking into possibility of making an USB distributed application that will autostart on insertion of an USB stick and shutdown when removing the stick Will use .Net and C#. Looking for suggestion ...
10
votes
4answers
665 views

Why would I choose Powershell over WMI to develop management interfaces?

We are discussing development of an improved management infrastructure for our distributed system. We use COM, web services and .NET components. Since we're based on Microsoft Windows Server XP/2003, ...
9
votes
2answers
287 views

Delphi - finding the process that is accessing a file from my program

I have a Delphi app that regularly writes to a local disk file. Occasionally it is unable to access the file - a sharing violation results when it tries to open it. A retry after a short delay is ...
9
votes
1answer
238 views

Understanding the WMI object path format

I want to write a class with similar funcionality as the .NET ManagementPath class. On MSDN is a set of articles which handles the format of object paths. However, I don't understand it yet with all ...
9
votes
2answers
252 views

Windows C# implementation of linux dd command

I'm writing a C#.Net app to run on windows that needs to take an image of a removable disk and chuck it onto a Linux Live USB. The Live USB is the inserted into the target machine and boots, on start ...
9
votes
1answer
262 views

CPU Identification on Virtual Machine

I use following c# code to get processor information. The Management class is null if I run my application on a virtual machine. I use Oracle VM VirtualBox as my virtual pc (Windows XP SP3) ...
9
votes
1answer
766 views

.NET application per-machine/per-user licensing

I am about to implement a very basic licensing feature for my application. A serial number may be granted per-machine (or per-operating-system) or per-user (as for CAL in Windows Server: if my ...
9
votes
4answers
9k views

How to get CPU temperature?

I need to gather some system's information for the application I'm developing. The memory available and the CPU load are easy to get using C#. Unfortunately, the CPU temperature it's not that easy. I ...
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 ...
8
votes
7answers
4k views

How to check the machine type? laptop or desktop?

How to check current machine type? laptop or desktop ? I got this from http://blog.csdn.net/antimatterworld/archive/2007/11/11/1878710.aspx ,it works well on my home machine(Win2003 on laptop), it ...
8
votes
9answers
18k views

WMI “installed” query different from add/remove programs list?

Trying to use WMI to obtain a list of installed programs for Windows XP. Using wmic, I tried: C:\Documents and Settings\romandas>wmic wmic:root\cli>/output:c:\ProgramList.txt product get ...
7
votes
2answers
407 views

High Performance Event Log C#

So I've been trying various ways to get Event Log data in bulk (1000+ records/second). I need something that can filter out old logs, right now I store the last recorded event record ID and retrieve ...
7
votes
3answers
1k views

Permissions issue when publishing to WMI under network service account

I'm adding WMI publishing to a .net framework 3.5 based windows service that is running under the 'network service' account. According to a document I came across on MSDN, the 'network service' ...
7
votes
3answers
213 views

Is there a standard way to access the windows services file in .Net?

Is there a standard way in .Net to access and modify the windows services file? Right now I'm just accessing the file via a stream and writing to the file like I would for any other file. The file is ...
7
votes
4answers
1k views

Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows

On Windows (XP-7), is there a reliable way of programatically differentiating between USB floppy drives and USB flash drives in C++? At the moment, I'm using WMI to get updates when new ...
7
votes
3answers
2k views

Creating Custom MMC SnapIn with VB.Net or C#

Does anyone know good current (.Net 2.0 3.0 or 3.5) basic documentation, books or urls that document the basics of how to program this in VB.Net or C#. Thanks Roy Cotton
7
votes
2answers
4k views

Change local administrator password in C#

I am looking for a way to change the password of a local user account (local Administrator) on a Windows (XP in this case) machine. I have read the CodeProject article about one way to do this, but ...
6
votes
1answer
466 views

Problems using the WMI EnableStatic method

I want to create a tool to take the network adapter settings (for IP address, subnet, DNS and gateway) from a DHCP-enabled NIC, and make it static instead. I help my friends a lot over the phone and ...
6
votes
1answer
325 views

Know how fast a Hard Drive is in Delphi

I am writing a diagnosis program (like everest, but simpler) and I need to know how fast a HardDrive is. I wanna know things such as: 1 - Bytes per second (read) 2 - Bytes per second (write) 3 - ...
6
votes
2answers
642 views

How Do I Delete a DNS Domain Programmatically?

I am building a C# web app to manage our DNS servers and am using the WMI Namespace for everything. The only thing I am having trouble with is deleting DNS Domains. Here is my code: internal static ...
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 ...
6
votes
2answers
634 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 = ...
6
votes
2answers
624 views

WMI Cheatsheet?

Is there a cheatsheet available for WMI? Like what can be queried, where to query it from?
6
votes
2answers
2k views

how to hook to events / messages in windows using python

in short: i want to intercept suspend/standby messages on my laptop, but my program doesn't receives all relevant messages. background: there's a bug in ms-excel on windows xp/2k, which prevents ...
6
votes
5answers
6k views

How can I look up IIS site id in C#?

I am writing an installer class for my web service. In many cases when I use WMI (e.g. when creating virtual directories) I have to know the siteId to provide the correct metabasePath to the site, ...
6
votes
6answers
2k views

Identify process using a file

I have been trying to figure out how to programmatically identify the process that has a lock on a particular file. I've searched through the Win32 API and WMI, but so far I can't find anything. I ...
5
votes
2answers
73 views

How to get more than 97 rows out of WMI?

I have the following .VBS script, which works, but it only returns the top ±100(97) rows of data. How do I get the full list? On Error Resume Next strComputer = "." Set objWMIService = ...
5
votes
2answers
193 views

Most efficient and fundamental way to get cpu % usage and network throughput on Windows?

What is the most efficient and fundamental way to get cpu % usage and network throughput on windows platform? Correct Me If I'm Wrong... windows api // Win32? SDK? (c/c++) #sorry, I have no idea... ...
5
votes
3answers
173 views

rename computer programmaticaly c# .net

I need to rename my computer via .net application. I have tried this code : public static bool SetMachineName(string newName) { MessageBox.Show(String.Format("Setting Machine Name to '{0}'...", ...
5
votes
1answer
169 views

Why is WMI so much slower tha using utilities like PsExec or PsList?

I'm doing various OS management and querying tasks using WMI, but it allways take a long time for first WMI call(10 to 15s). When I tried few tools from sysinternals I found that they are so much ...
5
votes
1answer
411 views

How can i get the drive letter of an usb device?

I am using WMI to get all inserted usb disks manufactures names. The code works great but i have a problem how can i determine witch drive letter a certain disk has...i can get only the device name ...
5
votes
3answers
481 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
489 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) { ...
5
votes
1answer
1k views

Programmatically join Windows machine to AD domain

This is similar to, but not a dupe of, this question - however, where it sought information on manually joining a server to a domain (and was rightly redirected) I am looking for help with some code ...
5
votes
3answers
542 views

How to determine if a network path is available or not (online or offline)?

Using .NET / C#, how to determine if a network path (e.g. \mymachine\myfolder) is available or not (online or offline)? Is there a way to be notified by WMI of such event? Thanks!
5
votes
2answers
646 views

DisconnectedContext MDA when calling WMI functions in single-threaded application

I write an app in C#, .NET 3.0 in VS2005 with a feature of monitoring insertion/ejection of various removable drives (USB flash disks, CD-ROMs etc.). I did not want to use WMI, since it can be ...
5
votes
5answers
943 views

How do I use WMI with Delphi without drastically increasing the application's file size?

I am using Delphi 2010, and when I created a console application that prints "Hello World", it takes 111 kb. If I want to query WMI with Delphi, I add WBEMScripting_TLB, ActiveX, and Variants units to ...
5
votes
2answers
640 views

C# WMI Process Differentiation?

Scenario I have a method that returns a list of processes using WMI. If I have 3 processes running (all of which are C# applications) - and they all have THE SAME PROCESS NAME but different command ...
5
votes
1answer
639 views

Get full CPU name without WMI

Does anyone know if it's possible to get the full processor name (as shown in Control Panel | System) without using WMI? I'm guessing there's some unmanaged call you can make. WMI does the job, but ...
5
votes
3answers
3k views

How to update existing IIS 6 Web Site using PowerShell

I am trying to create a PowerShell script that creates a new IIS 6 web site and sets things like App Pool, Wildcard application maps, ASP.NET version, etc. After extensive search on the Internet I ...
5
votes
1answer
391 views

Shared folder permission!

I use this code to share folder: Public Sub Share() Dim managementClass As New ManagementClass("Win32_Share") Dim inParams As ManagementBaseObject = ...
5
votes
5answers
730 views

Powershell Command in C#

I am trying to query the names all of the WMI classes within the root\CIMV2 namespace. Is there a way to use a powershell command to retrieve this information in C# ?
5
votes
2answers
2k views

Memory leak using WMI in Delphi 7

I'm experiencing a memory leak when using WMI from Delphi 7 to query a (remote) pc. The memory leak only occurs on Windows 2003 (and Windows XP 64). Windows 2000 is fine, and so is Windows 2008. I'm ...
5
votes
1answer
1k views

Can I use WMI to find the network usage by each process?

I'd like to use WMI on some windows systems to poll the network usage of each process. From what I can tell, there are many IO instances in the Win32_PerfRawData_PerfProc_Process but they are for the ...
5
votes
1answer
426 views

How can I programatically determine if an IIS site is receiving requests?

The title pretty much says it all. Some caveats are: I need to be able to do it in C# It needs to be able to be done from a remote server (ie, running on one server, checking IIS on another) Needs ...
5
votes
7answers
6k views

“Extend my Windows desktop onto this monitor.” programatically

I would like to be able to do "Extend my Windows desktop onto this monitor" via code. A PowerShell script would be idea. I have googled around a far amount and WMI seems the way forward but as I have ...

1 2 3 4 5 24