<?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: Do you need to kill the… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65615#M18220</link>
    <description>Hi Akhil,&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;I am working on the python code stages. can you please help me or do you know any Link where I can get more details related to python code stages?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sahil Chankotra&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 14 Jun 2021 15:48:00 GMT</pubDate>
    <dc:creator>Chankotra1998</dc:creator>
    <dc:date>2021-06-14T15:48:00Z</dc:date>
    <item>
      <title>Kill Process</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65609#M18214</link>
      <description>I have a process list, and inside it we have two process called notepad.exe for two different user, Paul and Robert.

How can I kill notepad.exe process only for Paul's user using .NET?</description>
      <pubDate>Tue, 04 Dec 2018 22:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65609#M18214</guid>
      <dc:creator>LeonardoMalaqui</dc:creator>
      <dc:date>2018-12-04T22:18:00Z</dc:date>
    </item>
    <item>
      <title>Like as: taskkill /F /IM…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65610#M18215</link>
      <description>Like as: taskkill /F /IM notepad.exe /FI ""USERNAME Paul""&amp;nbsp;&amp;nbsp;</description>
      <pubDate>Tue, 04 Dec 2018 22:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65610#M18215</guid>
      <dc:creator>LeonardoMalaqui</dc:creator>
      <dc:date>2018-12-04T22:19:00Z</dc:date>
    </item>
    <item>
      <title>Do you need to kill the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65611#M18216</link>
      <description>Do you need to kill the process? Is it not possible to attach to it and then use the Terminate action in a Navigate stage?</description>
      <pubDate>Tue, 04 Dec 2018 23:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65611#M18216</guid>
      <dc:creator>david.l.morris</dc:creator>
      <dc:date>2018-12-04T23:19:00Z</dc:date>
    </item>
    <item>
      <title>If you're determined to go…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65612#M18217</link>
      <description>&lt;P&gt;If you're determined to go the .NET route,&amp;nbsp;you can do the following as a C# code stage, where proc is the process name. IE: ""notepad.exe"". Just make sure you add System.Diagnostics as a namespace reference. Looks like you can add a user check to it by running a session query, as shown here:&amp;nbsp;https://social.msdn.microsoft.com/Forums/vstudio/en-US/aeff7e41-a4ba-4b… . Though the taskkill solution is definitely a lot simpler, haha. &amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;&lt;SPAN class="token keyword"&gt;foreach&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;Process p &lt;SPAN class="token keyword"&gt;in&lt;/SPAN&gt; Process&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;GetProcesses&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt;
	&lt;SPAN class="token keyword"&gt;if&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;p&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;ProcessName&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;ToLower&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Equals&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;proc&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;ToLower&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
		p&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Kill&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; 
&lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Dec 2018 00:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65612#M18217</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2018-12-05T00:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Do you need to kill the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65613#M18218</link>
      <description>Hi can you please tell me how can i kill cmd?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sahil Chankotra&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 09:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65613#M18218</guid>
      <dc:creator>Chankotra1998</dc:creator>
      <dc:date>2021-06-14T09:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: Do you need to kill the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65614#M18219</link>
      <description>Hi Sahil,&lt;BR /&gt;&lt;BR /&gt;Please use the Utility Environment-&amp;gt; Action name Kill Process, provide process name "cmd" and you will able to kill the command prompt.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Akhil Thukral&lt;BR /&gt;Application Development Module Lead - Blue Prism&lt;BR /&gt;Telus International&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 13:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65614#M18219</guid>
      <dc:creator>AkhilThukral</dc:creator>
      <dc:date>2021-06-14T13:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Do you need to kill the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65615#M18220</link>
      <description>Hi Akhil,&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;I am working on the python code stages. can you please help me or do you know any Link where I can get more details related to python code stages?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sahil Chankotra&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 15:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65615#M18220</guid>
      <dc:creator>Chankotra1998</dc:creator>
      <dc:date>2021-06-14T15:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: Do you need to kill the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65616#M18221</link>
      <description>HI Sahil,&lt;BR /&gt;&lt;BR /&gt;Please use this VBO for Python Scripting.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/blue-prism---script-execution-vbo-2" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/blue-prism---script-execution-vbo-2&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Akhil Thukral&lt;BR /&gt;Application Development Module Lead - Blue Prism&lt;BR /&gt;Telus International&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 16:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65616#M18221</guid>
      <dc:creator>AkhilThukral</dc:creator>
      <dc:date>2021-06-14T16:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: Do you need to kill the…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65617#M18222</link>
      <description>Hi Akhil,&lt;BR /&gt;&lt;BR /&gt;I am trying to open the above link but I'm unable to open that. I did login logout multiple times. Please suggest me.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="30945.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/31073iAD0BAF2863EE2A66/image-size/large?v=v2&amp;amp;px=999" role="button" title="30945.png" alt="30945.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sahil Chankotra&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 17:24:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Kill-Process/m-p/65617#M18222</guid>
      <dc:creator>Chankotra1998</dc:creator>
      <dc:date>2021-06-14T17:24:00Z</dc:date>
    </item>
  </channel>
</rss>

