20 pts.
 closing a window in batch script
I have a batch script to open a window with variables to send a report. is there a way to close the window via the script?

Software/Hardware used:
ASKED: June 4, 2010  9:01 PM
UPDATED: June 7, 2010  1:55 PM

Answer Wiki:
Typically put "EXIT" as the last line in the script.
Last Wiki Answer Submitted:  June 5, 2010  8:40 am  by  Denny Cherry   64,520 pts.
All Answer Wiki Contributors:  Denny Cherry   64,520 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Please provide more details.

Operating system, scripting language, instruction being used to open the window, etc

 63,535 pts.

 

this is my .bat file:
set cmd2=”&S_GROUP=1″”&S_YEAR=1″”&R001=05″”&R003=2009″”&R003=2011″
set cmd1=http://svestat:8011/mrcjava/servlet/FOLW_DB.R00410s?run=1″&outfmt=0″
CMD.EXE /C START %cmd1%%cmd2%
exit

this is the resulting url:
http://svestat:8011/mrcjava/servlet/FOLW_DB.R00410s?run=1&outfmt=0&S_GROUP=1&S_YEAR=1&R001=01&R003=2008&R003=2011

I want to close the url window I opened. can that be done?

 20 pts.