Is there a way to get the detailed "DESCRIPTION" of the Service? The below cmdlet can provide all of the properties of Windows Service including display name but it is not getting the "Description"
Get-Service | select -Property * | Out-GridView
Get-Service returns a limited set of information, go to Get-WmiObject win32_service for more:
Get-WmiObject win32_service | select * | ogv