Здрасьте.
Столкнулся с тем, что возвращаются крякозяблики вместо кириллицы.
cmd
chcp 866 - проверял
iconv.decode
не спасает.
Например:
exec("dir /D", function (error, stdout, stderr) {
response.writeHead(200, {"Content-Type": "text/plain"});
var convert=iconv.decode(stdout, "CP866");
response.write(convert);
response.end();
});
}