If you want to reset the link cache before running a Batch Wizard job, then you can use a small TNPL script.
See this documentation page:
https://www.htmlvalidator.com/2020/docs ... kcache.htm
Put this TNPL function in a text file (name the file whatever you want, maybe something like myuserfunctions.txt):
Code: Select all
function onBeforeMainStart() {
ProgressMessage('Attempting to reset the link cache...',0x1000);
if resetLinkCache(30) {
ProgressMessage('The link cache was reset successfully.',0x1000);
}
else {
ProgressMessage('The link cache could not be reset.',2);
}
}