Docx File convert in Bat File using in studio

Hello,

I want to use .bat file in studio any option to import this code in to uipath other than start process

   @Echo Off
   taskkill /F /IM WinWord.exe
   Set "WCONV=C:\Program Files\Microsoft Office\Office15\Wordconv.exe"
    For /F Delims^=^ EOL^= %%A In ('Where /R . *.doc 2^>Nul') Do (
     Echo "%%A"
       Start /B "" Cmd /C ""%WCONV%" -oice -nme "%%A" "%%Ax" && Del "%%A""
        )

here i need to use dynamic file path and dynamic output location

anyone can help

Thanks in advance

You dont want to copy this batch file to the robot machine?

invoke code support only vb.net