How to fix Task Scheduler "Remote Computer not found"

Darty 20 Reputation points
2025-02-17T17:22:02.0133333+00:00

I've had this issue for years where my Task Scheduler simply won't work, I've tried looking for any possible fix by browsing forums and following every instruction to attempt to fix it, everything but a clean boot because I want to avoid that at all costs.

When I try to run Task Scheduler from services, it won't run. It will simply give me a warning that it "started and then stopped".

When I try to open Task Scheduler it just tells me "Remote Computer not found"

I've tried adjusting the start values to 2 in the registry editor and then restarting my PC, and other recommended configurations but nothing seems to work.

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

Answer accepted by question author
  1. MotoX80 37,161 Reputation points
    2025-02-17T21:26:11.03+00:00

    It will simply give me a warning that it "started and then stopped".

    Open a command prompt with "run as administrator" and run this command.

    sc qc Schedule
    

    Verify that the output looks exactly like this.

    C:\>sc qc Schedule
    [SC] QueryServiceConfig SUCCESS
    SERVICE_NAME: Schedule
            TYPE               : 20  WIN32_SHARE_PROCESS
            START_TYPE         : 2   AUTO_START
            ERROR_CONTROL      : 1   NORMAL
            BINARY_PATH_NAME   : C:\WINDOWS\system32\svchost.exe -k netsvcs -p
            LOAD_ORDER_GROUP   : SchedulerGroup
            TAG                : 0
            DISPLAY_NAME       : Task Scheduler
            DEPENDENCIES       : RPCSS
                               : SystemEventsBroker
            SERVICE_START_NAME : LocalSystem
    

    Then paste in these commands. If your schedule service isn't running, then it should report STOPPED. But verify that all of the other services report RUNNING.

    sc query  schedule  | findstr -i state 
    sc query  DcomLaunch | findstr -i state 
    sc query  RpcEptMapper  | findstr -i state 
    sc query  RPCSS  | findstr -i state 
    sc query  SystemEventsBroker  | findstr -i state 
    

    If any of those other services are not running then you will need to figure out what error they are getting. Check the System event log and look for service failures events.

    When I try to open Task Scheduler it just tells me "Remote Computer not found"

    That's probably because your service is not running.


2 additional answers

Sort by: Most helpful
  1. Darty 20 Reputation points
    2025-02-18T12:04:46.2866667+00:00

    User's image

    User's image

    User's image

    this what I got


  2. AllEyesOnK 11 Reputation points
    2025-11-19T17:25:01.9633333+00:00

    I too have been struggling with this issue for probably a year or more. Basically since starting to build replacement 2022 servers for our infrastructure (replacing 2016 / 2019 machines).

    I stumbled upon this thread, which did not solve my issue immediately, but did lead me down the right path.

    I would absolutely perform the recommended steps from the original post mentioning verifying that services are running / started, the permissions, folder contents, etc.

    What I found was that my Task Scheduler service was not running (as expected), and of course, if I opened the Task Scheduler I received "the remote computer could not be found".

    Looking at the Windows event logs, I started searching one by one through the logs (starting with the Application log, and then the System log, etc.) I decided to filter by Event Sources and chose TaskScheduler. What I found very quickly was the following:

    Maintenance Scheduler Group Policy Settings are not properly specified for "Automatic Maintenance Activation Boundary". Default settings are being used.

    1

    This being a domain joined machine, I thought to myself "let me check that policy". On the policy that was specifically applied to this machine, I found the following setting configured as such:

    Computer Configuration > Administrative Templates > Windows Components > Maintenance Scheduler > Automatic Maintenance Activation Boundary was set to Enabled and a time was set as: 1:00

    2

    This did not appear to be an issue. Other computers in the same OU as this server did not seem to have Task Scheduler issues. However, the other computers in the same OU were Windows Server 2016 and not Windows Server 2022. So I decided to do a quick search online to see what could possibly be wrong with this setting in its current configuration. I found a chart that showed basically the intended time (in my example, 1:00 AM) and the correct corresponding setting for that time, which is not 1:00. Instead it should be represented in the following way:

    2001-01-01T01:00:00

    3

    I made this change, performed a gpupdate / force and rebooted the problematic machine. After rebooting, I am happy to report that not only does the Task Scheduler service start properly (and I am able to access the Task Scheduler) but this also seemed to fix another issue I have been having with Windows Server 2022 machines, which is that the windows search functionality does not work (it does after applying this change).

    Prior to this, I was wondering if there had been issues with the way I was deploying images (I use MDT / sysprep), so I tried building a Windows Server 2022 VM from the Windows ISO (this resulted in the same problem). I thought it might be group policy, but hesitated, since as I mentioned previously that other machines in the same OU (receiving the same policies) were not having this issue. I hope this helps someone!

    Note: I did also test performing a gpupdate /force and reboot on a previously working Server 2016 server in the same OU to verify that this change did not unintentionally break the Server 2016 machines. I can confirm that things are still working properly.

    Note: The chart I mentioned that maps the intended time to the correct configuration can be found at this link: https://www.tenforums.com/tutorials/125655-specify-automatic-maintenance-time-run-windows-10-a.html

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.