
The functionality is still present in 'Export.vbs' script, only the menu items are gone. Looking at 'Scripts.ini' file, we see there are four entries pointing to the same script, with ProcName= property pointing to correspondent function for each report. This has always worked in MM 3.x.
Now, only the first entry for each .vbs file referenced in 'Scripts.ini' is displayed in menu. Subsequent entries are ignored. I discovered this by changing the order in which the entries are listed in 'Scripts.ini' and thus effectively changing the report that appears in menu.
These are the entries I mentioned. Swap the first one with another in 'Scripts.ini' and you change the report that appears in menu.
Code: Select all
[ExportHTML]
FileName=Export.vbs
ProcName=ExportHTML
Order=2
DisplayName=File List (&HTML)
Description=Exports list of selected files to a .htm file
Language=VBScript
ScriptType=1
[ExportXML]
FileName=Export.vbs
ProcName=ExportXML
Order=3
DisplayName=File List (&XML)
Description=Exports list of selected files to an .xml file
Language=VBScript
ScriptType=1
[ExportCSV]
FileName=Export.vbs
ProcName=ExportCSV
Order=4
DisplayName=File List (CS&V)
Description=Exports list of selected files to a .csv file
Language=VBScript
ScriptType=1
[ExportXLS]
FileName=Export.vbs
ProcName=ExportXLS
Order=5
DisplayName=File List (&Excel)
Description=Exports list of selected files to a .xls file
Language=VBScript
ScriptType=1