Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/data/templates/src/pe/build_all.bat
21840 views
@echo off

echo Compiling DLLs

for /D %%d in (dll*) do (
  pushd "%%d"
  call build.bat
  popd
)

echo Compiling EXEs

for /D %%e in (exe*) do (
  pushd "%%e"
  call build.bat
  popd
)