10
votes
7answers
2k views
Detecting the number of processors
How do you detect the number of physical processors/cores in .net?
8
votes
4answers
391 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, …
5
votes
2answers
2k 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 …
5
votes
5answers
1k 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, …
5
votes
2answers
1k 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 …
4
votes
2answers
273 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 …
4
votes
5answers
538 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 …
4
votes
2answers
725 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 …
4
votes
3answers
642 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
4
votes
1answer
368 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 …
4
votes
1answer
212 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 …
4
votes
2answers
164 views
Recommendations for an enterprise management dashboard
Like many organizations, I don't have a single software application that I run to support the enterprise. I have many different software components that facilitate the business and these software …
4
votes
12answers
2k 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 …
3
votes
4answers
92 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 …
3
votes
1answer
58 views
WMI Class for wireless mouse
What is the WMI class to get information about Wireless mouse?
EDIT: How do I distinguish USB mouse from Wireless mouse(Connected via USB Doggle). DeviceInterface value from Win32_PointingDevice …
