|
Answer» MBox.exe is application, it can accept one parameter.
how can i start mbox.exe with the parameter readed from a file( tmp.txt ).
i try it as FOLLOWING:
start mbox.exe
but the mbox.exe can't accept the parameter in tmp.txt, why???i DONT have mbox.exe , so theres no way to tell for SURE.. but you could try the for command
for /f "tokens=1*" %%a in (tmp.txt) do start mbox.exe %%athanks your REPLY, but i want to GET all the message once from the tmp.txt as the input parameter.
how can i do this?
|