How do you see the services that are currently running via a command in Chocolatey on window 10.
The equivalent for this command is on MacOS Brew is
$brew services list
How do you see the services that are currently running via a command in Chocolatey on window 10.
The equivalent for this command is on MacOS Brew is
$brew services list
On a Windows Operating System, the concept of applications running in the background is built in (in the form of a Windows Service). As such, there is no real requirement to add this as a command in Chocolatey since getting a list of the currently running Windows Services can be achieved using the Get-Service
PowerShell cmdlet.
For example, if you were interested only in the currently running Windows Services, you would use:
Get-Service | Where-Object Status -eq "Running"
I don't really see how Chocolatey, as a Windows Package Manager, could add any real value here.