Find can search through files for strings but also can have output piped to it. So for example, to list all the services containing the word 'Sophos' on a remote computer, you can use the syntax:
sc \\computername query |find "Sophos"
Apologies if you don't find anything of interest here, it's more for my own use than anyone else's. I'm a network & server administrator from Preston, UK. I'm sure you're not interested in my personal opinions, so mostly this blog will be stuff that I need to know for my own use, if you find it useful too then I'm glad.
sc \\computername query |find "Sophos"
get-mailbox * | select displayname, primarysmtpaddressThis will list all the mailboxes on the server and the primary email address next to it.