• lopesoft filemenu cmd echo
    3 replies, posted
Trying to setup an entry in the FileMenu tool to compile .il files when I select it. Right now I have Program: C:\Windows\System32\cmd.exe Arguments: /C "C:\Windows\Microsoft.NET\Framework\v2.0.50727\ilasm.exe" %FILETITLE1%.il /quiet /output=%FILETITLE1%.exe /res=%FILETITLE1%.res & pause Working: %FILEPATH1% Only problem is that it doesn't echo out any information in the cmd window. Side thing, is there anyway to put %FILETITLE1% inside of quotes? Or does it auto quote it? Cause it would suck to have it not work with files with spaces in the name.
make a batch file? [code] @echo off cls "C:\Windows\Microsoft.NET\Framework\v2.0.50727\ila sm.exe" %FILETITLE1%.il /quiet /output=%FILETITLE1%.exe /res=%FILETITLE1%.res pause [/code] Also, ever thought of removing the /quiet argument?
It is much more convenient to put it in FileMenu so I don't have to keep making bat files.
Regardless, remove the /quiet argument, it disables messages from appearing on the cmd window.
Sorry, you need to Log In to post a reply to this thread.