2
votes
1answer
37 views
How to determine if current user is logged on through Terminal Services in .NET?
I would like to determine, from a .NET application, whether the current user (from System.Environment.UserName) is logged in to the machine physically, or via terminal services.
The use case is a …
1
vote
2answers
24 views
Querying WMI class Win32_QuickFixEngineering returns mucho weirdo timestamps (C#)
Class documentation here. The InstalledOn property is supposed to have a timestamp of (well, duh) when the fix was installed. But the doc doesn't say what's the format. I get something unintelligible, …
0
votes
1answer
33 views
Has anyone successfully used the WMI Win32_PatchPackage class? (C#)
According to sources here and here, this class should give me a nice and human-readable list of patches applied to Windows. What I want is a list of KB patches applied to a remote machine.
…
-1
votes
1answer
64 views
“Access is denied” Exception with WMI
I am working on WMI. I want to access remote system information. The following code is working for loopback or on local host but when I try to access the remote machine it shows the following …
1
vote
1answer
30 views
SQL Server xQuery return NULL instead of empty
So in this example I'm trying to return a NULL instead of an empty nvarchar for element2 and element3. I can't seem to find an answer to this anywhere, or if it's even possible. I know I can check …
2
votes
2answers
47 views
Help needed to get Process ID for PsExec.exe in C# ??
Hi,
I am using the below code to invoke PsExec.exe which invokes my console application in two servers, I am not able to grab the ProcessId of the invoked processes (my console apps).
…
0
votes
1answer
39 views
Better Performance: WMI vs SNMP?
What has better performance under Windows for retrieving stats like CPU/Memory/Disk usage, etc.? WMI or SNMP?
Thanks,
Steve
0
votes
1answer
24 views
Application hangs after a DataGridView is Populated
I have a simple form with two buttons (Start and Stop) and a DataGridView. I am trying to populate the DataGridView with the results of a WMI query that enumerates Win32_Process instances and puts all …
0
votes
2answers
103 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/Application/Service …
0
votes
0answers
17 views
WMI query to find PID and VID
My task is to find devices with specified PID and VID by using WMI queries.
I have found that Win32_PnPEntity class property PNPDeviceID can be used, which sometimes contains PID and VID.
Maybe …
3
votes
4answers
118 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 …
0
votes
1answer
42 views
Get Link Speed - Win32_PerfRawData_Tcpip_NetworkInterface
Hi,
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 …
0
votes
3answers
180 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 x64, Dual-Core with 3 …
1
vote
4answers
126 views
WMI vs Windows APIs
There are any advantages or disadvantages of using the WMI instead of Windows API to access to the information of the system? as speed, additional permissions, memory usage.
or depends on the WMI …
0
votes
1answer
36 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?
