Quote:
Originally Posted by Dc5e
An example batch file (with KindleComicParser.exe, kindlegen, kindlestrip.py, and the batch file in a folder that's added to Window's PATH environment variable):
Code:
echo Kindle Comic Generator
set /p comicname= Please enter comic name:
KindleComicParser.exe %comicname%
kindlegen -c2 %comicname%.opf -o out.mobi
kindlestrip.py out.mobi %comicname%.mobi
del out.mobi
|
I keep getting ".NET Framework Initialization Error - Unable to find a version of the runtime to run this application"
However, the program works fine when I don't try to use a batch file.