I have below command and saved it as a .bat file.
taskkill /F /IM explorer.exe
start /realtime chrome.exe
now I want to add some further command so that upon closing google chrome Windows Explorer process gets started automatically.
I have below command and saved it as a .bat file.
taskkill /F /IM explorer.exe
start /realtime chrome.exe
now I want to add some further command so that upon closing google chrome Windows Explorer process gets started automatically.
use start /wait
to wait until the started process is finished/exited. Then just execute explorer.exe
taskkill /F /IM explorer.exe
start /realtime /wait chrome.exe
explorer.exe
Note: I don't think, its a good idea to kill explorer or to start a browser as "realtime", but I see your point: being on a meager system you want to assign every available resource to the task to be done.
Try the following with administrator privileges
start /min taskkill.exe /f /im explorer.exe 2>nul >nul && start "" /wait "%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe" && start "" /wait /realtime "%windir%\explorer.exe" && start "" /realtime "%windir%\system32\taskkill.exe" /f /im cmd.exe <nul
This final part: start "" /realtime "%windir%\system32\taskkill.exe" /f /im cmd.exe <nul
, can be replace by call some_bat.bat <nul
with all commands that you need to run.