|
Answer» I need to launch a BAT file within a CF server called CFCOMPILE.BAT. When I launch this file I need to send it a few arguments. THis is how it works in the CMD WINDOW.....
C:\CFusionMX7\bin\>cfcompile.bat -deploy C:\cfusionmx7\wwwroot C:\cfusionmx7\wwwroot\testing\form C:\cfusionmx7\wwwroot\testing\form2
SO how do I launch this whole THING from a .bat file ?? HELP MEEEEEEEEE Please.......... There are but few differences (mostly syntax) between the command line and batch code. Give this a try:
Code: [Select]call C:\CFusionMX7\bin\cfcompile.bat -deploy C:\cfusionmx7\wwwroot C:\cfusionmx7\wwwroot\testing\form C:\cfusionmx7\wwwroot\testing\form2
|