The folders with the DLLs are along the lines of:
C:\FileManager\Implementation\bin\Debug\fileman.dll
C:\Viewer\Implementation\bin\Debug\viewer.dll
C:\Resource\Implementation\bin\Debug\resource.dll
And I would like them to be placed into a folder like:
C:\DllFiles
Here is a dead simple way, copy and paste this to your batch file and give it a try, then add any additional files you wish to copy to the batch file.
@echo off
copy C:\FileManager\Implementation\bin\Debug\fileman.dll C:\DllFiles\*.*
copy C:\Viewer\Implementation\bin\Debug\viewer.dll C:\DllFiles\*.*
copy C:\Resource\Implementation\bin\Debug\resource.dll C:\DllFiles\*.*
When you run this a second time you will probably be prompted to overwrite file. If you wish to avoid mess age add /Y to end of each copy line.
The echo off command just stops the command being displayed.
Have fun
Denis