@Echo Off
CD /D %~dp0
For /R "%~1" %%i IN (.) do (
  echo Decrypting: "%%~nxi"
  start /WAIT .\cdecrypt.exe "%%i" "%%~nxi"
)
pause