@bestseo Had the same problem in the past. Fixed it by manually starting "C:\Users\User\AppData\Local\TaskScheduler\1.6.0\Scheduler.exe" before starting the Scheduler GUI ("C:\Users\Phoenix\AppData\Local\TaskScheduler\1.6.0\gui\SchedulerGui.exe") and executing all with admin-rights.
[URGENT] Node.JS not working properly
-
// Please help! Need to enable node.js and install request module for this example.
var request = require('request');
request('http://www.google.com', function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
});Some other module work but when I try this I get no output in BAS, works from node.js in command prompt. request module is installed in BAS as well as node.js installation from official source.