Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Let’s take a closer look at the objects returned from the WMI cmdlets. Once again, we’ll look at the Win32_Process class for this investigation and an instance of the calculator applet. You start the program and then get the Win32_Process object for that process:
PS (1) > calc PS (2) > $g=Get-WmiObject Win32_process ` >> -filter 'Name = "calc.exe"' >>