<?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>Randomly Intermittent Thoughts &#187; Windows</title>
	<atom:link href="http://www.nathanblomquist.net/blog/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nathanblomquist.net/blog</link>
	<description>Thoughts I have pondered, but may not be wholely original...</description>
	<lastBuildDate>Mon, 15 Mar 2010 18:32:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Yet Another Reason to Love Process Explorer — Part 2</title>
		<link>http://www.nathanblomquist.net/blog/2007/10/12/yet-another-reason-to-love-process-explorer-%e2%80%94-part-2/</link>
		<comments>http://www.nathanblomquist.net/blog/2007/10/12/yet-another-reason-to-love-process-explorer-%e2%80%94-part-2/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 20:27:46 +0000</pubDate>
		<dc:creator>nblom</dc:creator>
				<category><![CDATA[Process Explorer]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nathanblomquist.net/blog/2007/10/12/yet-another-reason-to-love-process-explorer-%e2%80%94-part-2/</guid>
		<description><![CDATA[This is a bit different from my last post about Process Explorer. Process Explorer is so powerful that I accidentally killed a different process than I wanted. This wasn&#8217;t through some fancy schmancy search with regular expressions and kill accident. I just highlighted a process and clicked the . I then proceeded to click &#8216;Yes&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a bit different from my last post about Process Explorer.  Process Explorer is so powerful that I accidentally killed a different process than I wanted. This wasn&#8217;t through some fancy schmancy search with regular expressions and kill accident.  I just highlighted a process and clicked the <img src='http://www.nathanblomquist.net/blog/wp-content/uploads/2007/10/pe_red_x.PNG' alt='Process Explorer Red X' alt="Process Explorer Red X" />.</p>
<p>I then proceeded to click &#8216;Yes&#8217; on the simple dialog: <img src='http://www.nathanblomquist.net/blog/wp-content/uploads/2007/10/pe_are_you_sure_want_to_kill_xxxx.PNG' alt='pe_are_you_sure_want_to_kill_xxxx.PNG' />.</p>
<p>Notice the blackened out word at the end of the Dialog&#8217;s text?  Well that is essentially what my brain did when I read that dialog.</p>
<p>So, long story short I killed the wrong process.  Nothing seemed to break for a few hours.  Then when I went to debug a couple of things, I wasn&#8217;t able to connect to a service that was supposed to be running.  I restarted somethings on my end, then remembered, &#8220;Oh yeah, I killed a random process earlier.&#8221;  I restarted the killed service and lo and behold everything started working again.</p>
<p><strong>Lesson learned here kids:</strong> <em>Don&#8217;t kill random processes and then wonder why stuff breaks!</em></p>
<p><a href="http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/ProcessExplorer.mspx">Process Explorer</a> is part of the <a href="http://www.microsoft.com/technet/sysinternals/default.mspx">Microsoft Sysinternals</a> set of utilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathanblomquist.net/blog/2007/10/12/yet-another-reason-to-love-process-explorer-%e2%80%94-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet Another Reason to Love Process Explorer &#8212; Part 1</title>
		<link>http://www.nathanblomquist.net/blog/2007/10/08/yet-another-reason-to-love-process-explorer-part-1/</link>
		<comments>http://www.nathanblomquist.net/blog/2007/10/08/yet-another-reason-to-love-process-explorer-part-1/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 15:26:41 +0000</pubDate>
		<dc:creator>nblom</dc:creator>
				<category><![CDATA[Process Explorer]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nathanblomquist.net/blog/2007/10/08/yet-another-reason-to-love-process-explorer-part-1/</guid>
		<description><![CDATA[Well, I just found another reason to love Process Explorer here: How To Identify What Programs Started svchost.exe in Windows. This article describes how to use the command line and/or Process Explorer to find out what the hell svchost.exe is doing. Open a command prompt and enter: tasklist /svc /FI &#8220;IMAGENAME eq svchost.exe&#8221; The above [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I just found another reason to love Process Explorer here: <a href="http://www.watchingthenet.com/how-to-identify-what-programs-started-svchostexe-in-windows.html">How To Identify What Programs Started svchost.exe in Windows</a>.</p>
<p>This article describes how to use the command line and/or Process Explorer to find out what the hell svchost.exe is doing.</p>
<blockquote><p>Open a command prompt and enter:</p>
<p>tasklist /svc /FI &#8220;IMAGENAME eq svchost.exe&#8221;</p>
<p>The above command will list all the svchost.exe processes and display the programs (DLL&#8217;s) that have been started by svchost.exe.</p></blockquote>
<p><a href="http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/ProcessExplorer.mspx">Process Explorer</a> is part of the <a href="http://www.microsoft.com/technet/sysinternals/default.mspx">Microsoft Sysinternals</a> set of utilities.</p>
<p>Hopefully, this will become a series of posts.  We&#8217;ll see!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathanblomquist.net/blog/2007/10/08/yet-another-reason-to-love-process-explorer-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
