Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Task scheduler cannot open batch file when set to run whether user is logged on or not

OS: Windows Server 2008 R2 Enterprise

I am unable to get the Task Scheduler to run .bat files while I am logged off. I have a a production .bat file I want to use, but for my troubleshooting purposes I am using C:\Users\Administrator\Desktop\test.bat

test.bat is very simple. All it contains is: taskkill /im notepad.exe

It runs successfully on its own. If I have Notepad open and I double-click test.bat then the cmd window flashes and Notepad dies. The .bat file is not the problem.

The task I created in Task Scheduler is "Test taskkill" (without the quotes). I can see its location in Windows Explorer: C:\Windows\System32\Tasks\Test taskkill

If the task is set to run only when the user is logged on then the task works. With this setting, I can right-click on it > run and I get the same behavior as if I double-click the .bat file. That means the task is configured correctly.

If I set it to run whether or not the user is logged on then when I right-click > run nothing obvious happens. The job is reported as having been run successfully in the history, but Notepad survives. I know that I am using the proper credentials for the account that I am configuring to run the task. That account is the local administrator.

This issue appears similar to issues other have had in the past:

Running a .bat file in Scheduled Task

http://social.technet.microsoft.com/Forums/windowsserver/en-US/d47d116e-10b9-44f0-9a30-7406c86c2fbe/scheduled-task-wont-run-bat-file?forum=winservermanager

The thread in the second link seemed to resolve an identical issue for many people with the suggestion that the account used to run the task requires explicit permission to the .bat file and all files that the .bat file modifies. This was very promising (if an annoying requirement). However, I have confirmed or assigned explicit permissions for the local administrator to the following areas, and I am still not successful:

  • C:\Users\Administrator\Desktop\
  • C:\Users\Administrator\Desktop\test.bat
  • C:\Windows\System32\Tasks\
  • C:\Windows\System32\Tasks\Test taskkill

Additionally, I have confirmed that the local administrator account is in the local administrators group.

Am I missing some other permissions that needs to be set? Is there something else I should be looking at? Thanks!

like image 816
MasterOfNone Avatar asked Sep 09 '14 19:09

MasterOfNone


People also ask

How do you enable Run whether user is logged on or not?

To run the task with the option "Run whether user is logged on or not" you have to activate the option "Run with highest privileges". After activating this option the task really run whether the user is logged or not.

How do I run Task Scheduler when logged off?

To set up Advanced Task Scheduler to run tasks in background when no user is logged on into the system: Create your task on the "All Users" tab. Select the "Run task on the hidden desktop" option on the "User Account Options" tab of the Task Properties window.

How do I allow a user to run Task Scheduler?

Scheduled tasks are saved in C:\Windows\System32\Tasks folder as xml files (with no extension). To allow non-admin users to view and run a task, find the task(s) in question and change permissions to allow Read and execute for your chosen user or group (as you would for any other file or directory).


3 Answers

I have resolved this problem with help from a contractor who was doing some other work for my institution.

In the properties window for the task, on the Action tab, when creating or editing the action that opens the batch file (in my case test.bat), there is the "Program/script:" field and there is also a "Start in (optional):" field. I previously had the "Program/script:" field containing the full path to the file, ending with the file name, and I had the "Start in (optional):" field null. This configuration appears to work without issue when the task is set to "Run only when user is logged on" in the General tab of the task's properties window. However, this configuration does not work when the task is set to "Run whether user is logged on or not".

In order to resolve the problem, I changed the action so that the "Program/script:" field contained only the file name, not the file path. I put the file path in the "Start in (optional):" field. This configuration works when the task is set to "Run only when user is logged on"! I have tested with the task running on a trigger and also with running it manually.

like image 135
MasterOfNone Avatar answered Oct 13 '22 19:10

MasterOfNone


Not sure if this helps. My issue was using a interactive program (in particular Excel) as well.

Creating the 2 empty folders (Desktop) solved it. Create both even if you are running on x64.

C:\Windows\System32\config\systemprofile\Desktop
C:\Windows\SysWOW64\config\systemprofile\Desktop

I debugged my code and realised the code exited at this line

ExcelFile excelFile = new ExcelFile(directory, filename);

I read this solution somewhere and I cannot find the URL now.

like image 37
maryhadalittlelamb Avatar answered Oct 13 '22 20:10

maryhadalittlelamb


Try this as well..

Resolved the "Run whether user is logged on or not" by setting the “Log on as Batch Job” security policy.

Here is details on the setting… https://danblee.com/log-on-as-batch-job-rights-for-task-scheduler/

You may take another approach, but here is the steps… 1) I updated the default domain group policy by adding my admin account (that I fire the task with) to the “Log on as Batch Job” security policy. (Even though ADMIN group is listed, and I am using an admin account) 2) I forced GPUPDATE on the client 3) Rebooted the client 4) Looked at the policy on the client to make sure it made it over from the DC 5) Set the task "Run whether user is logged on or not" 6) Ran the task on demand and it worked creating a PDF file. 7) Logged out and ran the task at scheduled time and it worked creating a PDF file.

like image 2
San Avatar answered Oct 13 '22 19:10

San