You can get a list of or a specific window service on a remote computer by using Powershell. Either use the Powershell or the advance Windows Powershell ISE which is more like an IDE with an editable notepad and not only an terminal.
$service = Get-WmiObject -Class Win32_Service -ComputerName {remoteComputerName}
$service
Replace {remoteComputerName} with your remote computer name
Microsoft Source: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-wmiobject?view=powershell-5.1#example-2-gets-services-on-a-remote-computer