<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>david winter &#187; batch file</title>
	<atom:link href="http://davidwinter.me.uk/articles/tag/batch-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidwinter.me.uk</link>
	<description>you were expecting someone else?</description>
	<lastBuildDate>Sun, 22 Aug 2010 20:51:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Killing a program using a batch file in Windows</title>
		<link>http://davidwinter.me.uk/articles/2008/05/15/killing-a-program-using-a-batch-file-in-windows/</link>
		<comments>http://davidwinter.me.uk/articles/2008/05/15/killing-a-program-using-a-batch-file-in-windows/#comments</comments>
		<pubDate>Thu, 15 May 2008 09:59:31 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://davidwinter.me.uk/?p=93</guid>
		<description><![CDATA[Having got my keyboard shortcut working to launch my batch file, next was to actually make it quit the emulator program when invoked. @echo off taskkill /F /im Fusion.exe This is basically the command prompt version of CTRL + ALT + DEL. /im stands for &#8216;Image Name&#8217;, which is basically the program executable, and is [...]]]></description>
			<content:encoded><![CDATA[<p>Having got my <a href="http://davidwinter.me.uk/articles/2008/05/15/using-shortcut-keys-in-windows/">keyboard shortcut working</a> to launch my batch file, next was to actually make it quit the emulator program when invoked.</p>

<pre><code>@echo off
taskkill /F /im Fusion.exe
</code></pre>

<p>This is basically the command prompt version of <kbd>CTRL + ALT + DEL</kbd>. <code>/im</code> stands for &#8216;Image Name&#8217;, which is basically the program executable, and is the same as what you&#8217;d see in the &#8216;Task Manager&#8217; window. <code>/F</code> just forces the program to close.</p>
]]></content:encoded>
			<wfw:commentRss>http://davidwinter.me.uk/articles/2008/05/15/killing-a-program-using-a-batch-file-in-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
