Jump to content

Recommended Posts

Posted

It would be really useful when listing the Windows services in PC Monitor under System, Services if you could list the current service status ie if its Automatic, Manual, Disabled or Delayed Start that way it would be easier to add in the services that you want to monitor rather than having to refer to the Windows Services console as well. At the moment I have to access this information on each server or workstation rather than just looking at the PC Monitor list, it makes it rather tedious and easy to miss a service that you need to monitor.

  • Administrators
Posted

Hello,

 

While the addition will be useful you can get the same information using powershell script with POTS plugin.

 

Get-WmiObject win32_service | select name, startmode

 

Paul

Posted

Yes true or:

 

Get-WmiObject -Query "SELECT * FROM win32_service WHERE startmode='auto'"

 

Still not as quick as listing it in the PC Monitor GUI and making the column header "Startup Type" sortable as the Services mmc does in Windows.

  • Administrators
Posted

True, maybe it will get implemented.

 

If you need this even faster you can do a plugin that gets the list of services, and have multiple pages for search, sorted by name, sorted by startup type or other filters. If you are curious about this approach let me know and I can help you get started.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...