<?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>LosByers- Interesting Musings Helpful Hints from a Unix System Administrator &#187; PC</title>
	<atom:link href="http://losbyers.com/wordpress/tag/pc/feed/" rel="self" type="application/rss+xml" />
	<link>http://losbyers.com/wordpress</link>
	<description>All the info I need</description>
	<lastBuildDate>Thu, 08 Dec 2011 17:52:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Killing windows processes from the command line</title>
		<link>http://losbyers.com/wordpress/2009/12/killing-windows-processes-from-the-command-line/</link>
		<comments>http://losbyers.com/wordpress/2009/12/killing-windows-processes-from-the-command-line/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 20:33:33 +0000</pubDate>
		<dc:creator>LosByers</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://losbyers.com/wordpress/?p=96</guid>
		<description><![CDATA[<p>Use TASKLIST and TASKKILL :  Good web site on this http://commandwindows.com/taskkill.htm</p> <p>(F)orce Kill running processes for ImageName of java.exe taskkill.exe /F /IM java.exe</p> <p>NOTE: Wildcard &#8216;*&#8217; for the /IM switch is accepted only with filters, use /FI taskkill /F /FI &#8220;IMAGENAME eq note*&#8221;</p> <p>Find all running Java processes command line tasklist /FI “IMAGENAME eq java.exe”</p> [...]]]></description>
			<content:encoded><![CDATA[<p><span>Use TASKLIST and TASKKILL :  Good web site on this <a href="http://commandwindows.com/taskkill.htm" target="_blank">http://commandwindows.com/taskkill.htm</a></p>
<p>(F)orce Kill running processes for ImageName of java.exe<br />
taskkill.exe /F /IM java.exe</p>
<p>NOTE: Wildcard &#8216;*&#8217; for the /IM switch is accepted only with filters, use /FI<br />
taskkill /F /FI &#8220;IMAGENAME eq note*&#8221;</p>
<p>Find all running Java processes command line<br />
tasklist /FI “IMAGENAME eq java.exe”</p>
<p>Example:  I started 2 Calculator programs.</p>
<p>H:\&gt;tasklist /FI &#8220;IMAGENAME eq calc*&#8221;</p>
<pre>Image Name                   PID Session Name     Session#    Mem Usage
========================= ====== ================ ======== ============
calc.exe                    4652 Console                 0      3,420 K
calc.exe                    1936 Console                 0      3,412 K
</pre>
<p>H:\&gt;taskkill /F /FI &#8220;IMAGENAME eq calc*&#8221;<br />
SUCCESS: The process with PID 4652 has been terminated.<br />
SUCCESS: The process with PID 1936 has been terminated.</p>
<p>I needed these commands to script a nightly restart of a java application that had a bad memory leak.  For some reason the normal stop wasn&#8217;t working. <img title="Crying or Very sad" src="http://www.losbyers.com/modules/Forums/images/smiles/icon_cry.gif" border="0" alt="Crying or Very sad" /></span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Flosbyers.com%2Fwordpress%2F2009%2F12%2Fkilling-windows-processes-from-the-command-line%2F&amp;title=Killing%20windows%20processes%20from%20the%20command%20line" id="wpa2a_2"><img src="http://losbyers.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://losbyers.com/wordpress/2009/12/killing-windows-processes-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP 2003 timestamps</title>
		<link>http://losbyers.com/wordpress/2009/12/windows-xp-2003-timestamps/</link>
		<comments>http://losbyers.com/wordpress/2009/12/windows-xp-2003-timestamps/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 18:11:53 +0000</pubDate>
		<dc:creator>LosByers</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://losbyers.com/wordpress/?p=91</guid>
		<description><![CDATA[<p>I needed to do a little research on how timestamps work in Winders, XP and 2003 server.</p> <p>Creation date later than modified date (&#8220;date modified&#8221; less than &#8220;date created&#8221;) In Word XP the creation date of a document can be later than the modified date when saved elsewhere. Microsoft says &#8220;When the document is copied [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to do a little research on how timestamps work in Winders, XP and 2003 server.</p>
<p>Creation date later than modified date (&#8220;date modified&#8221; less than &#8220;date created&#8221;)<br />
In Word XP the creation date of a document can be later than the modified date when saved elsewhere. Microsoft says<br />
<span style="color: #008000;">&#8220;When the document is copied or is saved to a new location, a new file is created. This file is generated by a parent file that has the earlier &#8220;Modified&#8221; date. This parent file also has an earlier &#8220;Created&#8221; date. &#8220;</span></p>
<p>When you copy or re-save a document, the &#8220;Created&#8221; date is updated in the Statistics tab and in the General tab. However, the &#8220;Modified&#8221; date is not updated.&#8221;</p>
<p><span style="font-weight: bold;">* Turn off Last Modified timestamping</span><br />
Whenever XP reads a file, it stamps the file with the date and time of the access.</p>
<p>This feature has its place but is not required for normal use unless you rely on the date of last access for backup purposes, which is a rare requirement for most backups. Putting a timestamp on a file that has just been read means that a write access has to be made to disk, so every time a read is executed, a corresponding write is also executed.</p>
<p>At the command prompt, enter the following then reboot:</p>
<p><span style="font-style: italic;"><span style="font-weight: bold;">&gt; FSUTIL behavior set disablelastaccess 1</span></span></p>
<p>To turn timestamps back on, repeat the command but replace the 1 with 0.</p>
<p><span style="font-weight: bold;">*Update</span><br />
It appears the FSUTIL is XP Pro and server only.</p>
<p>To Improve Windows XP Home Edition?s NTFS performance<br />
There are two possibilities for the Home Edition: (but only, if you trust yourself to edit the registry)<br />
1. Start, Run and type Regedit:navigate to:<br />
HKEY CURRENT USER/Software/Microsoft/Windows/<br />
CurrentVersion/Policies/Explorer:<br />
Rightclick in the right column,choose New,<br />
then Dword-value and name it: NoInstrumentation,doubleclick on it and give it a value 1,close and restart.<br />
2. Start, Run and type Regedit: navigate to:<br />
HKEY LOCAL MACHINE/System/CurrentControlSet/<br />
Control/FileSystem:<br />
Rightclick in the right column, choose New,<br />
then Dword-value and name it:<br />
NtfsDisableLastAccessUpdate, doubleclick on it and give it a value 1, close and restart.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Flosbyers.com%2Fwordpress%2F2009%2F12%2Fwindows-xp-2003-timestamps%2F&amp;title=Windows%20XP%202003%20timestamps" id="wpa2a_4"><img src="http://losbyers.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://losbyers.com/wordpress/2009/12/windows-xp-2003-timestamps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off MS Word autocorrect</title>
		<link>http://losbyers.com/wordpress/2009/12/turn-off-ms-word-autocorrect/</link>
		<comments>http://losbyers.com/wordpress/2009/12/turn-off-ms-word-autocorrect/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 21:30:40 +0000</pubDate>
		<dc:creator>LosByers</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[PC]]></category>

		<guid isPermaLink="false">http://losbyers.com/wordpress/?p=15</guid>
		<description><![CDATA[<p>There is nothing more annoying that to have MS Word try and guess how you want your document formatted.</p> <p>Have you encountered one or more of the many annoying habits of MS word?</p> <p>1) Always capitalizing your first word in the sentence, even if you are try to write some sort of code. 2) Auto [...]]]></description>
			<content:encoded><![CDATA[<p><span>There is nothing more annoying that to have MS Word try and guess how you want your document formatted.</p>
<p>Have you encountered one or more of the many annoying habits of MS word?</p>
<p>1) Always capitalizing your first word in the sentence, even if you are try to write some sort of code.<br />
2) Auto starting a numbered or bulleted list that is indented that you can make go away just because you started a numbered list?<br />
3) A random line across the page that you can&#8217;t select or delete?</p>
<p>Well turn that shit off.</p>
<p>Go to Tools/AutoCorrect Options and Unselect everything. All of the crap in there is going to try and guess as you type what it is that you want on the page, even if you don&#8217;t want it. I have had whole documents reformat themselves just because I typed<br />
1)<br />
2)<br />
Or a tab key while in an indented part of text.</p>
<p>There seemed to be no undo to a mass tab/indent reformatting when it happens. I don&#8217;t want MS to friggen guess what it is I am doing and I want to format my text my way. In fact, everytime that I have wanted Word to follow a certain format, ie double spaced. The damn thing fucks it up somewhere and can&#8217;t even get that right.</p>
<p>I&#8217;ll do my own formatting thank you.</p>
<p>I did decide it would be big fun to set the Autocorrect feature. I set &#8220;Sincerely&#8221; to &#8220;Go bleep yourself&#8221; and want to set my bosses from &#8220;Senior Director&#8221; to &#8220;Grand Poh-Ba Extraordinare&#8221; Or &#8220;big fat Tard&#8221; which ever floats my boat at the time.</p>
<p>No one read this crap but me anyway.</span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Flosbyers.com%2Fwordpress%2F2009%2F12%2Fturn-off-ms-word-autocorrect%2F&amp;title=Turn%20off%20MS%20Word%20autocorrect" id="wpa2a_6"><img src="http://losbyers.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://losbyers.com/wordpress/2009/12/turn-off-ms-word-autocorrect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

