Do you have an idea how can one vbs file verify the correctness of another vbs file but without executing it?
By “verify correctness” I mean that this second file can be compiled without getting an error.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Update:
As intersum pointed out, I did not realize that the
WScript.Quitwill terminate the script that execute(global)s it. So using a shell can’t be avoided.Proof of concept script:
output:
Update II:
As can be seen from:
a runtime error may occur after most of the script has executed (output of “bad”). To deal with such errors, you must
None of these requirements are ‘easy’ in VBScript.