Can I run a windows batch file with hidden cmd window but see the programs started by the batch?
问题 I want to start a batch file in a hidden way. This discussion describes very well how it can be done: by using the CreateProcess API function. Using this method my started batch script is not visible. The problem is though that the programs (exes) called inside of the batch are hidden, too! My goal is to hide the started batch windows but show the windows of the applications called inside the batch. Is it possible? If so, how? Can I use the CreateProcess function for it or do I need another