最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Scheduled tasks for running scripts using node won't work - Stack Overflow

programmeradmin1浏览0评论

I followed this tutorial for scheduling a task for running a script using node:

I left my pc turned on so it could execute the script, but when i came to see if it did execute, there was only a cmd.exe instance open and the task didn't execute the script.

Here's how i configured the action:

Program/Script - C:\WINDOWS\system32\cmd.exe

Arguments - --a -i -c "cd C:\Users\xxxxx\Desktop\folder; node script.js"

Is there another way of doing this?

I followed this tutorial for scheduling a task for running a script using node:

https://eddyerburgh.me/run-a-node-script-with-windows-task-scheduler

I left my pc turned on so it could execute the script, but when i came to see if it did execute, there was only a cmd.exe instance open and the task didn't execute the script.

Here's how i configured the action:

Program/Script - C:\WINDOWS\system32\cmd.exe

Arguments - --a -i -c "cd C:\Users\xxxxx\Desktop\folder; node script.js"

Is there another way of doing this?

Share Improve this question edited Oct 26, 2018 at 8:35 Yura 3,2702 gold badges21 silver badges27 bronze badges asked May 31, 2018 at 12:30 Joao VictorJoao Victor 1,1715 gold badges21 silver badges39 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

You don't need all those extra arguments. Just use the following settings:

Program/Script: node (or "C:\\Proram Files\node\node.exe" if it's not in your PATH)
Arguments: C:\\Users\user\folder\script.js

It will work.

I've managed to make it work by making a .bat file like this:

if not "%minimized%"=="" goto :minimized
set minimized=true
@echo off
cd "<folder where the script is">

start /min cmd /C "node <the script you want to execute>"
goto :EOF
:minimized

Then you can schedule the .bat file to be executed.

发布评论

评论列表(0)

  1. 暂无评论