Hello,
Is it possible to combyne jobs by some argument?
Or maybe we can autosave jobs by counter, for example:
first group of 6 jobs auto save to 1 dir
Second group of 6 jobs go to 2 dir
???
Didn’t find any familiar

Hello,
Found CombyneJobs.vbs http://code.metager.de/source/xref/pdfcreator/COM/Samples/Windows%20Scripting%20Host/VBScript/CombineJobs.vbs?r=324 - strange it is not included in current version installation.
Set FSO = CreateObject(“Scripting.FileSystemObject”)
Set Folder = FSO.GetFolder(“C:”)
MsgBox Folder.Files.Count
Set FSO = CreateObject(“Scripting.FileSystemObject”)
Set Folder = FSO.GetFolder(“C:”)
For Each File In Folder.Files
WScript.Echo File.Name
Next`
</div>