I guess by editing the Build.xml file one can try copying the file automatically to a desired location.
This is the Build.xml
<?xml version="1.0" encoding="UTF-8"?>
<project name="testBuildXml" default="default" basedir=".">
<description>Builds, tests, and runs the project testBuildXml.</description>
<import file="nbproject/build-impl.xml"/>
<property name="src" value="<path-to-your-batch-file>"/>
<target name="**-post-jar**">
<exec dir="${src}" executable="cmd.exe">
<arg line="/c copy.bat"/>
</exec>
</target>
</project>
"-post-jar" allows the batch to execute only after the jar building process is complete.
For further information you may check out this web page.
<target name="-post-compile"><obfuscate><fileset dir="${build.classes.dir}"/></obfuscate></target>– Animesh Pandey Oct 25 '12 at 21:09