All Windows Services connected with Azure ARC
To display all Windows Services connected with Azure ARC you can execute:
Get-WmiObject win32_service | Where-Object {$_.PathName -like “*AzureConnectedMachineAgent*”} | Select-Object Name, DisplayName, State, PathName | Format-Table -AutoSize