<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Adam's Tech Blog</title>
	<atom:link href="http://adamstech.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://adamstech.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Jun 2011 17:23:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='adamstech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Adam's Tech Blog</title>
		<link>http://adamstech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://adamstech.wordpress.com/osd.xml" title="Adam&#039;s Tech Blog" />
	<atom:link rel='hub' href='http://adamstech.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Properly Pause a PowerShell Script</title>
		<link>http://adamstech.wordpress.com/2011/05/12/how-to-properly-pause-a-powershell-script/</link>
		<comments>http://adamstech.wordpress.com/2011/05/12/how-to-properly-pause-a-powershell-script/#comments</comments>
		<pubDate>Thu, 12 May 2011 20:25:46 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=103</guid>
		<description><![CDATA[When I first learned about PowerShell, I immediately wanted to convert my batch files into PowerShell scripts and then enhance them with additional features. When I started that process, I quickly learned that PowerShell didn&#8217;t have anything equivalent to cmd.exe&#8217;s &#8220;Pause&#8221; command. I looked for a solution online and found the Microsoft TechNet article Windows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=103&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When I first learned about PowerShell, I immediately wanted to convert my batch files into PowerShell scripts and then enhance them with additional features. When I started that process, I quickly learned that PowerShell didn&#8217;t have anything equivalent to cmd.exe&#8217;s &#8220;Pause&#8221; command. I looked for a solution online and found the Microsoft TechNet article <a href="http://technet.microsoft.com/en-us/library/ff730938.aspx">Windows PowerShell Tip: Press Any Key to Continue</a>. This is the solution recommended by the article:</p>
<pre class="brush: powershell;">
Write-Host &quot;Press any key to continue ...&quot;

$x = $host.UI.RawUI.ReadKey(&quot;NoEcho,IncludeKeyDown&quot;)
</pre>
<p>However, the above solution has two things wrong with it:</p>
<ul>
<li>It doesn&#8217;t work from within Windows PowerShell ISE</li>
<li>Unlike cmd.exe&#8217;s &#8220;Pause&#8221; command, pressing keys like <tt>Ctrl</tt> and <tt>Alt</tt> causes the script to continue</li>
</ul>
<p>To fix these two issues, I decided to write my own &#8220;Pause&#8221; function:</p>
<pre class="brush: powershell;">
Function Pause ($Message = &quot;Press any key to continue . . . &quot;) {
	If ($psISE) {
		# The &quot;ReadKey&quot; functionality is not supported in Windows PowerShell ISE.

		$Shell = New-Object -ComObject &quot;WScript.Shell&quot;
		$Button = $Shell.Popup(&quot;Click OK to continue.&quot;, 0, &quot;Script Paused&quot;, 0)

		Return
	}

	Write-Host -NoNewline $Message

	$Ignore =
		16,  # Shift (left or right)
		17,  # Ctrl (left or right)
		18,  # Alt (left or right)
		20,  # Caps lock
		91,  # Windows key (left)
		92,  # Windows key (right)
		93,  # Menu key
		144, # Num lock
		145, # Scroll lock
		166, # Back
		167, # Forward
		168, # Refresh
		169, # Stop
		170, # Search
		171, # Favorites
		172, # Start/Home
		173, # Mute
		174, # Volume Down
		175, # Volume Up
		176, # Next Track
		177, # Previous Track
		178, # Stop Media
		179, # Play
		180, # Mail
		181, # Select Media
		182, # Application 1
		183  # Application 2

	While ($KeyInfo.VirtualKeyCode -Eq $Null -Or $Ignore -Contains $KeyInfo.VirtualKeyCode) {
		$KeyInfo = $Host.UI.RawUI.ReadKey(&quot;NoEcho, IncludeKeyDown&quot;)
	}

	Write-Host
}
</pre>
<p>Here&#8217;s the minified version:</p>
<pre class="brush: powershell;">
Function Pause($M=&quot;Press any key to continue . . . &quot;){If($psISE){$S=New-Object -ComObject &quot;WScript.Shell&quot;;$B=$S.Popup(&quot;Click OK to continue.&quot;,0,&quot;Script Paused&quot;,0);Return};Write-Host -NoNewline $M;$I=16,17,18,20,91,92,93,144,145,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183;While($K.VirtualKeyCode -Eq $Null -Or $I -Contains $K.VirtualKeyCode){$K=$Host.UI.RawUI.ReadKey(&quot;NoEcho,IncludeKeyDown&quot;)};Write-Host}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=103&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2011/05/12/how-to-properly-pause-a-powershell-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>Install PowerShell 2.0 on Windows XP Using a Batch File</title>
		<link>http://adamstech.wordpress.com/2010/11/11/install-powershell-2-0-on-windows-xp-using-a-batch-file/</link>
		<comments>http://adamstech.wordpress.com/2010/11/11/install-powershell-2-0-on-windows-xp-using-a-batch-file/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 19:16:38 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=93</guid>
		<description><![CDATA[I wrote a batch file (for use with Windows XP only) that installs PowerShell 2.0. Here are the three things you need to know about it: The batch file installs PowerShell 2.0 only if it is not already installed If service pack 3 for Windows is not installed, the batch file exits If .NET Framework [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=93&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote a batch file (for use with Windows XP only) that installs PowerShell 2.0. Here are the three things you need to know about it:</p>
<ol>
<li>The batch file installs PowerShell 2.0 only if it is not already installed</li>
<li>If service pack 3 for Windows is not installed, the batch file exits</li>
<li>If .NET Framework 2.0 (at least service pack 1) is not installed, the batch file automatically installs the x86 version of .NET Framework 2.0 service pack 1</li>
</ol>
<p>Here are the two files used by the batch file:</p>
<ol>
<li><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=79BC3B77-E02C-4AD3-AACF-A7633F706BA5">Microsoft .NET Framework 2.0 Service Pack 1 (x86)</a></li>
<li><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=60cb5b6c-6532-45e0-ab0f-a94ae9ababf5">Update for Windows XP (KB968930)</a>: includes Windows PowerShell 2.0 and Windows Remote Management (WinRM) 2.0</li>
</ol>
<p>Here is the code for the batch file:</p>
<pre class="brush: plain;">
@ECHO OFF

REM Make sure this batch file is being run with Windows XP
VER | FINDSTR /L &quot;5.1.&quot; &gt; NUL
IF %ERRORLEVEL% NEQ 0 ECHO It appears that you're not using Windows XP, so this batch file will exit now.&amp;GOTO EOF

REM See if PowerShell is installed
FOR /F &quot;tokens=3&quot; %%A IN ('REG QUERY &quot;HKLM\SOFTWARE\Microsoft\PowerShell\1&quot; /v Install ^| FIND &quot;Install&quot;') DO SET PowerShellInstalled=%%A
CLS

IF NOT &quot;%PowerShellInstalled%&quot;==&quot;0x1&quot; ECHO PowerShell doesn't appear to be installed.&amp;GOTO CheckPrerequisites

REM PowerShell is installed, so now see which version it is
FOR /F &quot;tokens=3&quot; %%A IN ('REG QUERY &quot;HKLM\SOFTWARE\Microsoft\PowerShell\1\PowerShellEngine&quot; /v PowerShellVersion ^| FIND &quot;PowerShellVersion&quot;') DO SET PowerShellVersion=%%A
CLS

IF &quot;%PowerShellVersion%&quot;==&quot;&quot; (
 ECHO PowerShell appears to be installed, but the version number was unable to be
 ECHO determined.
 GOTO CheckPrerequisites
)

ECHO PowerShell %PowerShellVersion% appears to be installed.
IF %PowerShellVersion%==2.0 GOTO EOF

:CheckPrerequisites
ECHO.
ECHO Version 2 will now be installed.
ECHO.

REM Make sure service pack 3 for Windows is installed
REG QUERY &quot;HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion&quot; /v CSDVersion | FIND &quot;Service Pack 3&quot; &gt; NUL
IF %ERRORLEVEL% EQU 0 GOTO CheckNETFramework2SP
CLS

ECHO It appears that you're using Windows XP, but without service pack 3. Please
ECHO install service pack 3 and then run this batch file again.
ECHO.
GOTO EOF

:CheckNETFramework2SP
REM Service pack 3 for Windows is installed, so now make sure .NET Framework 2.0 (at least SP1) is installed
FOR /F &quot;tokens=3&quot; %%A IN ('REG QUERY &quot;HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727&quot; /v SP ^| FIND &quot;SP&quot;') DO SET NETFramework2SP=%%A
CLS

IF NOT &quot;%NETFramework2SP%&quot;==&quot;&quot; IF NOT &quot;%NETFramework2SP%&quot;==&quot;0x0&quot; GOTO InstallPowerShell2

ECHO Installing .NET Framework 2.0 SP1...
START &quot;&quot; /WAIT NetFx20SP1_x86.exe /q /norestart
ECHO.

:InstallPowerShell2
ECHO Installing PowerShell 2.0...
START &quot;&quot; /WAIT WindowsXP-KB968930-x86-ENG.exe /quiet /passive /norestart

:EOF
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=93&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2010/11/11/install-powershell-2-0-on-windows-xp-using-a-batch-file/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>An Easy Way to Run PowerShell Scripts</title>
		<link>http://adamstech.wordpress.com/2010/10/24/an-easy-way-to-run-powershell-scripts/</link>
		<comments>http://adamstech.wordpress.com/2010/10/24/an-easy-way-to-run-powershell-scripts/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 03:14:25 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=82</guid>
		<description><![CDATA[According to the Microsoft TechNet article Running Windows PowerShell Scripts, these are the three ways to run a PowerShell script: From within PowerShell From a shortcut From the &#8220;Run&#8221; dialogue box It turns out that, as of PowerShell 2.0, there is another way, which is to simply right-click the PowerShell script and choose &#8220;Run with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=82&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>According to the Microsoft TechNet article <a href="http://technet.microsoft.com/en-us/library/ee176949.aspx">Running Windows PowerShell Scripts</a>, these are the three ways to run a PowerShell script:</p>
<ol>
<li>From within PowerShell</li>
<li>From a shortcut</li>
<li>From the &#8220;Run&#8221; dialogue box</li>
</ol>
<p>It turns out that, as of PowerShell 2.0, there is another way, which is to simply right-click the PowerShell script and choose &#8220;Run with PowerShell&#8221;. But what if you have several PowerShell scripts that you want to run in succession and not simultaneously? I ran into this problem, so I came up with a solution that involves a simple batch file. With this batch file, all you have to do to run one or more PowerShell scripts is drag it onto the batch file&#8217;s icon and let go. Here is the code for the batch file:</p>
<pre class="brush: plain;">
@ECHO OFF
CLS
IF NOT EXIST &quot;%windir%\System32\WindowsPowerShell\v1.0\powershell.exe&quot; GOTO NoPowerShell

IF NOT &quot;%~1&quot;==&quot;&quot; GOTO Start

ECHO Drag a PowerShell script (or multiple PowerShell scripts) onto this batch
ECHO file's icon and let go to run it.
ECHO.
PAUSE
GOTO EOF

:Start
REM Make sure the &quot;%~1&quot; parameter is a valid path
IF &quot;%~1&quot;==&quot;&quot; GOTO EOF
IF NOT EXIST &quot;%~1&quot; GOTO ShiftParameters

ECHO This batch file will now launch the following file using PowerShell:
ECHO.
ECHO %~1
ECHO.
ECHO *** BEGIN ***
&quot;%windir%\System32\WindowsPowerShell\v1.0\powershell.exe&quot; ^&amp;\&quot;%~1\&quot;

REM If an error occurs, pause the batch file so that the user can review the error message
IF %ERRORLEVEL% EQU 1 PAUSE

ECHO *** END ***
ECHO.

:ShiftParameters
SHIFT
GOTO Start

:NoPowerShell
ECHO PowerShell wasn't found at the following location:
ECHO.
ECHO &quot;%windir%\System32\WindowsPowerShell\v1.0\powershell.exe&quot;
ECHO.
ECHO Please install PowerShell and try again.
ECHO.
PAUSE

:EOF
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=82&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2010/10/24/an-easy-way-to-run-powershell-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Your Own Twitter Kiosk</title>
		<link>http://adamstech.wordpress.com/2010/02/25/create-your-own-twitter-kiosk/</link>
		<comments>http://adamstech.wordpress.com/2010/02/25/create-your-own-twitter-kiosk/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 02:55:10 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=71</guid>
		<description><![CDATA[I recently found myself in need of a way to view a Twitter timeline while having the following two requirements met: New tweets must show up automatically The font size must be able to be set high enough to see from across the room, preferably for only the first three tweets (as opposed to all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=71&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently found myself in need of a way to view a Twitter timeline while having the following two requirements met:</p>
<ul>
<li>New tweets must show up automatically</li>
<li>The font size must be able to be set high enough to see from across the room, preferably for only the first three tweets (as opposed to all of the tweets)</li>
</ul>
<p>I scoured the Internet for a Twitter client that met these two requirements and was quite surprised to find that all of the major Twitter clients (<a href="http://www.tweetdeck.com/">TweetDeck</a>, <a href="http://seesmic.com/">Seesmic</a>, <a href="http://www.twhirl.org/">twhirl</a>, etc.) lacked the ability to set the font size to a very high setting. I <em>could</em> just use the official Twitter website and use my browser&#8217;s zoom control to increase the font size, but the thing about the official Twitter website is that it doesn&#8217;t show new tweets automatically; it only <em>notifies</em> you of new tweets.</p>
<p>Seeing that I couldn&#8217;t find a Twitter client or webpage that met my requirements, I decided to create my own webpage. Since the time I made that decision, I&#8217;ve created a PHP/JavaScript version and a JavaScript only version. I call it &#8220;Read Only Twitter&#8221; because it&#8217;s meant strictly for viewing a Twitter timeline; not for tweeting.</p>
<p>I highly doubt I&#8217;m the only person in the world in need of a Twitter client or webpage that meets the two requirements listed above. That being the case, I decided to release my project to the world.</p>
<p>You can view a live demo (using the public Twitter timeline) and download the script <a href="http://www.lamintak.com/projects/readonlytwitter/">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=71&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2010/02/25/create-your-own-twitter-kiosk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Manage Your Finances for Free on Your PC</title>
		<link>http://adamstech.wordpress.com/2009/09/03/how-to-manage-your-finances-for-free-on-your-pc/</link>
		<comments>http://adamstech.wordpress.com/2009/09/03/how-to-manage-your-finances-for-free-on-your-pc/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 04:39:38 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[finances]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[microsoft money]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[money manager ex]]></category>
		<category><![CDATA[quicken]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=67</guid>
		<description><![CDATA[Managing your finances on your computer can be extremely helpful. There are so many reasons to do it, and with a free application like Money Manager Ex (comparable to Quicken or Microsoft Money), there's no reason not to.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=67&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Managing your finances on your computer can be extremely helpful. For example, if you write a check to somebody and they don&#8217;t deposit it until a few weeks later, you may forget you even wrote the check. Also, debit card transactions can sometimes take a few days to appear on your online bank statement. Even when they do appear, if the transaction is at the stage where it hasn&#8217;t cleared yet, the amount might not be accurate. This is often the case with transactions at restaurants (usually due to the tip) and gas stations. These scenarios can all lead to <a href="http://en.wikipedia.org/wiki/Non-sufficient_funds" title="Read the Wikipedia article on NSF fees">NSF fees</a>. Paying fees to a bank because you weren&#8217;t responsible with your money is the same as flushing your money down the toilet, and nobody wants that!</p>
<p>What if you want to track where your money is going? Or what if you&#8217;re trying to plan ahead and want to know how much your electric bill was for a certain month last year so that you&#8217;ll have a rough idea of how much it&#8217;ll be for that same month this year?</p>
<p>You can see why managing your finances on your computer is a good idea. There are so many reasons to do it, and with a free application like <a href="http://www.codelathe.com/mmex/">Money Manager Ex</a> (comparable to Quicken or Microsoft Money), there&#8217;s no reason not to.</p>
<p>Here is a tutorial video I made on how to use Money Manager Ex:</p>
<span style="text-align:center; display: block;"><a href="http://adamstech.wordpress.com/2009/09/03/how-to-manage-your-finances-for-free-on-your-pc/"><img src="http://img.youtube.com/vi/xo8n5b097L0/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=67&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2009/09/03/how-to-manage-your-finances-for-free-on-your-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>Use a Batch File to Detect Windows 2K, XP, 2003, Vista, or 7</title>
		<link>http://adamstech.wordpress.com/2009/07/16/use-a-batch-file-to-detect-windows-2k-xp-2003-vista-or-7/</link>
		<comments>http://adamstech.wordpress.com/2009/07/16/use-a-batch-file-to-detect-windows-2k-xp-2003-vista-or-7/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 06:06:16 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[detect]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=59</guid>
		<description><![CDATA[I came up with what I believe is the best script to use to detect which version of Windows is being used as long as it's 2K, XP, 2003, Vista, or 7.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=59&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A while ago I was in a situation where I needed to be able to detect the version of Windows that was being used to execute a batch file. After searching the Internet, the best script I found was <a href="http://roddotnet.blogspot.com/2008/08/how-to-detect-windows-vista-in-batch.html">this one</a> by Rod of <a href="http://roddotnet.blogspot.com/">Rod.Net</a>. I made some modifications to it and I came up with what I believe is the best script to use to detect which version of Windows is being used as long as it&#8217;s 2K, XP, 2003, Vista, or 7. Here&#8217;s the script:</p>
<pre class="brush: plain;">
@ECHO OFF
SET OSVersion=Unknown

VER | FINDSTR /L &quot;5.0&quot; &gt; NUL
IF %ERRORLEVEL% EQU 0 SET OSVersion=2000

VER | FINDSTR /L &quot;5.1.&quot; &gt; NUL
IF %ERRORLEVEL% EQU 0 SET OSVersion=XP

VER | FINDSTR /L &quot;5.2.&quot; &gt; NUL
IF %ERRORLEVEL% EQU 0 SET OSVersion=2003

VER | FINDSTR /L &quot;6.0.&quot; &gt; NUL
IF %ERRORLEVEL% EQU 0 SET OSVersion=Vista

VER | FINDSTR /L &quot;6.1.&quot; &gt; NUL
IF %ERRORLEVEL% EQU 0 SET OSVersion=7

IF %OSVersion%==Unknown (
 ECHO Unable to determine your version of Windows.
) ELSE (
 ECHO You appear to be using Windows %OSVersion%
)

ECHO.
PAUSE
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=59&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2009/07/16/use-a-batch-file-to-detect-windows-2k-xp-2003-vista-or-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Manage Home Pages in Internet Explorer</title>
		<link>http://adamstech.wordpress.com/2009/06/11/how-to-manage-home-pages-in-internet-explorer/</link>
		<comments>http://adamstech.wordpress.com/2009/06/11/how-to-manage-home-pages-in-internet-explorer/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 01:10:20 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=48</guid>
		<description><![CDATA[Although I&#8217;m not a big fan of Internet Explorer (as made clear in my last blog post), there are times when you have no choice but to use it. This tutorial will show you how to manage home pages in Internet Explorer versions 7 and 8. If you&#8217;re not sure which version you have, open [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=48&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Although I&#8217;m not a big fan of Internet Explorer (as made clear in <a href="http://adamstech.wordpress.com/2009/03/02/whats-wrong-with-internet-explorer/">my last blog post</a>), there are times when you have no choice but to use it. This tutorial will show you how to manage home pages in Internet Explorer versions 7 and 8. If you&#8217;re not sure which version you have, open Internet Explorer (if you&#8217;re not using it already) and visit <a href="http://www.thismachine.info/">http://www.thismachine.info/</a>. It will say which version you&#8217;re using in the &#8220;What browser am I using?&#8221; section.</p>
<h4>Say Hello to the Home Page Button</h4>
<p>Internet Explorer has a home page button in the toolbar, located here:</p>
<div id="attachment_49" class="wp-caption alignnone" style="width: 286px"><img src="http://adamstech.files.wordpress.com/2009/06/home-page-button.png?w=276&#038;h=300" alt="Internet Explorer home page button" title="Internet Explorer home page button" width="276" height="300" class="size-medium wp-image-49" /><p class="wp-caption-text">Internet Explorer home page button</p></div>
<p>Notice in the picture above that the home page button has two parts to it—the part with the house icon and the part with the arrow. If you click the part with the house icon, Internet Explorer will open your home page(s). If you click the part with the arrow, you can manage your home pages. On my computer, this is what I see when I click the arrow:</p>
<div id="attachment_51" class="wp-caption alignnone" style="width: 229px"><img src="http://adamstech.files.wordpress.com/2009/06/home-page-button-clicked.png?w=219&#038;h=97" alt="Internet Explorer home page button (clicked)" title="Internet Explorer home page button (clicked)" width="219" height="97" class="size-full wp-image-51" /><p class="wp-caption-text">Internet Explorer home page button (clicked)</p></div>
<p>I only have one home page (Google), but you can have several home pages if you want to. Each home page will be opened in their own tab. More information on tabs will be provided later in this tutorial.</p>
<h4>How to Replace Your Home Page or Add a New One</h4>
<ol>
<li>Go to the website of your choice</li>
<li>Click the arrow directly to the right of the house icon (shown above)</li>
<li>Click &#8220;Add or Change Home Page&#8230;&#8221;</li>
<li>You will be asked if you want the website you&#8217;re at to be your only home page or if you want it to be added to your home page tabs. The choice is yours.</li>
</ol>
<h4>How Does Having Multiple Home Pages Work?</h4>
<p>If you have multiple home pages and you open Internet Explorer, each home page will be opened in its own tab in Internet Explorer. Tabs are shown at the top of the Internet Explorer window, like this:</p>
<div id="attachment_52" class="wp-caption alignnone" style="width: 310px"><img src="http://adamstech.files.wordpress.com/2009/06/tabs.png?w=300&#038;h=118" alt="Internet Explorer tabs" title="Internet Explorer tabs" width="300" height="118" class="size-medium wp-image-52" /><p class="wp-caption-text">Internet Explorer tabs</p></div>
<p>This is a very useful feature because if you always go to a few particular websites every time you open Internet Explorer, this saves you the trouble of having to go to each website one at a time. You can easily switch between the websites by clicking the tabs at the top of the Internet Explorer window.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=48&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2009/06/11/how-to-manage-home-pages-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>

		<media:content url="http://adamstech.files.wordpress.com/2009/06/home-page-button.png?w=276" medium="image">
			<media:title type="html">Internet Explorer home page button</media:title>
		</media:content>

		<media:content url="http://adamstech.files.wordpress.com/2009/06/home-page-button-clicked.png" medium="image">
			<media:title type="html">Internet Explorer home page button (clicked)</media:title>
		</media:content>

		<media:content url="http://adamstech.files.wordpress.com/2009/06/tabs.png?w=300" medium="image">
			<media:title type="html">Internet Explorer tabs</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s Wrong with Internet Explorer?</title>
		<link>http://adamstech.wordpress.com/2009/03/02/whats-wrong-with-internet-explorer/</link>
		<comments>http://adamstech.wordpress.com/2009/03/02/whats-wrong-with-internet-explorer/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 23:50:03 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=31</guid>
		<description><![CDATA[Internet Explorer is the most widely-used web browser in the world. Most people use it simply because it&#8217;s the only web browser they have on their computer. They aren&#8217;t aware that they have other choices such as Mozilla Firefox, Opera, Safari, and Google Chrome. So when they want to check their e-mail, or get driving [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=31&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer is the most widely-used web browser in the world. Most people use it simply because it&#8217;s the only web browser they have on their computer. They aren&#8217;t aware that they have other choices such as <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a>, <a href="http://www.opera.com/">Opera</a>, <a href="http://www.apple.com/safari/">Safari</a>, and <a href="http://www.google.com/chrome">Google Chrome</a>. So when they want to check their e-mail, or get driving directions, or watch a video, or go on Facebook, what do they do? They fire up Internet Explorer and away they go. So what&#8217;s the problem? Well, there are actually three problems:</p>
<ol>
<li><a href="http://browsehappy.com/why/">Internet Explorer is insecure and unsafe</a>.</li>
<li>Internet Explorer is much slower than other web browsers, as shown by the graphs on <a href="http://cybernetnews.com/2008/03/26/cybernotes-browser-performance-comparisons/">this page</a>.</li>
<li>With Internet Explorer, things often don&#8217;t look the way they should.</li>
</ol>
<p>Although the first two points in the above list are important, this article focuses on the third point. Here is a link to a page on my personal website showing ten examples of things that look wrong in Internet Explorer, but look right in <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a>, <a href="http://www.opera.com/">Opera</a>, <a href="http://www.apple.com/safari/">Safari</a>, and <a href="http://www.google.com/chrome">Google Chrome</a>:</p>
<p><a href="http://www.lamintak.com/blog/2009/03/whats-wrong-with-internet-explorer.html">Ten Things That Look Wrong in Internet Explorer</a></p>
<p>Please note that there are far, far more problems than just ten. The point of the page is to make it easy for the average person to see the problems. For a much more technical and exhaustive list of problems in Internet Explorer, see <a href="http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/">this page</a>.</p>
<h4>Why is Internet Explorer so different from other web browsers?</h4>
<p>For whatever reason, Microsoft (the maker of Internet Explorer) decided to program Internet Explorer in such a way that it breaks many important rules of the web set by the <a href="http://www.w3.org/Consortium/">World Wide Web Consortium (W3C)</a>.</p>
<h4>What is Microsoft doing to fix Internet Explorer?</h4>
<p>As of March 2009, Microsoft is still developing the next version of Internet Explorer (version 8), which aims to be more compliant with the rules of the web. They have a public preview available to download, but it&#8217;s still far from perfect. Even when it&#8217;s finished, I&#8217;m sure it will still have many flaws.</p>
<h4>What should I do?</h4>
<p>You <em>could</em> cross your fingers and hope that Internet Explorer version 8 ends up being a good web browser, but I highly doubt that will happen. I recommend immediately switching to <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a>, <a href="http://www.opera.com/">Opera</a>, <a href="http://www.apple.com/safari/">Safari</a>, or <a href="http://www.google.com/chrome">Google Chrome</a>. That way you can surf the web much more securely, much more quickly, and with the confidence that you&#8217;re seeing the websites the way that they were intended to be seen.</p>
<p>Be aware that there are some websites that require Internet Explorer. If you happen to run into one of those websites, go ahead and use Internet Explorer for that website, but don&#8217;t use it for anything else.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=31&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2009/03/02/whats-wrong-with-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
		<item>
		<title>Crash Course on Screen Resolutions</title>
		<link>http://adamstech.wordpress.com/2009/02/27/crash-course-on-screen-resolutions/</link>
		<comments>http://adamstech.wordpress.com/2009/02/27/crash-course-on-screen-resolutions/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 20:31:57 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[monitors]]></category>
		<category><![CDATA[screen resolutions]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=21</guid>
		<description><![CDATA[There are two important things to know about screen resolutions: The higher the screen resolution, the smaller things appear. Think of high resolutions as &#8220;zooming out&#8221; and low resolutions as &#8220;zooming in&#8221;. The follow two pictures illustrate several common screen resolutions and how they appear in relation to each other: Common Screen Resolutions for Full [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=21&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are two important things to know about screen resolutions:</p>
<ol>
<li>
<p><b>The higher the screen resolution, the smaller things appear.</b> Think of high resolutions as &#8220;zooming out&#8221; and low resolutions as &#8220;zooming in&#8221;. The follow two pictures illustrate several common screen resolutions and how they appear in relation to each other:</p>
<h4>Common Screen Resolutions for Full Screen Monitors:</h4>
<p><img src="http://adamstech.files.wordpress.com/2009/02/screen-resolutions-full.png?w=300&#038;h=192" alt="Common Screen Resolutions for Full Screen Monitors" title="Common Screen Resolutions for Full Screen Monitors" width="300" height="192" class="alignnone size-medium wp-image-22" /></p>
<h4>Common Screen Resolutions for Wide Screen Monitors:</h4>
<p><img src="http://adamstech.files.wordpress.com/2009/02/screen-resolutions-wide.png?w=300&#038;h=231" alt="Common Screen Resolutions for Wide Screen Monitors" title="Common Screen Resolutions for Wide Screen Monitors" width="300" height="231" class="alignnone size-medium wp-image-23" /></p>
<p>As you can see, the high screen resolutions can show a lot more on the screen than the low screen resolutions.</p>
</li>
<li>
<p><b>Many programs and websites are designed for screen resolutions of at least 1024 x 768.</b> If your screen resolution is lower than 1024 x 768, some programs will be much more difficult to manage because you&#8217;ll have to scroll horizontally in order to see all of the menus. Some programs simply won&#8217;t show all of the menus if your screen resolution is too low, effectively making it so you can&#8217;t use all of the program&#8217;s features! Websites are like this as well. So even though 640 x 480 may seem like a good screen resolution for people with poor vision (because it looks like the monitor is zoomed in), it can also be bad in that it can make certain programs and websites difficult or impossible to use. It really just depends on what programs and websites the person uses. My recommendation for people with poor vision is to get at least a 22&#8243; wide screen monitor and set the resolution to 1440 x 900. This way, programs and websites will look the way they should, but things will be big enough for people to not have to squint to see.</p>
</li>
</ol>
<p>Want to know what your screen resolution is? Check out <a href="http://www.whatismyscreenresolution.com/">WhatIsMyScreenResolution.com</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=21&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2009/02/27/crash-course-on-screen-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>

		<media:content url="http://adamstech.files.wordpress.com/2009/02/screen-resolutions-full.png?w=300" medium="image">
			<media:title type="html">Common Screen Resolutions for Full Screen Monitors</media:title>
		</media:content>

		<media:content url="http://adamstech.files.wordpress.com/2009/02/screen-resolutions-wide.png?w=300" medium="image">
			<media:title type="html">Common Screen Resolutions for Wide Screen Monitors</media:title>
		</media:content>
	</item>
		<item>
		<title>Quickly Find a Windows Computer&#8217;s Sysprep Identification String</title>
		<link>http://adamstech.wordpress.com/2009/02/21/quickly-find-a-windows-computers-sysprep-identification-string/</link>
		<comments>http://adamstech.wordpress.com/2009/02/21/quickly-find-a-windows-computers-sysprep-identification-string/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 00:55:05 +0000</pubDate>
		<dc:creator>adamstech</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[sysprep]]></category>
		<category><![CDATA[vbs]]></category>
		<category><![CDATA[vbscript]]></category>

		<guid isPermaLink="false">http://adamstech.wordpress.com/?p=12</guid>
		<description><![CDATA[At work, I&#8217;m in a situation where we have over 1,000 computers to manage. Over the years, we&#8217;ve gone through several different versions of a base image of Windows XP created with Sysprep which we put on all of the new computers that come in. When we&#8217;re out in the field troubleshooting a problem on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=12&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work, I&#8217;m in a situation where we have over 1,000 computers to manage. Over the years, we&#8217;ve gone through several different versions of a base image of Windows XP created with Sysprep which we put on all of the new computers that come in. When we&#8217;re out in the field troubleshooting a problem on a computer, it&#8217;s nice to know which image was used on that computer. Previously, I was having to open regedit and navigate to HKEY_LOCAL_MACHINE\SYSTEM\Setup\OemDuplicatorString. This got old real fast, so I wrote a quick VBScript to display it:</p>
<pre class="brush: vb;">
Const HKEY_LOCAL_MACHINE = &amp;H80000002

strComputer = &quot;.&quot;
Set objRegistry = GetObject(&quot;winmgmts:\\&quot; &amp; strComputer &amp; &quot;\root\default:StdRegProv&quot;)

strKeyPath = &quot;SYSTEM\Setup&quot;
strValueName = &quot;OEMDuplicatorString&quot;
objRegistry.GetMultiStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,arrValues

If IsNull(arrValues) Then
	Wscript.Echo &quot;This computer has no Sysprep identification string.&quot;
Else
	Wscript.Echo &quot;This computer's Sysprep identification string is:&quot; &amp; VbCr &amp; VbCr &amp; arrValues(0)
End If
</pre>
<p>Simply save that code as &#8220;Display Sysprep Identification String.vbs&#8221;! For an extremely detailed guide on how to use Sysprep, I recommend <a href="http://www.vernalex.com/guides/sysprep/video.shtml">this one</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adamstech.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adamstech.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adamstech.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adamstech.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adamstech.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adamstech.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adamstech.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adamstech.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adamstech.wordpress.com&amp;blog=5116459&amp;post=12&amp;subd=adamstech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://adamstech.wordpress.com/2009/02/21/quickly-find-a-windows-computers-sysprep-identification-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c749d2ea479ef47f5597bf30503079c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">adamstech</media:title>
		</media:content>
	</item>
	</channel>
</rss>
