CALL command vs. START with /WAIT option
For exe files, I suppose the differences are nearly unimportant.But to start an exe you don’t even need CALL. When starting another batch it’s a big difference,as CALL will start it in the same window and the called batch has access to the same variable context.So it can also change variables which affects the caller. START will create a new cmd.exe for the … Read more