How to do System Diagnostics

 In this tutorial, we will actually work on the system diagnostics process used by powershell.

PS C:\WINDOWS\system32> Get-Process | Get-Member

Here , Pipe(|) in PowerShell stands for pipeline. This cmdlets helps combine one command to get the command of other cmdlet.














You can do Get-Help if you got stuck in figuring out any command.

1.For example: I want to format the data associated with domain(more.com) then I can show it in list format in PowerShell 

PS C:\WINDOWS\system32> Get-Command more* | format-list

2.For eg: Suppose I am connected to the internet so I want to find out the network connection through which I am getting the internet.

A question❔ comes in my mind👨, how to achieve using PowerShell.

Please comment in to make this blog more interactive and learning positive.

Comments

Popular posts from this blog

How to Create a Firewall Rule Using PowerShell.

How to find the number of running process in my local machine.