0
votes
1answer
15 views
What are some common WMI queries
I'm building a C# monitor app which uses WMI to grab some performance details of a remote computer. What are some good WMI queries to grab helpful stats such as CPU load, RAM usag …
0
votes
0answers
8 views
Edit DMI (Manufacturer, install date, part number ) programmatically
Hi! I need to automate computer assembly process and that's why I wanna know if there is any way to edit DMI data: manufacturer name, install date, part number and serial number (f …
0
votes
1answer
13 views
Wmi win32 classes on x64
I'm developing .net application using wmi and win32_* WQL queries.
http://msdn.microsoft.com/en-us/library/aa394084%28VS.85%29.aspx
Will such application work on x64?
0
votes
1answer
15 views
Check for daylight saving time with WMI on Vista/Win7
How do I find out if the computer I'm on has daylight saving time in effect? (preferably using WMI)
According to this article at TechNet, I could query SELECT DaylightInEffect FRO …
3
votes
4answers
76 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 wh …
0
votes
1answer
15 views
Determine Users Accessing a Shared Folder Using PowerShell
Hi,
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 Comp …
0
votes
0answers
6 views
Is deviceID format for PS/2 mouse
I would like to know the DeviceID and PNPDeviceID format for PS/2 Mouse. On my system Device ID for PS/2 mouse is ACPI\PNP0F13\4&1F1D307&0. So is the format is ACPI\PNPxxxx …
0
votes
1answer
54 views
Python Windows Service Problems - Works when using debug argument but not while started as a service?
Hello all, hopefully someone here can shed some light on my issue :D
I've been creating a Windows XP service in python that is designed to monitor/repair selected Windows/Applicat …
0
votes
1answer
40 views
Starting application pools with WMI\ADSI (C#) hangs immediately after reboot
Hi,
I have encountered a strange situation where starting an application pool from a windows service (written in C#, set to "Automatic" startup) using WMI or ADSI immediately aft …
1
vote
1answer
35 views
How can I query NTFS disk quotas in C#?
I need to be able to find, for all users on a given remote machine, those users' disk quotas and actual disk usage. I need to be able to do this reporting in a C# application. (Wel …
1
vote
3answers
160 views
WMI Poor Performace
Hi
I wrote a code in C# that maps logical drives to their physical disks, using WMI (System.Management).
The code working perfectly, but slow like hell.
In my machine (Windows 7 x …
0
votes
0answers
15 views
WMI: How to differentiate between Wireless mouse and touch screen
I am using Win32_PointingDevice class to detect mice connected to the system. I ran my device discovery script on a machine which has touch screen. The discovery shows up with 3 po …
0
votes
3answers
84 views
Closing Open Files using C#
I have a situation where people are connected to files on a share and it's blocking me from overwriting the file. I'm trying to write a method that will look to see if a filePath t …
0
votes
0answers
4 views
Is there any way to read password policies via the WMI RSOP_XXX classes?
Those all reside in the root\RSOP\Computer namespace. The only class from which I got non-empty results is RSOP_RegistryPolicySetting, and that one only gave me settings for Window …
0
votes
1answer
20 views
Can’t read from RSOP_RegistryPolicySetting WMI class in root\RSOP namespace (C#)
The class is documented in
http://msdn.microsoft.com/en-us/library/aa375050%28VS.85%29.aspx
And from this page it seems it's not an abstract class:
http://msdn.microsoft.com/en- …
