I know it seems this has been asked before, but I need a batch to open another batch in a new window. I\'ve tried:
start abc.bat cmd abc.bat run abc.bat >
I found something that works:
call "C:\FILEPATH HERE\abc"
Demo:
@echo off call "C:\Users\USERNAME HERE\Desktop\abc"
This should work <3