Harbinger wanted an application to check which plugins are used by his modules. It was reported on the
issue tracker, but that place is not supposed to be a Swiss army knive for all wishes that have remotely something to do with OpenMPT, so the issue was closed.
However, I have written a little application that can scan modules for plugin names. To run it, simply copy both "readplugs.exe" and "run.cmd" into a folder that contains some modules, and run "run.cmd". The program also requires the
VS2010 runtime. Sourcecode is included as well. Obviously this is a console application - don't ask me to do a GUI version or whatever - I don't have the time for that.
Edit: Change the content of run.cmd to the following to automatically generate a file called plugins.txt which contains all plugin names (instead of printing them on the console):
@echo off
cls
del plugins.txt
for /R %%F in (*.*) do (echo %%F & readplugs.exe "%%F" >> plugins.txt )
pause