Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Any way to use PDQ to start all services that are Automatic and not running?

Every time we do Windows Updates we end up with a number of machines that have services that don't start up after the reboots. Is there any way to use PDQ to find any machines that have a service that is set to Automatic Start but that isn't running, and then have it issue a start command on those services?

We currently have a powershell script that can do this but would rather have something graphical we can use to see that it worked.

Thanks.

0

Comments

4 comments
Date Votes
  • Hi, first of all, you should configure the service's recovery actions in the service's properties. There you can also use a program to send a mail so you know a service failed. Other than that, you can modify the powershell script so that it logs its actions to a file in a share. OR you can have a PDQ Inventory report which will tell you all you need to know. The only downfall is that you have to tell the report which services can be safely ignored as there are many which do start but then at a later time stop.

    0
  • Sample XML

    <?xml version="1.0" encoding="utf-8"?>
    

    <AdminArsenal.Export Code="PDQInventory" Name="PDQ Inventory" Version="17.0.4.0" MinimumVersion="3.1">

    Service
    0
  • I've created a simple report as sa example. Stopped services XML

    0
  • We have this issue in our environment too. Currently I am using Inventory to scan for stopped services and Deploy on a heartbeat schedule to turn those services back on. However, I am starting to play around with the idea of using Group Policy Preference instead. Here is how you can setup Inventory and Deploy to automatically handle this.


    Inventory

    Create a dynamic collection to filter for all and create two filters for Services.

    Set the first filter for Name and equals to whatever service you want (WSUS in the example, wuauserv)

    Set the second filter for State and Does Not Equal "Running"

    (If you want to search for Autostart, create another filter for Service - Start Mode - Contains - "Auto". That will find services that are also set to Autostart.)

    service


    Deploy

    Create a package to run CMD command for starting a service.

    Create a schedule to trigger on heartbeat. Link the target to PDQ Inventory collection and the package to the start service package.

    service2

    service3

    0