Windows Management Instrumentation (WMI) is an API for managing the Windows operating system on local or remote computers.
1
vote
1answer
8 views
WMI and HDD SMART Data
I'm new to WMI and have some questions. I want to write an application that monitors the status of a disk or more disks in a system.
I found that i can manage it via WMI "root/wmi" and the ...
0
votes
1answer
23 views
How to print a test page and capture the return value for a non default printer on a remote server using WMI's PrintTestPage method?
I'm using the System.Management namespace along with WMI to install printers/ports on a remote server. Once the printer/port is installed, I'd like to print a test page, capture whether or not ...
1
vote
1answer
72 views
How to use a thread to completion, then reuse the thread?
I'm building a form and I'm trying to use threading in order to get some results from a WMI query to display in a textbox without having the form freeze up on the user. However, when I use the code ...
0
votes
3answers
30 views
WMI query response is writing to file
I am unable to write the response of a WMI query to file but I can print it to console.
I rewrote the query to use different WMI methods to pull the data. I changed back to the below method of ease ...
0
votes
0answers
16 views
Including netsh in Windows CE 7
I need the ability to configure IP Address, Subnet Mask, and Gateway address to our custom remote machines. Looking around the internet, most people suggest the netsh command line utility for the job. ...
1
vote
1answer
65 views
Trying to access battery level, c#
I'm trying to create an app for windows 8 using c# to display my current battery level. I'm trying to query the win32_battery class for its relevant properties,but I'm getting an unusual result. ...
0
votes
0answers
13 views
How to avoid WMI DirectoryEntry caching failed connections
When making a WMI call using DirectoryEntry in C# it appears that a failure is cached so that retries immediately fail without retrying.
Here's what I've done to reproduce this:
DirectoryEntry ...
1
vote
1answer
30 views
+100
How to identify what device was plugged into the USB slot?
I want to detect when the user plugs in or removes a USB sound card. I've managed to actually catch the event when this happens, but I can't tell what just got plugged in.
I tried an approach based ...
1
vote
1answer
47 views
How to query ManagementObjectCollection with LINQ, then loop through PropertyData for returned ManagementObject?
[C# .NET Windows Form WMI]
I'm pretty new at C#, but I have experience with VBScript and I'm trying to convert a script I wrote to C#. Instead of just using a converter, I'm rewriting the code and ...
0
votes
2answers
33 views
Impersonating and WMI'ing a remote machine using UAC
There are a few question on SA about impersonation and UAC, but my situation seems to be different.
My code runs locally, impersonates a user, copies an installer to a remote machine, then finally ...
0
votes
0answers
11 views
How to start a batch-file per remote powershell? Authentificaton
)
i want to start a batch file per powershell but i have authentification errors.
How do i authentificate me correctly?
$mc.PsBase.Scope.Options.userName=$User
...
0
votes
0answers
19 views
WQL Subquery as field value, CIMV2 WMI WQL query for WMI-Filter
I need help on a WMI query for a Group Policy WMI-Filter. I'm querying the win32_group namespace within the root\CIMV2 WMI provider.
I am doing a search for a Local Security group (like ...
0
votes
1answer
18 views
List default Page Size for windows printer devices
I would like to be able to get the default page size of all windows printer devices on a windows server (2003 in this instance).
This should be not the DefaultPageSize property on the Win32_Printer ...
0
votes
0answers
10 views
Python, wmi, enableDHCP fails after setting static values first
So a rather complex issue. I am creating a python program to allow a user to change their network connection to static ip or dhcp (or back and forth). I am doing this using WMI, and have run into an ...
0
votes
0answers
19 views
as a Service connecting remote WMI query errors out with wrong user
Ok, first of all here is the error message from WMI-Activity / Operational in EventLog (Windows 8):
Id = ; ClientMachine = machinename; User = machinename\Dev; ClientProcessId = 1440; Component = ...
3
votes
0answers
58 views
Is this a bug or a feature of ManagementScope?
http://msdn.microsoft.com/en-us/library/system.management.connectionoptions.aspx
ConnectionOptions co = new ConnectionOptions();
co.Username = CreateUserName(Domain, Username);
If I use the ...
0
votes
2answers
27 views
How to use WMI to copy a file from computer A to computer B using unmanaged VC++
I need to have my unmanaged VC++ program able to copy a file from the computer the application is on to one of 100 other computers.
I have administrator access on each computer, so that won't be a ...
0
votes
1answer
27 views
C# Read out every single HDD in a Raid
Is it possible to list every single HDD which is bound into a raid?
Im working on various windows systems and c# is preferred.
It looks like WMI just sees the raid and not what kind of HDD is part of ...
0
votes
0answers
29 views
Why does Python WMI GetBinaryValue return nothing when trying to get binary value in registry?
I am trying to retrieve values for certain registry subkeys and have not been able return values which are binary. I can use the getStringValue and EnumKey methods to retrieve information but for some ...
0
votes
2answers
70 views
Where can I get info about notebook's model name?
I trying to get info about HW from notebooks. I do this via WMI, but not always there contains the info about notebook model for example. It depends on the manufacturer, SONY never contains HW info ...
0
votes
2answers
53 views
Get-WmiObject without PowerShell
I am writing a Windows python program that needs to query WMI. I am planning to do this by using the subprocess module to call WMIC with the arguments I need.
I see a lot of examples online of using ...
0
votes
0answers
27 views
WMI and devcon race?
Our policies require us to enable networking devices for a given remote machine only as needed. These are cellular and POTS modems of various sorts (though right now limited to Ericsson H5321gw and a ...
2
votes
1answer
43 views
Renaming Printer using C# and WMI
I have created a C# application to rename printers on a Citrix server (Server 2008 R2).
The reason for this is because every time a user logs on the printer gets forwarded to the server and gets a ...
0
votes
1answer
18 views
Type Mismatch error when entering CIM_DATETIME in wbemtest
I'm trying to execute a WMI method using wbemtest.exe. I've selected the method in the select box, clicked the "Edit In Parameters", and I'm presented with "Object editor for __PARAMETERS". From ...
0
votes
0answers
22 views
How can I retrieve users list who are currently connected to remote machine? [duplicate]
As written in the subject itself how can I retrieve each user which is connected to remote machine?
The details I need is user name,client name,host name
This should be somthing similar to what you ...
0
votes
0answers
61 views
Running WMI Query results in COMException (0x80080005)
I have been working on a small WMI Info grabber for my job as I work with hundreds of servers and being able to grab certain information can be quite beneficial when having to get it on more than 5 ...
0
votes
1answer
43 views
Silverlight 5 Trusted Application EnumKeys StdRegProv keeps getting Type Mismatch
I have a signed, trusted application in Silverlight 5 (and know its working correctly and AutomationFactory is enabled). However, no matter what I do, I get a COM exception of type mismatch, which is ...
2
votes
1answer
29 views
How do I call a WMI method with an object reference parameter from wmic?
How do I call a WMI method (e.g. RemoveVirtualSystemSnapshot where the first parameter is a reference to a CIM_VirtualSystemSettingData) with an object reference parameter from wmic?
I haven't found ...
0
votes
1answer
44 views
connect to Remote server in vb script
hi i have tried to connect to remote server in vbscript but i am getting the error
2147023174 RPC server is not available. if tried to connect via remote desktop connection i am able to ...
0
votes
1answer
19 views
Async WMI query for Win32_LocalTime does not fire events
I am usually do most of my wmi queries asnyc and normally, I have no
problem with them. I setup a ManangementScope with all privileges and
the necessary dcom security [for remote queries]. A little ...
1
vote
0answers
59 views
WMI query in VB.NET - access denied
I am getting access denied when running the below code with alternate credentials ('Access is denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)).
If I run the whole program under standard ...
1
vote
1answer
24 views
How to know if IEEE 1394 (FireWire) is connected to my Windows 7?
My computer has an IEEE 1394 (FireWire) input.
How programmatically to know if 1394 is connected to my Windows 7?
2
votes
1answer
48 views
How to subscribe a specific network adapter connection event in .NET
I have two network adapters in my machine. E.g. adapter A and adapter B. The A keeps connected
I want to monitor the connection status of adapter B. I mean, connected or disconnected status.
I tried ...
0
votes
0answers
22 views
call wmi in win32 service's probleam.Cant not go on the next Call
this is a simple win32 serivce write by delphi xe3.
in this serice, i call the wmi call. very simple. but something, the service will be hung.
so i debug it,attache the process on the win32 ...
0
votes
1answer
37 views
How can I get the last accessed date of the software
I wanna findout when did the software was last accessed? I tried to use LastUse property of Win32_SoftwareFeature. But it returns strange value (not date). Here's the code I used :
string ...
0
votes
1answer
25 views
How to get data IWbemClassObject **
Hello How to get data from this array? Or how to get all the names that I can extract?
hres = pSvc->ExecNotificationQueryAsync( _bstr_t("WQL"), _bstr_t("SELECT * "
"FROM ...
0
votes
3answers
30 views
WQL query for clients by minimum OS Version Number
Say I needed a WQL query to find clients running Windows 8 or greater:
WQL query Windows 8 or Greater
SELECT Version FROM Win32_OperatingSystem WHERE Version >= '6.2'
Wouldn't you run the risk ...
0
votes
1answer
97 views
Get Mapped Network Drives in Windows 8
As noted, I'm on a Windows 8 machine using Visual Studio 2012.
I need to map/unmap network drives as well as get a list of all of the currently mapped drives.
To map/unmap I'm using ...
0
votes
0answers
49 views
Folder copy method with credentials that shows the current file being copied
As the title says, i'm looking for a method or class that will copy a folder remotely from one computer to another. I would also like to show the current file that is being copied in a label as well. ...
0
votes
1answer
48 views
Find permanently installed physical drives using WMI
I'm using WMI to find all the Win32_DiskDrives on a machine. I want to exclude drives temporarily installed, like USB drives.
Is there a way to do this?
0
votes
1answer
90 views
can't terminate process using WMI but taskkill works
My user is in the Administrators group. I am using the .NET WMI API (System.Management) to kill a process using this code:
var scope = new ManagementScope("\root\cimv2");
scope.Connect();
var query ...
0
votes
0answers
63 views
C++ WMI Provider: type mismatch with “ReturnValue” property in __PARAMETERS instance
I'm implementing a WMI provider in C++, and I'm having some problems implementing the ExecMethodAsync operation: I've followed the MSDN guide here and it all works fine as long as I implement methods ...
0
votes
0answers
112 views
Set-WmiInstance : The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)--WMI permanent event creation
I ran below code on powershell 2.
Os: window 7 both 32 bit and 64 bit
Got below error any solution ?
# -----------------------------------------------------------------------------
# Script: ...
1
vote
1answer
53 views
Remote WMI copy folder
I'm trying to find a way to copy a folder to a network share (homes drive) using WMI in C#. I need to be able to pass the users credentials as they are the only ones who can access the folder. Here is ...
0
votes
0answers
45 views
Renaming a computer Invalid Method Parameters C#
Why does this work:
using System;
using System.Management;
public class InvokeMethod
{
public static void Main()
{
ManagementClass processClass = new ...
0
votes
1answer
55 views
What is the best way to query the volume serial number of a partition without using WMI?
We have a service (runs as the SYSTEM user) which uses WMI to get the volume serial number of the drive Windows is installed. However, we have a client whose WMI security is too restrictive and we ...
1
vote
2answers
212 views
Could not convert variant of type (Null) into type (OleStr)
Do you know why the block of code bellow will negate the "Could not convert variant of type (Null) into type (OleStr)" on some computers, not all of them but 3 out of ten computers generate the error ...
0
votes
3answers
57 views
Automating my job in .bat commands
This set of commands does not run through cleanly. It renames properly but doesn't join the domain or add the user to the localgroup administrators.
@echo off
SET /P compName=Name of the computer:%=%
...
1
vote
3answers
74 views
Best way to detect dvd insertion in drive c#
I tried using WMI to detect new media insertion in Disk Drive using following code. But is there managed solution like using loop in background thread with DriveInfo.GetDrives? Which is best way to do ...
1
vote
1answer
67 views
Imageindex and stateindex in a treeview
I coded a function that gets the list of installed software on the computer using WMI
begin
Result:='';
FWbemObjectSet:= FWMIService.ExecQuery(Format('Select %s from %s',[WMIProperty, ...



