CombineJobs by script or save to DIR by job ID

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 :frowning:

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.


But I can’t gess how to make cycle of PrintJobs=6 then CombyneAll then PrintJobsNextFiles=6
Here is the approach to it:
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>