Problem:
To convert many VSE JCL sources into MVS sources on a regular basis using an automatic process, it is necessary to invoke the converter via the command line.
Resolution:
Here is the required command to invoke the converters in a loop from within a .bat file.
rem all .vse sources are converted to MVS jcl and stored as .jcl in subdirectory \\JCL
rem
for %%I in (*.vse) do run \\jcl-cmd\\loadlib\\vmconva %%I
rem
If the command is to be invoked from a commandline use "%I" instead of "%%I"
#MFDS
#EnterpriseDeveloper