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
Post a Comment