<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Pass Dynamic Argument to Batch File in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58955#M1744</link>
    <description>Cool, I believe this is the best option&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Emerson Ferreira&lt;BR /&gt;Sr Business Analyst&lt;BR /&gt;Avanade Brasil&lt;BR /&gt;Recife&lt;BR /&gt;+5581988869544&lt;BR /&gt;If my answer helped you? Mark as useful!&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 03 Aug 2021 12:32:00 GMT</pubDate>
    <dc:creator>EmersonF</dc:creator>
    <dc:date>2021-08-03T12:32:00Z</dc:date>
    <item>
      <title>Pass Dynamic Argument to Batch File</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58951#M1740</link>
      <description>Hi Community,&lt;BR /&gt;&lt;BR /&gt;I am Running Batch file from Blueprism using Utility: Environment --&amp;gt; Start Process Action&lt;BR /&gt;Application : "cmd.exe"&lt;BR /&gt;Argument: "/C C:\Users\....\test.bat"&lt;BR /&gt;&lt;BR /&gt;Batch file Content: &lt;BR /&gt;ECHO&lt;BR /&gt;&lt;BR /&gt;cd /d T:\&lt;STRONG&gt;FolderABC&lt;/STRONG&gt;&lt;BR /&gt;dir /s /b /o:gn &amp;gt;list.csv &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It is running Perfectly Fine&lt;BR /&gt;&lt;BR /&gt;What I need to do is I want to pass folder name Dynamically from BP Process&lt;BR /&gt;I can make the content of file like below&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;ECHO&lt;BR /&gt;cd /d T:\&lt;STRONG&gt;{0}&lt;/STRONG&gt;&lt;BR /&gt;dir /s /b /o:gn &amp;gt;list.csv&lt;BR /&gt;&lt;BR /&gt;Hence I wanted to know if there is any way to replace {0} with FolderName in batch file from Blueprism&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kirtish Trivedi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Aug 2021 07:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58951#M1740</guid>
      <dc:creator>kirtish.trivedi</dc:creator>
      <dc:date>2021-08-03T07:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Pass Dynamic Argument to Batch File</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58952#M1741</link>
      <description>Hi Kirtish,&lt;BR /&gt;&lt;BR /&gt;You create your own BAT file using "Write text file"where you can pass the variable.&lt;BR /&gt;Post that you can run it.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Murali&lt;BR /&gt;RPA Consultant&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Aug 2021 07:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58952#M1741</guid>
      <dc:creator>krishna.kodimurali9</dc:creator>
      <dc:date>2021-08-03T07:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: Pass Dynamic Argument to Batch File</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58953#M1742</link>
      <description>Thanks Murali Kodi. This Idea Works&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kirtish Trivedi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Aug 2021 09:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58953#M1742</guid>
      <dc:creator>kirtish.trivedi</dc:creator>
      <dc:date>2021-08-03T09:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Pass Dynamic Argument to Batch File</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58954#M1743</link>
      <description>create batch script as "cd /d T:%1" you can run the batch script using utility environment start process and pass the folder name in argument&lt;BR /&gt;&lt;BR /&gt;an example batch script and BP action is shown below&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7655.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7830iB5A24B0B800122CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="7655.png" alt="7655.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7656.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7832iAE59FE1402F0F338/image-size/large?v=v2&amp;amp;px=999" role="button" title="7656.png" alt="7656.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jerin Jose&lt;BR /&gt;RPA Product SME&lt;BR /&gt;EY&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;*"If you find  this post helpful mark it as best answer, .*&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Aug 2021 11:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58954#M1743</guid>
      <dc:creator>JerinJose</dc:creator>
      <dc:date>2021-08-03T11:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Pass Dynamic Argument to Batch File</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58955#M1744</link>
      <description>Cool, I believe this is the best option&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Emerson Ferreira&lt;BR /&gt;Sr Business Analyst&lt;BR /&gt;Avanade Brasil&lt;BR /&gt;Recife&lt;BR /&gt;+5581988869544&lt;BR /&gt;If my answer helped you? Mark as useful!&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Aug 2021 12:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Pass-Dynamic-Argument-to-Batch-File/m-p/58955#M1744</guid>
      <dc:creator>EmersonF</dc:creator>
      <dc:date>2021-08-03T12:32:00Z</dc:date>
    </item>
  </channel>
</rss>

