将cscript输出返回到批处理

时间:2017-04-26 14:58:52

标签: batch-file jscript wsh

我的批处理脚本正在使用带有Javascript语法的CScript执行HTTP请求,如我的示例所示。

使用this approach(也是seen here)和一些help on escaping我尝试了以下内容:

@if (@This==@IsBatch) @then
@echo off
rem **** batch zone *********************************************************
    setlocal enableextensions EnableDelayedExpansion

    set OWNPATH="%~dpnx0"

    if not "%~11"=="" (
        FOR /F "usebackq tokens=*" %%r in (`cscript //E:JScript %OWNPATH%`) DO SET RESULT=%%r
        ECHO %RESULT%
    )

    exit /b

@end
// **** JScript zone *****************************************************
// Instantiate the needed component to make url queries
var http = WScript.CreateObject('Msxml2.XMLHTTP.6.0');

// perform request
var requestURL = "http://myserver/api";

// Make the request 
http.open("GET", requestUrl, false);
http.send();

WScript.Echo(http.ResponseText);

// All done. Exit
WScript.Quit(0);

不幸的是,我收到一条消息“ECHO已关闭”。而不是%RESULT%中的字符串。

该脚本在Windows 2008 R2服务器上运行。

1 个答案:

答案 0 :(得分:1)

感谢@Stephan,它在使用

时有效
echo !RESULT!

由于delayed expansion