Assume that the batch file is executed by the process created by the createProcess() function. The path of the file is given as the first argument to the createProcess() function. How can i pass arguments to this batch file?
Does using lpCommandLine parameter to pass arguments result in any problem if the parameters are strings which contain spaces within them? For example, "abc=20 xyz=10" and "def=5 ggg=15" are two arguments to be passed. My question is does having spaces (" ") within the string will be a problem and how do i pass them as two separate arguments?