How to find the number of running process in my local machine.
In this post, we will let you know how to find the number of process running in windows machine using POWERSHELL.
Go to Start in Windows 10 and type PowerShell with 'Run as administrator'.
PS C:\WINDOWS\system32> Get-Process
We can find the below attributes which tells the number of process consumption in windows machine.
Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName
Now, we will move further and look into more PowerShell command. If you stuck while knowing any command then you can easily type the below command in powershell window.
Get-Command
Now, I want to find the number of DRIVES in my local system. Its very simple.😊
Get-PSDrive




Comments
Post a Comment