February 2013
Beginner
704 pages
21h 31m
English
After completing this chapter, you will be able to:
Use WMI cmdlets to execute instance methods.
Use WMI cmdlets to execute static methods.
There are actually several ways to call Microsoft Windows Management Instrumentation (WMI) methods in Windows PowerShell. One reason for this is that some WMI methods are instance methods, which means they only work on an instance of a class. Other methods are static methods, which mean they do not operate on an instance of the class. For example, the Terminate method from the WIN32_Process class is an instance method—it will only operate against a specific instance of the WIN32_Process class. If you do not have a reference ...