| WMIC Verbs: |
| Most aliases support the following verbs.Aliases might also support other verbs.To use verbs in WMIC,enter the alisa name followed by the verb.For more infortion about /?,see "Aliases" in help.If an alias does not support a verb,you receive the message "provide is not capable of the attempted operation." |
| |
| Verb |
| |
| 1.ASSOC |
| Action: |
| ---1.Return the result of the query:Associators of {} Where is the path of objects returned by the PATH or CLASS commands. The results are instances associated with the object. When ASSOC is used with an alias, the classes associated with the class underlying the alias are returned. By default, the output for class is in TABLE format. See the following table of switches for /ASSOC. |
| |
| Parameters or Verb-specific switches: |
| ---2.Optionally, an output file format, such as LIST, MOF, or other. |
| |
| Example |
| ---3.OS ASSOC |
| |
| 2.CALL |
| Action: |
| ---1.Executes methods. |
| |
| Parameters or Verb-specific switches: |
| ---2.Method and parameter list if appropriate. Parameter lists are comma delimited. Use SERVICE CALL /? to get a list of available methods and their parameters for the current alias. |
| |
| Example |
| ---3.SERVICE WHERE CAPTION= |
| |
| 3.CREATE |
| Action |
| ---1.Creates a new instance and sets the property values for the new instance. This cannot be used to create a new class. |
| |
| Parameters or Verb-specific switches: |
| ---2.Properties equated to values, delimited with commas. Use CREATE /? for a list of property names for the alias. |
| |
| Example |
| ---3.ENVIRONMENT CREATE Name="WMIC_test",VariableValue="WMIC_test_value",UserName="SYSTEM" |
| |
| 4.GET |
| Action: |
| ---1.Get specific properties. |
| |
| Parameters or Verb-specific switches: |
| ---2.Property name or switch. See the table of switches for /GET below. Also use GET /? for a list of property names and switches for the alias. |
| |
| Example: |
| ---3.PROCESS GET NAME |
| |
| 5.LIST |
| Action: |
| ---1.Show data. LIST is the default verb. |
| |
| Parameters or Verb-specific switches: |
| ---2.See the following tables of adverbs and switches for LIST. |
| |
| Example: |
| ---3.PROCESS LIST BRIEF |
| |
| 6.SET |
| Actions |
| ---1.Property set operations. |
| |
| Parameters or Verb-specific switches: |
| ---2.Properties equated to values, delimited with commas. Use SET /? for a list of property names for the alias. |
| |
| Example: |
| ---3.ENVIRONMENT WHERE Name="WMIC_test" SET VariableValue="WMIC_test_value1" |
| |
| The List verb has the following adverbs. To use adverbs in WMIC, enter the alias name followed by a verb and adverb. For more information about /?, see "Aliases" in Help. |
| |
| Adverb: A core set of the properties. |
| BRIEF: The full set of properties. This is the default set of LIST properties. |
| FULL: The instance paths only. |
| INSTANCE: The status and related properties of the object. |
| STATUS: System properties. |
| SYSTEM: System properties. |
| Alias-specific or user format: Alias-specific or user defined formats might be defined by providing distinct lists of properties and a format to be used in displaying them. |
| WRITEABLE: The writeable properties of the objects. |
| |
| The List verb has the following switches. To use verb-specific switches in WMIC, enter the alias name followed by a switch (verbs and adverbs might also be used). For more information about /?, see "Aliases" in Help. |
| |
| Switch: |
| /TRANSLATE:: Translate the output using the translation table named by the command. BasicXml and NoComma are translation tables included with WMIC. |
| |
| /EVERY:: Repeat the command every X seconds; X is determined by the interval |
| |
| /FORMAT:: Specify a keyword or XSL file name to format the data, as explained in the following note. |
| |
| The Get verb has the following switches. |
| |
| 1./VALUE: The output is formatted with each value listed on a separate line and with the name of the property. |
| |
| 2./ALL: The output is formatted as a table. The default output format is /ALL. |
| |
| 3./TRANSLATE:: Translate the output using the translation table named by the command. BasicXml and NoComma are translation tables included with WMIC. |
| |
| 4./EVERY:: Return values every X seconds, X is the interval. |
| |
| 5./FORMAT:: Specify a keyword or an XSL file name to format the data, as explained in the following note. |
| |
| The Assoc verb has the following switches. |
| |
| 1./RESULTCLASS:: The returned endpoints associated with the source object must belong to or be derived from the specified class. |
| |
| 2./RESULTROLE:: The returned endpoints must play a particular role in their association with the source object. |
| |
| 3./ASSOCCLASS: The returned endpoints must be associated with the source through the specified class or one of its derived classes. |
| |
| Notes |
| |
| • For both the LIST and GET verbs, the format specifier is used to designate either the name of an XSL file or the standard formats TABLE or LIST. /FORMAT:TABLE is equivalent to /ALL, which is the default output format. |
| |
| • MOF-formatted output can be captured to a file (using the /RECORD switch) and the file can be compiled using Mofcomp.exe on another computer to import it into WMI on the other system. However, make sure that computer-specific properties are edited as appropriate for the other computer. |
| |
| • The order of the /FORMAT and /TRANSLATE switches is important. If /TRANSLATE follows /FORMAT, the output is formatted and then translated. If /FORMAT follows /TRANSLATE, the output is translated and then formatted. |
| |
| |
| Examples |
| The following examples demonstrate the effective use of the verbs and their adverbs and switches. |
| |
| • PROCESS GET NAME /FORMAT:XML.XSL /TRANSLATE:BASICXML |
| |
| The process names are output in XML format. Without the /TRANSLATE switch, the characters around the values are displayed as their HTML equivalents. |
| |
| • PROCESS WHERE Handle="0" ASSOC |
| |
| The instances associated with a specific object (unlike the classes associated with an alias) are returned.COPY |