バッチ書いて選択したファイルを全部投げつけて1つずつ処理するのが良いだろう。

@echo off
if "%~1"=="" goto Ending
:LoopStart
echo %1
"C:\Program Files\WinRAR\WinRAR.exe" x -ibck -inul %1 "%~dp1"
shift
if not "%~1"=="" goto LoopStart
:Ending