I am able to compile a Winbatch script, but when I run it I get confusing error messages described below.
(I have simple .jpg screenshots of these error messages, but for some reason, they do not pass the security check of this forum.)
The first error message is:
---------------------------------
Determined.txt
Required DLL File could not be created.
Insufficient disk space exists on drive to
write the DLL file above. Approx 400K needed.
---------------------------------
(NOTE: no DLL file is listed above, just a text file. Also, 14.5 GB of free disk space is available)
-----------------
Next, this error message appears:
---------------------------------
WIL Extender Error: 10143 ExtractAttachedFile Error
finding or extracting specified file
---------------------------------
The code asking for extraction is as follows:
;Extract other files if they don't already exist
rc = 0
files[0] = "prompts.txt"
files[1] = "BigArticle.txt"
files[2] = "Determined.txt"
files[3] = "Editor.txt"
files[4] = "Encouraging.txt"
files[5] = "Fitness-enhancing.txt"
files[6] = "Inspirational.txt"
files[7] = "MakePrompt.txt"
files[8] = "Oneliners.txt"
files[9] = "people.txt"
foreach file in files
if ! FileExist(file)
rc = ExtractAttachedFile(file, file)
endif
next
I've tried running the application on multiple drives all of which have more than adequate disk space, and I get the same error messages.
NOTE: previously, I was able to compile and run the application without these errors, and I think I made no changes to the script.
The Winbatch error about not being able to extract the required DLL without listing the DLL above is confusing.
Also, the required DLL was actually extracted as you can see from one of the screenshots.
How can I fix this? Thanks for your help.