Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @echo off
  2. cd /D "%~dp0"
  3. mkdir ~exe
  4. for /D %%d in (*) do (
  5. mkdir "~exe\%%~nxd"
  6. for %%e in (bat cmd com exe ex2 ex_ msi scr sys dll cpl js jse vbs vbe wsf wsc wsh hta chm jar pif) do (
  7. xcopy "%%~d\*.%%e" "~exe\%%~nxd" /s /i /q
  8. )
  9. )