The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
126 views

Running Dot Net project exe on Linux which makes use of System.Management to get USB Device information

Hi, I have created a Dot Net application in C# to get USB Device Information like DeviceID, Caption, ClassGUID etc using System.Management Namespace. I'm using the ManagementObjectSearcher Method to ...
1
vote
1answer
73 views

win32_networkaddressconfiguration no ip address

I'm collecting all networkadapterconfigurations from the Win32_NetworkAdapterConfiguration class in C#. I use this query: private String strDetailedInterfaces = @"SELECT * ...
20
votes
3answers
416 views

NullReferenceException in finalizer during MSTest

(I know, this is a ridiculously long question. I tried to separate the question from my investigation so far, so it's slightly easier to read.) I'm running my unit tests using MSTest.exe. ...
1
vote
0answers
183 views

Get-WMIObject fails to enumerate Win32_LogicalDiskToPartiion in elevated powershell

I have a really simple Powershell query: Get-WmiObject -query 'ASSOCIATORS OF {Win32_LogicalDisk.DeviceID="C:"} WHERE AssocClass = Win32_LogicalDiskToPartition' On a Windows 7 (64-bit) machine, ...
0
votes
0answers
95 views

Error Retrieving System Restore Points: “Generic Failure”

I have a small application that manages system restore (Create, delete, list). This application has been working for years and now I'm running into issues on several laptops (Windows 7 X86 with recent ...
0
votes
0answers
186 views

System.Management.ManagementObject.InvokeMethod always returns 0 (outParams[“ReturnValue”])

I'm using following code to run programs on remote machine. I can't get real exit code, have always 0. Only if executable path is incorrect I have nonzero exit code. What's wrong? I'm trying to run ...
0
votes
0answers
114 views

Starting a SSL stream on a remote computer in C#

I have an executable on a remote computer. The executable is a TCP listener using a SSL stream. When I manually start this executable, it starts listening and it works fine. But, when I try starting ...
1
vote
0answers
75 views

Where to find the System.management dll

I am trying to build an SQL CLR stored procedure that references an IBM WebSphere MQ dll. I'm having problems doing this on my work machine, so I decided to see if I could just get this to work on my ...
1
vote
1answer
223 views

Get the real adapter information only using WMI query?

Im trying to get some system information using WMI but the problem is when i want to get for example Graphic Card information .. i get many drivers (real & virtual) ManagementObjectSearcher ...
0
votes
1answer
1k views

ManagementObjectSearcher error

Some of our customers inform us that in some cases following error appears: System.Management.ManagementException: Błąd dostawcy. at ...
0
votes
1answer
418 views

Map a DiskIndex to a Volume Label

Current I am able to get all the Drives and their labels in c# by using the DriveInfo.GetDrives(). Then I am able to get the Disk Index / Index of the Partition by this methodology. var searcher = ...
0
votes
3answers
139 views

Ready-to-use management-classes

I know how to gain access to management-objects. Lets say this one: var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter"); foreach (var nic in searcher.Get()) ...
3
votes
1answer
401 views

Incompatible Reference: System.Management 4.0.0.0?

I created a C# 4.0 Console application. The target framework is .Net Framework 4 Client profile. I want to count the number of cores in my cpu. To do this I created the following class: internal ...
0
votes
5answers
605 views

C# System.Management has only 1 class?

I have been trying to utilize WMI for my code, I cannot use the System.Management classes as they are not there. I have tried it on 3.5 and 4 Net. Nothing works. I have not found any solutions to the ...
2
votes
1answer
581 views

Get physical path corresponding to a network share on local computer

I want to be able to get the physical path (C:\somepath...) corresponding to an UNC path to a network share on the local computer (\\mycomputer\somepath...). I've tried doing this using ...
2
votes
0answers
314 views

System.Management.ManagementClass.GetInstances() throws exception

On different machines, we see different exceptions. One machine reports System.Runtime.InteropServices.COMException (The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)) ...
2
votes
1answer
501 views

Use ManagementObject to restart remote service

I want to restart a service on a remote machine and do not want to use ServiceController because the process to get all services on that machine took 21 seconds while the following ManagementObject ...
2
votes
3answers
379 views

Cannot get system identifier in WPF

I programming in WPF C# and trying to get the ProcessorID (or other system identifier). I have read through MSDN - System.Management Namespace. I add the namespace, but it does not provide ...
5
votes
2answers
1k views

Create PSCredential without a password

How to create a instance in PSCredential that has no password? Things I tried: $mycreds = New-Object System.Management.Automation.PSCredential ("username", $null) Error: Cannot process argument ...
4
votes
1answer
2k views

How to get a list of sites and SSL certificates from IIS 6.0 using C#, WMI, and/or System.Management?

I am trying to export all the SSL certificates on IIS 6.0 sites from a specificed remote server to a centralized backup server so we can migrate and/or backup our SSL certificates, however I cannot ...
1
vote
2answers
1k views

Access Denied when using system.management for shutdown

I'm trying to create a small program in C# -MVC# 2008 Express- that will let me turn on and off the 15 computers I'm in charge of, remotely. Turning them on was easy but turning them off seems to be a ...
1
vote
0answers
433 views

Search For Win32_Directory using the Volume Guid

I am trying to check if a directory exists on a remote computer by using the Volume GUID rather than the Volume Name. Is there any way in WMI to accomplish this? I have a tried a few different ...
3
votes
1answer
4k views

System.Management.ManagementException question

I am running following code System.Management.ManagementClass wmiNetAdapterConfiguration = new System.Management.ManagementClass("Win32_NetworkAdapterConfiguration"); ...
0
votes
1answer
609 views

“ManagementScope ” could not be found

I'm getting this error: CS0246: The type or namespace name 'ManagementScope' could not be found... On this line: private ManagementScope plainScope = null; The project builds fine, however I get ...
0
votes
1answer
93 views

Log started processes and events of Windows 2000 and XP Operating Systems using WMI C# 2005

Is there a way that WMI can catch events, for example selecting or accessing the control panel, and processes, for example running "command". I am a beginner on the subject of ManagementEventWatcher ...
4
votes
1answer
1k views

ManagementObjectSearcher out of memory excepiton

In a C# .Net MVC2 app we have a simple function to get the processor id as part of a scheme to identify the web server. The relevant part is: using (ManagementObjectSearcher searcher = new ...
0
votes
2answers
861 views

Create SQL Server Alias Using WMI on x64

I have a small app which automatically creates necessary SQL Server Alias entries for some servers. The bulk of the code looks like this: private static void SetAlias(string aliasName, string ...
0
votes
1answer
795 views

System.Management.ConnectionOptions always requires a password in text?

I'm using WMI in .NET to connect to remote machines in a web app. When I initialize the connection, the Management ConnectionOptions always require a username and password in text. I was wondering ...
1
vote
4answers
5k views

Why does my .NET Windows service not start automatically sometimes?

I have modified a working Windows service that had always been starting beforehand. After adding the System.Management reference it now sometimes will not start automatically. I get the following ...