Is there a way to list the services’ manufacturer in powershell in a similar format ?
I could come this far. However, this doesn’t work for all the services
foreach ($item in get-wmiobject win32_service)
{Write-Host
$Item.Name,'
$item.StartMode,$item.State,'
$(get-childitem -path ($item.pathname -replace '"','' )|'
select-object -expand VersionInfo | '
select-object -expand CompanyName -ErrorAction Stop)
}