windows services retrieve company/vendor

hello,

Is there a way to retrieve windows services but along with their vendor/company?
Something identical to get-process for instance:
[16:10 PM C:]> Get-Process AdobeCollabSync | select name, Company

Name Company


AdobeCollabSync Adobe Systems Incorporated

A service usually does not provide these kind of information. You could try to use the information about the executable a Get-CimINstance delivers and read the file info to get these information.