Audio Export Post Processing: Open Export Folder

Even though it has been several months since this thread was active I add a link to my reply to the same question in another thread for future readers.
The offered solution will open the Explorer in the folder chosen for the export. It requires no .exe but a small batch file, which is included in the zip package.

The .aepp file looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<AudioExportPostProcess>
	<Description>Open in Explorer</Description>
	<Icon></Icon>
	<Executable>
		<Path>C:\ProgramData\Steinberg\Audio Export Post Process Scripts\openexplorer.cmd</Path>
		<Argument>"$PATH"</Argument>
	</Executable>
	<RunOnce>false</RunOnce>
	<WaitDone>false</WaitDone>
</AudioExportPostProcess>

…and the batch file consists of this one line:

C:\Windows\explorer.exe %~dp1
2 Likes