Question
9. To view a list of all services ordered by their status, type the following command, and then press ENTER. PS >Get-Service | Sort-Object Status
9. To view a list of all services ordered by their status, type the following command, and then press ENTER.
PS >Get-Service | Sort-Object Status
The Sort-Object command can order objects returned by a previous cmdlet using one or more of their properties. You can also use the alias Sort to refer to the Sort-Object command.
10. Type the following command, and then press ENTER to view the Name and DisplayName of all services beginning with M, with the output ordered and grouped by Status.
PS >Get-Service M* | Sort-Object Status | Format-Table -GroupBy Status Name, DisplayName Task
USE WINDOWS POWERSHELL SHOW INPUT AND OUTPUT AND A SCREEN FOR EVERY STEP MADE !!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started