<?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>wehuberconsultingllc.com &#187; tips</title>
	<atom:link href="http://wehuberconsultingllc.com/wordpress/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://wehuberconsultingllc.com/wordpress</link>
	<description></description>
	<lastBuildDate>Fri, 04 May 2012 18:35:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Parsing log files with Powershell</title>
		<link>http://wehuberconsultingllc.com/wordpress/2010/07/11/parsing-log-files-with-powershell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=parsing-log-files-with-powershell</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2010/07/11/parsing-log-files-with-powershell/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 13:00:47 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[powershell]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2010/07/11/parsing-log-files-with-powershell/</guid>
		<description><![CDATA[I found myself wanting to parsing a log file to find out which domain was getting the most newsletters. There are a variety of ways you can do this. Typically I would use Excel but there were more than 65K &#8230; <a href="http://wehuberconsultingllc.com/wordpress/2010/07/11/parsing-log-files-with-powershell/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I found myself wanting to parsing a log file to find out which domain was getting the most newsletters. There are a variety of ways you can do this. Typically I would use Excel but there were more than 65K lines to import so I had to use something different. For kicks I did it in Powershell and here is how I did it in three lines. The log file is a tab delimited file without a header line. The field we are going to count is called, “RecipientDomain”. </p>
<p>
<pre class="brush: vb; title: ; notranslate"> $header = &quot;ServerFQDN&quot;,&quot;ServerDomain&quot;,&quot;IPAddress&quot;,&quot;MailTime&quot;,&quot;ClientDomain&quot;,&quot;RecipientDomain&quot;,&quot;Sender&quot;,&quot;Recipient&quot;,&quot;MessageID&quot;,&quot;Status&quot;,&quot;User&quot;,&quot;Size&quot;,&quot;ClientFQDN&quot;
$a = import-csv smtp-201007060000.csv -delimiter `t -header $header | where-object {($_.Status -eq &quot;RECV=OK&quot;) }
$a | group-object -property RecipientDomain -noelement | sort -property @{Expression=&quot;Count&quot;;Descending=$true}, @{Expression=&quot;Name&quot;;Descending=$false} | Select-object -First 20 </pre></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2010/07/11/parsing-log-files-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Laws of Productivity :: Tips :: The 99 Percent</title>
		<link>http://wehuberconsultingllc.com/wordpress/2010/06/27/10-laws-of-productivity-tips-the-99-percent/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=10-laws-of-productivity-tips-the-99-percent</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2010/06/27/10-laws-of-productivity-tips-the-99-percent/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 00:43:15 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2010/06/27/10-laws-of-productivity-tips-the-99-percent/</guid>
		<description><![CDATA[Here are some great tips on improving your productivity. I included the highlights below. Read the full article to get the full explanation and some explanations. 10 Laws of Productivity :: Tips :: The 99 Percent 1. Break the seal &#8230; <a href="http://wehuberconsultingllc.com/wordpress/2010/06/27/10-laws-of-productivity-tips-the-99-percent/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Here are some great tips on improving your productivity. I included the highlights below. Read the full article to get the full explanation and some explanations. </p>
<p><a href="http://the99percent.com/tips/6585/10-laws-of-productivity">10 Laws of Productivity :: Tips :: The 99 Percent</a></p>
<p><strong>1. Break the seal of hesitation.</strong>    <br /><strong>2. Start small.</strong>    <br /><strong>3. Protoype, prototype, prototype.</strong>    <br /><strong>4. Create simple objectives for projects, and revisit them regularly.</strong>    <br /><strong>5. Work on your project a little bit each day.</strong>    <br /><strong>6. Develop a routine.</strong>    <br /><strong>7. Break big, long-term projects into smaller chunks or “phases.”</strong>    <br /><strong>8. Prune away superfluous meetings (and their attendees).</strong>    <br /><strong>9. Practice saying “No.”</strong>    <br /><strong>10. Remember that rules – even productivity rules – are made to be broken.</strong></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2010/06/27/10-laws-of-productivity-tips-the-99-percent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove the Windows.old folder that is generated when you install Windows 7</title>
		<link>http://wehuberconsultingllc.com/wordpress/2010/02/06/how-to-remove-the-windows-old-folder-that-is-generated-when-you-install-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-remove-the-windows-old-folder-that-is-generated-when-you-install-windows-7</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2010/02/06/how-to-remove-the-windows-old-folder-that-is-generated-when-you-install-windows-7/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 12:59:16 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2010/02/06/how-to-remove-the-windows-old-folder-that-is-generated-when-you-install-windows-7/</guid>
		<description><![CDATA[I am not sure how I got this 2.2 GB folder on my “C”&#160; partition but it was not necessary. With free space on my “C” partition down to 5% it was time to clean house. The Vista instructions will &#8230; <a href="http://wehuberconsultingllc.com/wordpress/2010/02/06/how-to-remove-the-windows-old-folder-that-is-generated-when-you-install-windows-7/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I am not sure how I got this 2.2 GB folder on my “C”&#160; partition but it was not necessary. With free space on my “C” partition down to 5% it was time to clean house. The Vista instructions will work as written if you run the Disk Cleanup utility as the Administrator. If you happen to run the utility as a “mere mortal” there is a button in the Windows 7 version to restart the utility as an Administrator if you want to “Clean up system files”.</p>
<p><a href="http://support.microsoft.com/kb/933212">How to remove the Windows.old folder that is generated when you perform a custom installation of Windows Vista</a></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2010/02/06/how-to-remove-the-windows-old-folder-that-is-generated-when-you-install-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.375 seconds -->

