<?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>andymadge.com &#187; Windows</title>
	<atom:link href="http://www.andymadge.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andymadge.com</link>
	<description>Nothing to see here, move along…</description>
	<lastBuildDate>Sun, 23 Aug 2009 20:37:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Run SysInternals tools direct from the web</title>
		<link>http://www.andymadge.com/2009/01/run-sysinternals-tools-direct-from-the-web/</link>
		<comments>http://www.andymadge.com/2009/01/run-sysinternals-tools-direct-from-the-web/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:23:31 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/computers/2009/01/22/run-sysinternals-tools-direct-from-the-web/</guid>
		<description><![CDATA[SysInternals tools are a fantastic set of free utilities written by Mark Russinovich and Bryce Cogswell.  There are invaluable for system admins and Windows Power Users.
There is now a website that allows you to run most of the SysInternals tools directly, so you don&#8217;t have to find the right page, download it and unzip.  You [...]]]></description>
			<content:encoded><![CDATA[<p>SysInternals tools are a fantastic set of free utilities written by <a id="ctl00_mainContentContainer_ctl03" onclick="javascript:Track('ctl00_mainContentContainer_ctl00|ctl00_mainContentContainer_ctl03',this);" href="http://blogs.technet.com/markrussinovich/about.aspx">Mark Russinovich</a> and Bryce Cogswell.  There are invaluable for system admins and Windows Power Users.<br />
There is now a website that allows you to run most of the SysInternals tools directly, so you don&#8217;t have to find the right page, download it and unzip.  You just run it directly from:</p>
<p>http://live.sysinternals.com/&lt;tool&gt;.exe</p>
<p>e.g.</p>
<p><a href="http://live.sysinternals.com/procexp.exe" target="_blank">http://live.sysinternals.com/procexp.exe</a></p>
<p>This works better in Internet Explorer than Firefox, since you can run the tool without saving it first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2009/01/run-sysinternals-tools-direct-from-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOS Equivalent of GREP</title>
		<link>http://www.andymadge.com/2008/09/dos-equivalent-to-grep/</link>
		<comments>http://www.andymadge.com/2008/09/dos-equivalent-to-grep/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 14:40:18 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/uncategorized/2008/09/22/dos-equivalent-to-grep/</guid>
		<description><![CDATA[In Unix you can pipe the output of a command into the GREP command in order to only display the lines that contain a required string.  This is means you don&#8217;t have to scroll through pages of output to find the bit you&#8217;re interested in.  The DOS equivalent of GREP is FIND:
Searches for a text [...]]]></description>
			<content:encoded><![CDATA[<p>In Unix you can pipe the output of a command into the GREP command in order to only display the lines that contain a required string.  This is means you don&#8217;t have to scroll through pages of output to find the bit you&#8217;re interested in.  The DOS equivalent of GREP is FIND:</p>
<pre>Searches for a text string in a file or files.

FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[ ...]]

/V         Displays all lines NOT containing the specified string.
/C         Displays only the count of lines containing the string.
/N         Displays line numbers with the displayed lines.
/I         Ignores the case of characters when searching for the string.
/OFF[LINE] Do not skip files with offline attribute set.
"string"   Specifies the text string to find.
[drive:][path]filename
Specifies a file or files to search.

<em>If a path is not specified, FIND searches the text typed at the prompt
or piped from another command.</em></pre>
<p>this can be useful with the netstat command:</p>
<pre>netstat -ano | find /i ":80"</pre>
<p>or when viewing the DNS cache:</p>
<pre>ipconfig /displaydns | find /i "google"</pre>
<p>Although that isn&#8217;t ideal since the output of ipconfig isn&#8217;t really formatted to play nicely with the find command.</p>
<p>Reference: <a href="http://nzpcmad.blogspot.com/2007/07/dos-grep-equivalent-find-command.html">http://nzpcmad.blogspot.com/2007/07/dos-grep-equivalent-find-command.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2008/09/dos-equivalent-to-grep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP DNS Cache</title>
		<link>http://www.andymadge.com/2008/08/windows-xp-dns-cache/</link>
		<comments>http://www.andymadge.com/2008/08/windows-xp-dns-cache/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 10:34:10 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/computers/2008/08/27/windows-xp-dns-cache/</guid>
		<description><![CDATA[Windows caches DNS responses to speed up network access, but sometimes this can cause a problem.  Positive responses (i.e. successful lookups) are cached for 24 hours, and negative responses (i.e. failed lookups) for 5 minutes.
If you make changes to DNS and want to test the results straight away, you need to clear the cache with:
ipconfig [...]]]></description>
			<content:encoded><![CDATA[<p>Windows caches DNS responses to speed up network access, but sometimes this can cause a problem.  Positive responses (i.e. successful lookups) are cached for 24 hours, and negative responses (i.e. failed lookups) for 5 minutes.</p>
<p>If you make changes to DNS and want to test the results straight away, you need to clear the cache with:</p>
<pre>ipconfig /flushdns</pre>
<p>You can view the current cache with:</p>
<pre>ipconfig /displaydns</pre>
<p>or</p>
<pre>ipconfig /displaydns | more</pre>
<p>to see a screen at a time</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2008/08/windows-xp-dns-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline Files tips</title>
		<link>http://www.andymadge.com/2007/06/offline-files-tips/</link>
		<comments>http://www.andymadge.com/2007/06/offline-files-tips/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 11:09:33 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/uncategorized/2007/06/28/offline-files-tips/</guid>
		<description><![CDATA[&#8220;Incorrect Function&#8221; Error
When synchronizing offline files, some files give an error:
&#8220;Unable to make &#8216;Filename.ext&#8217; available offline on \\Server\Share\Folder. Incorrect function.&#8221;
Solution found here

Open My Computer
Goto Tools&#8211;>Options
Click on the Offline Files tab.
Hold down CTRL+SHIFT and click DELETE FILES. This will completely clear the client cache and re-sync after a reboot.

&#8220;Files of this type cannot be made available [...]]]></description>
			<content:encoded><![CDATA[<h3>&#8220;Incorrect Function&#8221; Error</h3>
<p>When synchronizing offline files, some files give an error:</p>
<blockquote><p>&#8220;Unable to make &#8216;Filename.ext&#8217; available offline on \\Server\Share\Folder. Incorrect function.&#8221;</p></blockquote>
<p>Solution found <a href="http://blogs.msdn.com/jonathanh/archive/2004/12/09/279292.aspx#439263">here</a></p>
<ol>
<li>Open My Computer</li>
<li>Goto Tools&#8211;>Options</li>
<li>Click on the Offline Files tab.</li>
<li>Hold down CTRL+SHIFT and click DELETE FILES. This will completely clear the client cache and re-sync after a reboot.</li>
</ol>
<h3>&#8220;Files of this type cannot be made available offline&#8221; Error</h3>
<p>Error message:</p>
<blockquote><p>&#8220;Warnings occurred while Windows was synchronizing your data. Results: Offline files. Unable to make file name available offline. Files of this type cannot be made available offline.&#8221;</p></blockquote>
<p>To suppress error message for specific file types:</p>
<blockquote>
<div class="indent">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\NetCache\ExclusionErrorSuppressionList]<br />
&#8220;*.pst&#8221;=dword:00000000<br />
&#8220;*.mdb&#8221;=dword:00000000<br />
&#8220;*.db?&#8221;=dword:00000000<br />
&#8220;*.ldb&#8221;=dword:00000000<br />
&#8220;*.mde&#8221;=dword:00000000<br />
&#8220;*.mdw&#8221;=dword:00000000<br />
&#8220;*.slm&#8221;=dword:00000000</div>
</blockquote>
<p>To change the error message display for all types: (from <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;320139">here</a>)<br />
To change this default behavior, use Registry Editor (Regedt32.exe) to locate the following key in the registry:</p>
<blockquote>
<div class="indent">[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Syncmgr]</div>
<p>Add the following registry value:</p>
<div class="indent">Value Name: KeepProgressLevel<br />
Data Type: REG_DWORD<br />
Value: 1 (hexadecimal)</div>
<p>You can add the following values and then quit Registry Editor:</p>
<div class="indent">1 &#8211; Pause on errors.<br />
2 &#8211; Pause on warnings.<br />
3 &#8211; Pause on errors and warnings.<br />
4 &#8211; Pause and display INFO.</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/06/offline-files-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View CHKDSK log</title>
		<link>http://www.andymadge.com/2007/04/view-chkdsk-log/</link>
		<comments>http://www.andymadge.com/2007/04/view-chkdsk-log/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 08:19:38 +0000</pubDate>
		<dc:creator>AndyM</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.andymadge.com/uncategorized/2007/04/26/view-chkdsk-log/</guid>
		<description><![CDATA[The log for CHKDSK can be found in the Windows Event Log.  It&#8217;s in the Applications log and the source will be listed as Winlogon.
]]></description>
			<content:encoded><![CDATA[<p>The log for CHKDSK can be found in the Windows Event Log.  It&#8217;s in the Applications log and the source will be listed as Winlogon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andymadge.com/2007/04/view-chkdsk-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
