I'm trying to use the Get-Service
command to find a service on a remote computer. What I'm basically doing is typing this:
Get-Service -ComputerName <Server> -Name <Service>
However when I get to the part where I'm wanting to provide my service name the selection window of services I can pick only displays Windows services and not the newly added one I added manually to the server. My service is called "Conec" however I dont see that in the list of suggested services and if I just type -Name Conec
and run the script PowerShell says it can't find the service even though that's what its service name is.
So basically how do I Get-Service
for services I've added myself, which aren't the standard Windows services?