|
Google let me down, I couldn't find it on MSDN. man wmi doesn't work at the windows shell... I'm looking for a list of objects that I can query, and how to construct the queries.
With WMI I mean the query language to query stuff like "Win32_Process"
I...
Started by Paco on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
There isn't a documented "complete" list of WMI classes that you can query, because programs can register their own ....
Queries
There is a Query Language Guide , Query Language Reference , and the Main WMI Documentation page on MSDN .
|
|
Does anyone have links to resources that list perfmon classes that are called by the WMI Query Language? I have some monitoring software that can pull data via WMI but I have to enter a query in WMI Query Language (WQL). Here is an example:
SELECT AvgDiskQueueLength...
Started by David Yu on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
However, according....
The SQL2005 classes are here.
Tool from the Scripting Guys, that works as a WMI object browser as well as outputting a basic scriptMSDN has the best list for WMI classes, but it can be difficult to track them down.
|
|
I've been told by a coworker that if my WMI system information gathering queries are forward-only and/or read-only, they'll be quite faster. That makes sense. But how do I do it?
Started by JCCyC on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In the semisynchronous mode, WMI method calls return immediately and objects are retrieved in the background and returned on demand once.
Method calls together with forward-only enumerators.
|
Ask your Facebook Friends
|
I'd like to start at the top of a WMI namespace, recurse through all the objects, then recurse through each object's property list, filtering out and returning to console only those properties that have mem in their names.
This is what I have so far:
...
Started by quux on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I think this is very .Net objects, so....
I think by listing the namespace you get WMI CLASS Objects, but not the actual object instances could try | select-object "mem*"
but I'm not sure if that is really what you want.
|
|
I have an interesting/annoying problem with some VBScripts running on Windows 2003 Server (they run fine on XP).
The scripts basically periodically call WMI objects to extract performance information and write it to a log file. It's started by Scheduled...
Started by paxdiablo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
One suggestions : free all objects.
The error 1722(0x6BF) is : The RPC server is unavailable .
|
|
Hi - I've having trouble directly accessing the Win32_OperatingSystem management class that is exposed via WMI.
It is a singleton class, and I'm pretty certain "Win32_OperatingSystem=@" is the correct path syntax to get the instance of a singleton.
The...
Started by frou on
, 10 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Batch....
Batch: 1" in those fields and lists a WMI novice, but this seems like one of the simplest use cases!
Duncan wrote:
The instances dialog shows: "1 objects" and "max.
The instances dialog shows: "1 objects" and "max.
To true.
|
|
I'm experiencing a memory leak when using WMI from Delphi 7 to query a (remote) pc. The memory leak only occurs on Windows 2003 (and Windows XP 64). Windows 2000 is fine, and so is Windows 2008. I'm wondering if anyone has experienced a similar problem...
Started by jqno on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
These are COM objects that do not inherit objects, which are immediately....
My system is up-to-date is assigned to objects, contrary to the Delphi spirit...
Version-specific problem in WMI looks like the most probable cause of this.
|
|
Hi all,
My goal is to add php Extension to IIS6 and IIS 7 via Code in C# using WMi (System.Management). I cant use DirectoryEntry.
I am stuck with adding a new ScriptMap Object to IIS 6/IIS7.
I have read some posts at here and there and heard that adding...
Started by Steve Johnson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
:-)
The solution was
to add "*.php" extension in "Extensions" Property of ScriptMap Array and "ScriptProcessor... .
Problem solved through Thanks Kev.
Got it.
Why reinvent the wheel?
PHP.net installation
@Kev.
Try the PHP installer, it has an option for IIS. .
|
|
Hi all...I have very limited knowledge of WMI (and API) but I am trying to build a dashboard. Now I just need to know what other options are available to me.
I will be constructing a function so that it can be called within a cell, or from a sub, to return...
Started by theta on
, 9 posts
by 4 people.
Answer Snippets (Read the full thread at mrexcel):
To gather a lot of info into a text file named using the computer name
hope this helps
The WMI objects just use dot for the name '**** ' strComputer = "." ' '**** ' lets query WMI for the printers For i = 1 to 10, GetClassInfo(List....
|
|
I really need to automate setting up auditing on a lot of files on a lot of XP machines. We have to meet DSS requirements and they have better than 150 files/folders we have to set specific permissions on and auditing.
I can do the permissions no problem...
Started by JayteeBates on
, 4 posts
by 1 people.
Answer Snippets (Read the full thread at hardforum):
' ' The ACE ' This is the object that actually contains the information we WMI Service object with privleges to get SD for the File/Folder object we want to process ' Set the object....
Control Entry (ACE) objects.
|