|
Answer» Hi,
I'm trying to create a batch script that will run all my maintenance scans and then shutdown my computer when all the scans are done. I've got the basic idea behind it but the problem i face is that some of the scans cause DOS to pause until the SCANNER's WINDOW is closed. This ultimately causes all subsequent DOS commands to never get called.
Is there SOMEWAY to tell DOS to close the other WINDOWS that are open so that DOS may continue on? or is there someway to start a new script while the first script continues (i.e. script A will call script B then continue ONTO the scan while script B runs in parallel to script A)?
Thanks!This will let ScriptA, ScriptB and ScriptC all run in parallel: Code: [Select]@echo off start ScriptA start ScriptB start ScriptC
|