<?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>Lisa Dean.Net</title>
	<atom:link href="http://www.lisadean.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lisadean.net</link>
	<description></description>
	<lastBuildDate>Tue, 22 Sep 2015 20:11:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.3.1</generator>
	<item>
		<title>Powershell and Unicode</title>
		<link>http://www.lisadean.net/powershell-and-unicode/</link>
		<comments>http://www.lisadean.net/powershell-and-unicode/#comments</comments>
		<pubDate>Tue, 23 Oct 2012 20:30:28 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lisadean.net/?p=215</guid>
		<description><![CDATA[I&#8217;m writing a Powershell script that creates an FTP script and then runs the FTP command using that script. The file created fine and the FTP command ran but the FTP script did not work: $exportDirectory = &#8220;\\server\share&#8221; $file= &#8220;$exportDirectory\test.txt&#8221; function FTP-File($FTPusername, $FTPpassword, $FTPfile){       &#8220;open 192.168.1.1&#8221; &#62; $exportDirectory\ftp.scr       $FTPusername &#62;&#62; $exportDirectory\ftp.scr       $FTPpassword &#62;&#62; $exportDirectory\ftp.scr       &#8220;put $FTPfile&#8221; &#62;&#62; $exportDirectory\ftp.scr       &#8220;quit&#8221; &#62;&#62; $exportDirectory\ftp.scr       ftp.exe -s:$exportDirectory\ftp.scr } FTP-File &#8220;username&#8221; &#8220;password&#8221; $file After struggling with it for a [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><div>I&#8217;m writing a Powershell script that creates an FTP script and then runs the FTP command using that script. The file created fine and the FTP command ran but the FTP script did not work:</div>
<div></div>
<div align="left"><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span> <span style="color: #ff0000; font-family: 'Courier New'; font-size: small;">=</span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;\\server\share&#8221;</span></div>
<div align="left"><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$file</span><span style="color: #ff0000; font-family: 'Courier New'; font-size: small;">=</span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;$exportDirectory\test.txt&#8221;</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;"><br />
</span></div>
<div align="left"><span style="color: #0000ff; font-family: 'Courier New'; font-size: small;">function</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;">FTP-File</span><span style="font-family: 'Courier New'; font-size: small;">(</span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPusername</span><span style="font-family: 'Courier New'; font-size: small;">,</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPpassword</span><span style="font-family: 'Courier New'; font-size: small;">,</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPfile</span><span style="font-family: 'Courier New'; font-size: small;">){</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;open 192.168.1.1&#8221;</span> <span style="font-family: 'Courier New'; font-size: small;">&gt;</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPusername</span> <span style="font-family: 'Courier New'; font-size: small;">&gt;&gt;</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPpassword</span> <span style="font-family: 'Courier New'; font-size: small;">&gt;&gt;</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;put $FTPfile&#8221;</span> <span style="font-family: 'Courier New'; font-size: small;">&gt;&gt;</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;quit&#8221;</span> <span style="font-family: 'Courier New'; font-size: small;">&gt;&gt;</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      ftp.exe -s:</span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">}</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;"><br />
</span></div>
<div align="left"><span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;">FTP-File</span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;username&#8221;</span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;password&#8221;</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$file</span></div>
<div align="left"><span style="color: #5f9ea0; font-family: 'Courier New';"><br />
</span></div>
<div><a href="http://www.lisadean.net/wp-content/uploads/2012/10/blog1.png"><img class="size-medium wp-image-216 alignnone" title="FTP error" src="http://www.lisadean.net/wp-content/uploads/2012/10/blog1-300x154.png" alt="FTP error" width="300" height="154" /></a></div>
<div></div>
<div>After struggling with it for a few minutes I realized it might be a file encoding problem. That weird character on the first line seemed to point to that. I looked and the ftp.scr file was encoded as &#8220;UCS-2 Little Endian&#8221; &#8212; well that&#8217;s an odd format. Outside of the script I change the encoding of that file to ANSI and ran the FTP command and it worked perfectly.</div>
<div></div>
<div>So Powershell file redirection creates Unicode files and the command line does not understand Unicode. The fix? Use Out-File instead.</div>
<div></div>
<div align="left"><span style="color: #0000ff; font-family: 'Courier New'; font-size: small;">function</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;">FTP-File</span><span style="font-family: 'Courier New'; font-size: small;">(</span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPusername</span><span style="font-family: 'Courier New'; font-size: small;">,</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPpassword</span><span style="font-family: 'Courier New'; font-size: small;">,</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPfile</span><span style="font-family: 'Courier New'; font-size: small;">){</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;open 192.168.1.1&#8221;</span> <span style="font-family: 'Courier New'; font-size: small;">|</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><strong>Out-File</strong></span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\</span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">ftp.scr</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Encoding</em></span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">ASCII</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPusername</span> <span style="font-family: 'Courier New'; font-size: small;">|</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><strong>Out-File</strong></span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\</span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">ftp.scr</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Encoding</em></span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">ASCII</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Append</em></span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPpassword</span> <span style="font-family: 'Courier New'; font-size: small;">|</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><strong>Out-File</strong></span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\</span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">ftp.scr</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Encoding</em></span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">ASCII</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Append</em></span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;put &#8220;</span> <span style="color: #ff0000; font-family: 'Courier New'; font-size: small;">+</span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$FTPfile</span> <span style="font-family: 'Courier New'; font-size: small;">|</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><strong>Out-File</strong></span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\</span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">ftp.scr</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Encoding</em></span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">ASCII</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Append</em></span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">&#8220;quit&#8221;</span> <span style="font-family: 'Courier New'; font-size: small;">|</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><strong>Out-File</strong></span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\</span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">ftp.scr</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Encoding</em></span> <span style="color: #800000; font-family: 'Courier New'; font-size: small;">ASCII</span> <span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><em>-Append</em></span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      ftp.exe -s:</span><span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">      </span><span style="color: #5f9ea0; font-family: 'Courier New'; font-size: small;"><strong>Remove-Item</strong></span> <span style="color: #800080; font-family: 'Courier New'; font-size: small;">$exportDirectory</span><span style="font-family: 'Courier New'; font-size: small;">\</span><span style="color: #800000; font-family: 'Courier New'; font-size: small;">ftp.scr</span></div>
<div align="left"><span style="font-family: 'Courier New'; font-size: small;">}</span></div>
<div></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/powershell-and-unicode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch Youtube Videos At A Faster Speed</title>
		<link>http://www.lisadean.net/watch-youtube-videos-at-a-faster-speed/</link>
		<comments>http://www.lisadean.net/watch-youtube-videos-at-a-faster-speed/#comments</comments>
		<pubDate>Sat, 23 Jun 2012 01:04:06 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=188</guid>
		<description><![CDATA[I&#8217;m currently going through the Udacity CS101 course. Much of the material I&#8217;ve already seen before in other languages but I don&#8217;t want to miss the Python specific information. Usually, in this situation, it feels like the video takes FOREVER to get through. I&#8217;ve used VLC to watch downloaded videos at a faster speed (1.5x [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><div>
<p>I&#8217;m currently going through the Udacity <a href="http://www.udacity.com/overview/Course/cs101/CourseRev/apr2012" target="_blank">CS101 course</a>. Much of the material I&#8217;ve already seen before in other languages but I don&#8217;t want to miss the Python specific information. Usually, in this situation, it feels like the video takes FOREVER to get through.</p>
<p>I&#8217;ve used VLC to watch downloaded videos at a faster speed (1.5x or 2.0x) but haven&#8217;t found anything that will do the same for streaming Youtube videos. Finally today I found it.</p>
<p>First, you have to opt-in to the HTML5 beta for Youtube. HTML5 gives you an alternative to Flash videos. It doesn&#8217;t work for all Youtube videos yet, but I haven&#8217;t run into any that it doesn&#8217;t work on. You can opt-in here: <a href="http://www.youtube.com/html5" target="_blank">http://www.youtube.com/html5</a></p>
<p>After you&#8217;ve done that, the next video you load will have some extra options if the video supports it. Click on the gear and you should see some speed options to use. MUCH better!</p>
</div>
<div><a href="http://www.lisaduncan.net/wp-content/uploads/2012/06/blog2.png"><img class="aligncenter size-full wp-image-189" title="HTML5 Youtube Settings" src="http://www.lisaduncan.net/wp-content/uploads/2012/06/blog2.png" alt="HTML5 Youtube Settings" width="248" height="177" /></a></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/watch-youtube-videos-at-a-faster-speed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Help! I Can&#8217;t Find This User To Add Them to an Active Directory Group!</title>
		<link>http://www.lisadean.net/help-i-cant-find-this-user-to-add-them-to-an-active-directory-group/</link>
		<comments>http://www.lisadean.net/help-i-cant-find-this-user-to-add-them-to-an-active-directory-group/#comments</comments>
		<pubDate>Wed, 30 May 2012 15:31:45 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=175</guid>
		<description><![CDATA[I ran into an issue at work where we couldn’t add a user to a local computer group. I later determined that you couldn’t find the user anytime you had to use the “Select Users, Contacts, Computers …” search window, like when you add the user to an AD group. You could, however, find the [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p>I ran into an issue at work where we couldn’t add a user to a local computer group. I later determined that you couldn’t find the user anytime you had to use the “Select Users, Contacts, Computers …” search window, like when you add the user to an AD group.</p>
<p><a href="http://www.lisaduncan.net/wp-content/uploads/2012/05/ad-search.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="ad-search" src="http://www.lisaduncan.net/wp-content/uploads/2012/05/ad-search_thumb.png" alt="ad-search" width="644" height="353" border="0" /></a></p>
<p>You could, however, find the user in the “Find Users, Contacts, and Groups” search box in ADUC.</p>
<p>I used a Powershell command to output the properties of the user account to a text file. I did the same thing for another non-problematic account. Then I used <a href="http://www.scootersoftware.com/" target="_blank">Beyond Compare</a> to compare them. I found that the showInAdvancedViewOnly attribute was set to TRUE on the problem account and FALSE on the non-problem account.</p>
<pre>Import-Module ActiveDirectory
 Get-ADUser ProblemUser -Properties * | fl c:\temp\problemuser.txt</pre>
<p>I changed the value of showInAdvancedViewOnly to FALSE and now I can find the account and add it to groups.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/help-i-cant-find-this-user-to-add-them-to-an-active-directory-group/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Log Parser: Coolest Thing Since Sliced Bread</title>
		<link>http://www.lisadean.net/microsoft-log-parser-coolest-thing-since-sliced-bread/</link>
		<comments>http://www.lisadean.net/microsoft-log-parser-coolest-thing-since-sliced-bread/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 22:06:56 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=102</guid>
		<description><![CDATA[I just stumbled upon a utility today that is going to save me a LOT of time &#8212; Microsoft Log Parser 2.2. The past week has presented me with two different problems that I knew a SQL query would solve but my data was in text files and I wanted to keep it that way. [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p>I just stumbled upon a utility today that is going to save me a LOT of time &#8212; Microsoft Log Parser 2.2.</p>
<p>The past week has presented me with two different problems that I knew a SQL query would solve but my data was in text files and I wanted to keep it that way. I&#8217;m still a SQL newbie; I can write some queries to squeeze out the information I need but thats about it.</p>
<h2>Let&#8217;s try MS Query</h2>
<p>The first problem involved one text file with directory names and sizes. The second text file was a list of users with both username and userid as fields. I needed to find out which directories matched up with userid&#8217;s.</p>
<p>I found the MS Query* tool included with Office. Supposedly you can use it to treat both text files and Excel files as databases using SQL queries. I could never get it to work right for either file type. I shelved the problem for later.</p>
<h2>That Didn&#8217;t Work, Now What?</h2>
<p>On to the next puzzle. We have a field called employeeID added to the schema of Active Directory. I needed to find all accounts that have duplicate employeeID&#8217;s. I knew I could do this with a SQL query. I already had a CSV file containing a dump of several AD attributes for all users. I planned on importing the CSV file into a SQL table and working with it. In searching to figure out how to build the query, I found Log Parser.</p>
<p>Log Parser is a utility written by Microsoft originally to parse IIS logs. It does that and much, much more. It will parse just about any structured text file, the event log,  the file system, and the registry. It&#8217;s not a supported utility but <a href="http://forums.iis.net/default.aspx?GroupID=51" target="_blank">this site</a> has an active user community.</p>
<p>I was able to use this command to pull up a nice GUI table format:</p>
<pre class="brush: powershell">logparser file:myquery.sql -i:csv -o:datagrid</pre>
<div id="attachment_112" style="width: 310px" class="wp-caption alignnone"><a href="http://www.lisaduncan.net/wp-content/uploads/2011/08/log-parser-gui.png"><img class="size-medium wp-image-112 " title="Log Parser Datagrid View" src="http://www.lisaduncan.net/wp-content/uploads/2011/10/log-parser-gui-300x160.png" alt="Log Parser Datagrid View" width="300" height="160" /></a><p class="wp-caption-text">Log Parser Datagrid View</p></div>
<p>This command exported the same information to a CSV file:</p>
<pre>logparser file:myquery.sql -i:csv -o:CSV
-headers:ON &gt; duplicate-employeeid.csv</pre>
<p>&nbsp;</p>
<p>My myquery.sql file looked like this:</p>
<pre>SELECT employeeID,sAMAccountName,sn,givenName
FROM 'users.csv'
WHERE employeeID IN
  (SELECT employeeID
  FROM 'users.csv'
  GROUP BY employeeID
  HAVING (COUNT(employeeID) &gt; 1))
ORDER BY employeeID</pre>
<p>&nbsp;</p>
<p>Then I discovered that Log Parser would query Active Directory! I knew how to use a simple SELECT statement in VBScript but it didn&#8217;t support all the SQL keywords I needed to use. This utility does that beautifully.</p>
<p>I changed my query file to this:</p>
<pre>SELECT employeeID,sAMAccountName,sn,givenName
FROM LDAP://domain.org
WHERE employeeID IN
  (SELECT employeeID
  FROM LDAP://domain.org
  GROUP BY employeeID
  HAVING (COUNT(employeeID) &gt; 1))
ORDER BY employeeID</pre>
<p>&nbsp;</p>
<p>And ran this command and voila! A complex SQL query of Active Directory!</p>
<pre>logparser file:myquery.sql -i:ADS -objectClass:User -o:CSV
-headers:ON &gt; duplicate-employeeid.csv</pre>
<p>&nbsp;</p>
<p>The documentation that comes with Log Parser is very useful and comprehensive. I also found an article (<a href="http://blogs.technet.com/b/exchange/archive/2007/11/12/3404342.aspx" target="_blank">part1</a>, <a href="http://blogs.technet.com/b/exchange/archive/2007/11/28/3404414.aspx" target="_blank">part2</a>) describing how to use Log Parser to view all the different types of Exchange logs and pull information into charts and graphs. I&#8217;ll be checking that out for sure.</p>
<p>Download Log Parser here: <a href="http://www.microsoft.com/download/en/details.aspx?id=24659" target="_blank">http://www.microsoft.com/download/en/details.aspx?id=24659</a><br />
Apparently there&#8217;s a book, too: <a href="http://www.amazon.com/gp/product/1932266526/ref=as_li_ss_tl?ie=UTF8&amp;tag=lisdunnet-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=1932266526" target="_blank">Microsoft Log Parser Toolkit: A complete toolkit for Microsoft&#8217;s undocumented log analysis tool</a><img style="border: none !important; margin: 0px !important;" src="http://www.lisaduncan.net/wp-content/uploads/2011/10/irtamplas2ampo1ampa1932266526ampcamp217145ampcreative399369" alt="" width="1" height="1" border="0" /></p>
<p>* MS Query located here for Office 2010: c:\Program Files\Microsoft Office\Office14\MSQRY32.EXE.</p>
<p>UPDATE 8/9/2011:</p>
<p>I found today that you can&#8217;t use JOIN in the queries for Log Parser. You CAN use the IN keyword to work around this. For a more complicated JOIN workaround, I suppose you could do one query, export it to a file and then do another query based on that.</p>
<p>Sample IN query:</p>
<pre>SELECT DIR As UserID, SIZE_MB As Dir_Size_MB
FROM 'directory-size.txt'
WHERE UserID IN (SELECT USERID FROM 'users.txt')
ORDER BY Dir_Size_MB DESC</pre>
<p>&nbsp;</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/microsoft-log-parser-coolest-thing-since-sliced-bread/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Read CHM files on the iPad</title>
		<link>http://www.lisadean.net/read-chm-files-on-ipad/</link>
		<comments>http://www.lisadean.net/read-chm-files-on-ipad/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 20:23:50 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[chm]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=82</guid>
		<description><![CDATA[Okay, so I&#8217;ve got Dropbox with a whole bunch of tech books in PDF and CHM format. I&#8217;ve got GoodReader for reading PDFs and it connects to Dropbox like a champ. I&#8217;ve got CHMate Lite for reading CHM files but I have to use the awful Bonjour (I think it&#8217;s Bonjour) wireless interface to copy [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">Okay, so I&#8217;ve got Dropbox with a whole bunch of tech books in PDF and CHM format.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">I&#8217;ve got <a title="GoodReader for iPhone" href="http://click.linksynergy.com/fs-bin/stat?id=1VSlCaqVMto&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fgoodreader-for-iphone%252Fid306277111%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30" target="_blank">GoodReader</a> for reading PDFs and it connects to <a href="http://db.tt/bskdrAA" target="_blank">Dropbox</a> like a champ. I&#8217;ve got <a title="CHMate Lite" href="http://click.linksynergy.com/fs-bin/stat?id=1VSlCaqVMto&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fchmate-lite-chm-reader-redefined%252Fid335157929%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30" target="_blank">CHMate Lite</a> for reading CHM files but I have to use the awful Bonjour (I think it&#8217;s Bonjour) wireless interface to copy files from my computer to my iPad in CHMate Lite.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">BUT, if I use GoodReader to download the CHM file open the file using CHMate Lite THROUGH GoodReader, I don&#8217;t have to mess with the wireless interface! AND it let&#8217;s you use CHMate on more than one CHM file. Excellent!</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">This link will get you and me an extra 250MB when you sign up at Dropbox: <a href="http://db.tt/bskdrAA" target="_blank">http://db.tt/bskdrAA</a></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">Here are instructions for connecting GoodReader to <a href="http://db.tt/bskdrAA" target="_blank">Dropbox</a>: <a href="http://www.goodreader.net/gr-man-tr-servers.html#read1st">http://www.goodreader.net/gr-man-tr-servers.html#read1st</a></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">And here, Ali Parvaresh explains how to use GoodReader to open CHM files: <a href="http://aliparvaresh.com/archive/2010/07/29/read-chm-files-on-ipad.aspx">http://aliparvaresh.com/archive/2010/07/29/read-chm-files-on-ipad.aspx</a></p>
<h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">UPDATE: 8/9/2011</h3>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 2em; margin-left: 0px; line-height: 26px;">I&#8217;ve found that you can open CHM files directly through the Dropbox app in the same way you can open them on through Goodreader.</p>
<ul>
<li>Download the file through Dropbox.</li>
<li>It will complain that it can&#8217;t read the file type.</li>
<li>Then tap the little box with an arrow in it and you get the same &#8220;Open With&#8221; dialog you get in Goodreader.</li>
</ul>
<p>I did find that the Dropbox app doesn&#8217;t handle large files (&gt;20MB) as well as Goodreader does.</p>
<h3>UPDATE: 6/15/2012</h3>
<p>Dropbox now gives you 500MB of free space when you sign up through my <a href="http://db.tt/bskdrAA" target="_blank">link</a>.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/read-chm-files-on-ipad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Miss My Smartphone</title>
		<link>http://www.lisadean.net/i-miss-my-smartphone/</link>
		<comments>http://www.lisadean.net/i-miss-my-smartphone/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:05:22 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Finances]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=73</guid>
		<description><![CDATA[We recently got rid of our iPhone 4&#8217;s in favor of T-Mobile prepaid phones to save money. I determined that even after termination fees of $265 a piece and buying a batch of prepaid minutes, we&#8217;d save $1800 over the course of the 18 months left on the contract. I was able to sell our [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p>We recently got rid of our iPhone 4&#8217;s in favor of T-Mobile prepaid phones to save money.<br />
<a title="iphone money by sebastienpage, on Flickr" href="http://www.flickr.com/photos/sebastienpage/3619925854/"><img class="alignright" src="http://farm3.staticflickr.com/2446/3619925854_306b6ed051_m.jpg" alt="iphone money" width="180" height="190" /></a><br />
I determined that even after termination fees of $265 a piece and buying a batch of prepaid minutes, we&#8217;d save $1800 over the course of the 18 months left on the contract. I was able to sell our iPhones for $500 each on Amazon so we&#8217;ve recouped the termination fees.</p>
<p>We bought cheap used Motorola Razr phones off Ebay and loaded each up with 1000 minutes for $100 which won&#8217;t expire for a year. Going off our past phone usage trends, those minutes may very well last us a year. Also, I&#8217;m using <a class="zem_slink" title="Google Voice" href="http://www.google.com/googlevoice/about.html" rel="homepage">Google Voice</a> for free outgoing calls when I&#8217;m at a computer and need to make a long call.</p>
<p>Despite the money saving benefits and my efforts to convince myself that the convenience of a smartphone wasn&#8217;t worth $130 a month, I find myself missing my iPhone. We have iPads (Wifi only) to replace most of the functionality of the iPhone and I&#8217;m LOVING it, but it&#8217;s not the same pocketable goodness the iPhone is.</p>
<p>Things I miss about my iPhone:</p>
<ul>
<li>The camera. You don&#8217;t realize how much you use it until you don&#8217;t have it.</li>
<li>Having a book in my pocket. I carry my iPad most everywhere, but it&#8217;s still not as convenient.</li>
<li>My music. I mostly listen to music while in the car on long trips. The iPad really kinda sucks for that. Too big and my FM transmitter doesn&#8217;t charge it.</li>
<li>The alarm. WHY couldn&#8217;t they have put a simple alarm app on the iPad? Seriously</li>
<li>Being able to play games like Words with Friends and Chess with Friends while out of Wifi range.</li>
<li>Having all my contacts available to dial on my phone.</li>
<li>Being able to scan simple documents and <a class="zem_slink" title="QR Code" href="http://en.wikipedia.org/wiki/QR_Code" rel="wikipedia">QR codes</a> with the camera.</li>
<li>Being able to lookup anything anywhere.</li>
</ul>
<p>When we embarked on this non-iPhone adventure, I was convinced I would never go back to a phone contract again. Prepaid all the way. If we lived in Europe and could buy a fully loaded SIM card at the corner gas station, I would still be thinking that. But the data services and phone selection suck on pre-paid in the US. Now, I know that when my husband gets a full time job after school, we&#8217;ll be getting the next iPhones that come out after that.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/i-miss-my-smartphone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Is Your Pre-3GS iPhone Slowing Down?</title>
		<link>http://www.lisadean.net/is-your-pre-3gs-iphone-slowing-down/</link>
		<comments>http://www.lisadean.net/is-your-pre-3gs-iphone-slowing-down/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 20:06:24 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=55</guid>
		<description><![CDATA[Ever since the update to the 3.0 OS on my iPhone 3G, my iPhone has been slower than usual. As usual, I google to find a solution. One of the suggestions also doubles as a fix to a hot iPhone battery. Here are some things to try: Do a &#8220;reboot&#8221; of your iPhone. Hold down [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p><a href="http://farm1.static.flickr.com/147/365607591_20a9e6c6c6_m.jpg"><img class="alignright" title="Man on iPhone" src="http://farm1.static.flickr.com/147/365607591_20a9e6c6c6_m.jpg" alt="" width="240" height="180" /></a>Ever since the update to the 3.0 OS on my iPhone 3G, my iPhone has been slower than usual. As usual, I google to find a solution. One of the suggestions also doubles as a <a href="http://www.lisaduncan.net/does-your-iphone-battery-get-hot/" target="_self">fix to a hot iPhone battery</a>. Here are some things to try:</p>
<ul>
<li>Do a &#8220;reboot&#8221; of your iPhone. Hold down the power button and the home button until you get a screen with an option to &#8220;slide to power off&#8221;. This will turn off your iPhone. Once it&#8217;s completely off, hit the power button again to turn it back on. You&#8217;ll need to do this periodically. &#8212; <em>This gave me a noticeable increase in speed</em>.</li>
<li>Clear your text message history. &#8212; <em>I didn&#8217;t find a way to clear them other than one by one. I fortunately don&#8217;t do alot of SMS texting so this didn&#8217;t take long but probably did not have much of an impact for me speed-wise.</em></li>
<li>Clear the Safari cache. Settings &gt; Safari &gt; Clear Cache. &#8212; <em>This made Safari snappier for me but I didn&#8217;t notice any other speed increases.</em></li>
</ul>
<blockquote><p>Results from this? <strong>Rebooting your iPhone occasionally is just a Good Thing�.</strong></p></blockquote>
<p><em>Image via </em><em><a href="http://www.flickr.com/photos/oskay/" target="_blank">oskay</a></em></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/is-your-pre-3gs-iphone-slowing-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Apply for Unemployment in South Carolina</title>
		<link>http://www.lisadean.net/how-to-apply-for-unemployment-in-south-carolina/</link>
		<comments>http://www.lisadean.net/how-to-apply-for-unemployment-in-south-carolina/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 17:22:21 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Finances]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=21</guid>
		<description><![CDATA[My husband just lost his job. Joy!! He needs to apply for unemployment and me, being the supportive spouse I am, found out what he needs to do to apply for unemployment. His big question is, is of course: How do I apply? You can go to the unemployment office itself. However, the unemployment rate [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p>My husband just lost his job. Joy!! He needs to apply for unemployment and me, being the supportive spouse I am, found out what he needs to do to apply for unemployment.</p>
<p>His big question is, is of course:</p>
<h3>How do I apply?</h3>
<p style="padding-left: 30px;">You can go to the unemployment office itself. However, the unemployment rate in South Carolina is 12% right now and it&#8217;s probably a very long line. To avoid that line you can apply�<a href="http://www.sces.org/ui/claimant/index.htm" target="_blank">online</a>.</p>
<p style="padding-left: 30px;">The site lets you register for work (a requirement) and unemployment at the same time online. Just click on the�<em>Online Claim Filing</em> link on the front page. You can check your claim status and do your weekly benefit certification online as well or by phone.</p>
<p>I had two big questions which were answered on the�<a href="http://www.sces.org/ui/claimant/faq.htm" target="_blank">SC Employment Security Commission&#8217;s FAQ</a>:</p>
<h3>How big will my unemployment check be?</h3>
<blockquote><p>If eligible, you can expect to draw approximately half of your regular pay, up to a maximum of $326.00 per week in South Carolina.  The regular state program provides for a maximum of 26 weeks.</p></blockquote>
<h3>When will I get my check?</h3>
<blockquote><p>Most people can expect to receive a check in about 3 weeks.</p></blockquote>
<p>Hopefully he won&#8217;t need the unemployment check for long but I&#8217;m glad it&#8217;s there.</p>
<p style="text-align: left;">SC Unemployment Claim webpage:�<a href="http://www.sces.org/ui/claimant/index.htm">http://www.sces.org/ui/claimant/index.htm</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/how-to-apply-for-unemployment-in-south-carolina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell&#8217;s servers just aren&#8217;t quite good enough for Google</title>
		<link>http://www.lisadean.net/dells-servers-just-arent-quite-good-enough-for-google/</link>
		<comments>http://www.lisadean.net/dells-servers-just-arent-quite-good-enough-for-google/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 13:02:06 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=10</guid>
		<description><![CDATA[Most companies buy servers from the likes of Dell, Hewlett-Packard, IBM, or Sun Microsystems. But Google, which has hundreds of thousands of servers and considers running them part of its core expertise, designs and builds its own. Ben Jai, who designed many of Google&#8217;s servers, unveiled a modern Google server before the hungry eyes of [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><blockquote><p>Most companies buy servers from the likes of Dell, Hewlett-Packard, IBM, or Sun Microsystems. But Google, which has hundreds of thousands of servers and considers running them part of its core expertise, designs and builds its own. Ben Jai, who designed many of Google&#8217;s servers, unveiled a modern Google server before the hungry eyes of a technically sophisticated audience.</p>
<p>Google&#8217;s big surprise: each server has its own 12-volt battery to supply power if there&#8217;s a problem with the main source of electricity. The company also revealed for the first time that since 2005, its data centers have been composed of standard shipping containers&#8211;each with 1,160 servers and a power consumption that can reach 250 kilowatts.</p></blockquote>
<p><a title="via cnet news" href="http://news.cnet.com/8301-1001_3-10209580-92.html?part=rss&amp;subj=news&amp;tag=2547-1_3-0-20" target="_blank">via cnet news</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/dells-servers-just-arent-quite-good-enough-for-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does your iPhone battery get hot?</title>
		<link>http://www.lisadean.net/does-your-iphone-battery-get-hot/</link>
		<comments>http://www.lisadean.net/does-your-iphone-battery-get-hot/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 19:54:08 +0000</pubDate>
		<dc:creator><![CDATA[Lisa Dean]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tech tips]]></category>

		<guid isPermaLink="false">http://www.lisaduncan.net/?p=8</guid>
		<description><![CDATA[My iPhone battery gets hot occasionally so, of course, I googled it. It turns out that, despite Apple&#8217;s restrictions on third-party applications that prevent them from running in the background, they aren&#8217;t preventing problems from their own applications. The standard iPhone apps like Safari, Mail, iPod, Youtube, Stocks, etc do not neccessarily close themselves when [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="pf-content"><p>My iPhone battery gets hot occasionally so, of course, I googled it. It turns out that, despite Apple&#8217;s restrictions on third-party applications that prevent them from running in the background, they aren&#8217;t preventing problems from their own applications.</p>
<p>The standard iPhone apps like Safari, Mail, iPod, Youtube, Stocks, etc do not neccessarily close themselves when you hit the Home button. You need to hold the button down for 8-10 seconds while in the application to force it to quit. Umm, okay.</p>
<p>An alternative is to shut down your iPhone a few times a week. (Hold down the power button till you get a screen asking if you want to power down.)</p>
<p>Heat really reduces battery life so this is definitely worth keeping an eye on and powering down whenever it starts overheating.</p>
<p><a title="via Macrumors forum" href="http://forums.macrumors.com/showthread.php?t=325838" target="_blank">via Macrumors forum</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lisadean.net/does-your-iphone-battery-get-hot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
