Some Windows services running are application servers, and some of them act as clients. If we disable one acting as a server, for example a service providing file sharing, that function won't be available to any hosts or clients trying to connect. If we disable a client service, then our system won't be able to access that application on our local system or on any servers providing it.
If we want to see what sort of services are present, and what TCP and UDP ports our network services are using and listening on, we can use the netstat command. Netstat can show us what executables and what process ids are involved in particular connections or listening ports. The command:
netstat -abnp tcp
will show us that information for all active TCP traffic and listening services. We can run netstat, save the output, stop a service, run netstat again, and compare the results. A single process can be listening on multiple ports, so using these command line options with netstat can help sort out which service is involved. Since this command also provides the executable file names, it is simple to determine which service is associated with which connections and ports.