Am using a vbscript program in which i do the following process,
i call a bat file and based on it's out put i need to call another bat file.
for e.g one.bat and two.bat are the batch files..
one.bat file will print message "Success" or "fail" in command window. i have to read the string through vbscript and if success have to call two.bat
i have tried using exec but its opening a command window, i don't want any command windows to be opened in GUI while executing the VBS.
Am new to this please explain with example.