
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get Running Processes with CIM Instance Using PowerShell
You can also display the running process on the computer using the Get- CimInstance command with the same class Win32_Process that the WMI object is using.
Command
Get-CimInstance Win32_Process
Output
ProcessId Name HandleCount WorkingSetSize VirtualSize --------- ---- ----------- -------------- ----------- 0 System Idle Process 0 8192 8192 4 System 6387 970752 5177344 96 Registry 0 76951552 173195264 568 smss.exe 53 495616 2203359674368 800 csrss.exe 883 4653056 2203416825856 896 csrss.exe 817 5349376 2203449389056 920 wininit.exe 156 4886528 2203387420672 956 winlogon.exe 264 9486336 2203423092736 8 services.exe 838 10129408 2203391979520 684 lsass.exe 1870 20848640 2203418796032
Advertisements