문제

I have a vbscript which will be invoked from command window. The code will be deployed in Jenkins soon. I want to know how to monitor the code running in Jenkins console

Can anyone help me?

도움이 되었습니까?

해결책

Before running your script run the following command from command line,

The default scripting engine for Windows 2000 and onwards is WScript. To change the default scripting engine from WScript to CScript, type the following line:

 cscript //h:cscript //s

here is a link for more info: HERE

this should help you see the result on the console window.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top