@echo off REM ============================ REM Build .hak files from folders REM ============================ REM Path to nwhak.exe (adjust if needed) REM set NWHak="nwhak.exe" REM Loop through all subfolders in current directory for /d %%F in (*) do ( echo Building %%F.hak from folder %%F ... nwhak.exe "%%F.hak" "%%F" ) echo. echo Done! All .hak files have been created. pause