Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Batch file running VB Scripts question?
I've got a batch file which runs three VB Scripts, problem is, the batch file is running the first VB Script, but then will not run the 2nd, mainly because i believe the VB Script is running in the background, is there a way i can get the batch file to automatically go to the next line? The code is below..
cd C:\batch
call vbscript1.vbs
call vbscript2.vbs
call vbscript3.vbs
pause
Thanks
1 Answer
- Anonymous7 years ago
Looks like you need to get the first one to quit out before it will load the next one. If you want all 3 to run, I would call them inside the script rather than batch.