I want to run an exe with a pre-argument in java. For example, if this is executed in a command prompt.
C:\> installutil myApp.exe
installutil is the pre-argument (or command) to myApp.exe. Here it is different than passing normal arguments to Runtime.getRuntime().exec()
or Process.start()
;
Thanks.