I have an application (IP2SI2IP.exe ) and I wrote this command in JS to run it :
<script type="text/javascript">
function run(){
wshShell=new ActiveXObject("Wscript.shell"
);
wshShell.Run("C:/Windows/System32/cmd.exe",1,false)
wshShell.Run("IP2SI2IP /S /N xxx.SES",1,false)
}
</script>
This app converts the specific file with SES extension (for example : xxx.SES ) IP unit to SI unit. Anytime when I have a new input file (for example yyy.SES), I have to re-type it manually in front of the IP2SI2IP /S /N command the run it again.
I'm looking for another command that it can first: find the file with SES extension from the related folder then puts this SES file in front of the "IP2SI2IP /S /N" command and run it by itself.
Thanks!