I’m having a brain lapse here. Â It has been a long day I guess.
Get-Service -servicename 'bits' | select status
Returns a column header Status with Running.
I just want to return Running. Â I need to drop the header.
I know this works
(Get-Service -servicename 'bits').status
I cannot do that because I need to return a bunch of stuff.