<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Everyday Nerd</title>
	
	<link>http://everydaynerd.com</link>
	<description>Just your everyday nerd</description>
	<lastBuildDate>Mon, 21 Nov 2011 17:55:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
  <link>http://everydaynerd.com</link>
  <url>http://everydaynerd.com/apple-touch-icon.png</url>
  <title>Everyday Nerd</title>
</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/EverydayNerd" /><feedburner:info uri="everydaynerd" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><feedburner:emailServiceId>EverydayNerd</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>PowerShell: Move Windows Server 2008 Cluster Group</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/tSk5CrVfjI4/powershell-move-windows-server-2008-cluster-group</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group#comments</comments>
		<pubDate>Mon, 21 Nov 2011 17:55:13 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1680</guid>
		<description><![CDATA[Where I work, we were a little behind finally getting to Windows Server 2008 R2.  Our Exchange Servers were running on Server 2003 R2 until recently.  Windows clustering is quite different on 2k8 vs. 2k3.  I wrote this function to &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-ccr-%e2%80%93-move-file-share-witness' rel='bookmark' title='Exchange 2007 CCR – Move File Share Witness'>Exchange 2007 CCR – Move File Share Witness</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-server-2008-rc1-released' rel='bookmark' title='Windows Server 2008 RC1 Released'>Windows Server 2008 RC1 Released</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-server-2008-its-rtm' rel='bookmark' title='Windows Server 2008 &#8211; It&#8217;s RTM!'>Windows Server 2008 &#8211; It&#8217;s RTM!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Where I work, we were a little behind finally getting to Windows Server 2008 R2.  Our Exchange Servers were running on Server 2003 R2 until recently.  Windows clustering is quite different on 2k8 vs. 2k3.  I wrote this function to move the Windows cluster group &#8220;Cluster Group&#8221; (quorum) to the other node of the cluster.  I know it&#8217;s not that difficult to do this, but it saves a few extra keystrokes.</p>
<pre class="brush: powershell; light: false; title: ; toolbar: true; notranslate">
Function Invoke-WindowsClusterFailover
{
	#Requires -version 2
	[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact=&quot;High&quot;)]
	param()
	Write-Verbose &quot;Checking to see if $($env:computername) is a Clustered Exchange Server&quot;
	Get-ClusteredMailboxServerStatus -ErrorAction SilentlyContinue | Out-Null
	If ($? -eq $False)
	{
		Write-Verbose &quot;$($env:computername) is not a clustered Exchange Server - Exiting&quot;
		Throw &quot;$($env:computername) is not a clustered Exchange Server&quot;
	}
	Else
	{
		Write-Verbose &quot;$($env:computername) is a Clustered Exchange Server&quot;
		If (((Get-WmiObject Win32_OperatingSystem).Caption).ToString() -like &quot;*2008*&quot;)
		{
			Write-Verbose &quot;$($env:computername) is a Windows Server 2008 or later&quot;
			Write-Verbose &quot;Loading Windows Failover Cluster PowerShell Module&quot;
			Import-Module FailoverClusters
		}
		Else
		{
			Write-Verbose &quot;$($env:computername) is not Windows Server 2008 or later&quot;
			Write-Verbose &quot;$((Get-WmiObject Win32_OperatingSystem).Caption) does not support the Powershell FailoverCluster Module - Exiting&quot;
			Throw &quot;$((Get-WmiObject Win32_OperatingSystem).Caption) does not support the Powershell FailoverCluster Module&quot;
		}
		Write-Verbose &quot;Getting Windows Cluster Name&quot;
		$ClusterName = (Get-Cluster).Name
		Write-Verbose &quot;Checking ShouldContinue if OK to proceed&quot;
		if($PSCmdlet.ShouldProcess(&quot;$($ClusterName)&quot;, &quot;Failover Windows Cluster&quot;))
		{
			Write-Verbose &quot;Moving Windows Cluster Group&quot;
			Get-ClusterGroup &quot;Cluster Group&quot; | Move-ClusterGroup
		}
		Write-Verbose &quot;End&quot;
	}
				.SYNOPSIS
		Moves the Windows cluster &quot;Cluster Group&quot; to the other node of the cluster

		.DESCRIPTION
		Moves the Windows cluster &quot;Cluster Group&quot; to the other node of the cluster.  This requires
		Windows Server 2008 or later.  This function supports &quot;Should Continue&quot; so it prompts the
		user to continue at the &quot;dangerous&quot; portion of the function (Move-ClusterGroup).  If you
		don't want the should continue prompt, you can use the  param.

		.NOTES
		Function Name: Invoke-WindowsClusterFailover
		Author: Dan Burgess
		Email: nerd@everydaynerd.com
		Script Requires:  Powershell 2.0 or higher; Windows Server 2008 or later
	#&gt;
}
</pre>
<p>I really enjoyed using the &#8220;SupportsShouldProcess&#8221; feature of CmdletBinding!  Expand the code above, and double click to select all.</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-ccr-%e2%80%93-move-file-share-witness' rel='bookmark' title='Exchange 2007 CCR – Move File Share Witness'>Exchange 2007 CCR – Move File Share Witness</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-server-2008-rc1-released' rel='bookmark' title='Windows Server 2008 RC1 Released'>Windows Server 2008 RC1 Released</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-server-2008-its-rtm' rel='bookmark' title='Windows Server 2008 &#8211; It&#8217;s RTM!'>Windows Server 2008 &#8211; It&#8217;s RTM!</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/NICw3I_luufn_ozbUAbwLzBipi0/0/da"><img src="http://feedads.g.doubleclick.net/~a/NICw3I_luufn_ozbUAbwLzBipi0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NICw3I_luufn_ozbUAbwLzBipi0/1/da"><img src="http://feedads.g.doubleclick.net/~a/NICw3I_luufn_ozbUAbwLzBipi0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=tSk5CrVfjI4:XiB7eDiv99A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=tSk5CrVfjI4:XiB7eDiv99A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=tSk5CrVfjI4:XiB7eDiv99A:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=tSk5CrVfjI4:XiB7eDiv99A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=tSk5CrVfjI4:XiB7eDiv99A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=tSk5CrVfjI4:XiB7eDiv99A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=tSk5CrVfjI4:XiB7eDiv99A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=tSk5CrVfjI4:XiB7eDiv99A:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=tSk5CrVfjI4:XiB7eDiv99A:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/tSk5CrVfjI4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group</feedburner:origLink></item>
		<item>
		<title>PowerShell: Get-Uptime for Computer(s)</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/yWvAeSJBAR0/powershell-get-uptime-for-computers</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers#comments</comments>
		<pubDate>Fri, 18 Nov 2011 20:53:04 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1673</guid>
		<description><![CDATA[I needed to check the server uptime for multiple servers, and well, I wanted to do it in PowerShell.  I found a sample from MSDN, and modified it, and threw it into a function. Here&#8217;s an alternative to this function &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group' rel='bookmark' title='PowerShell: Move Windows Server 2008 Cluster Group'>PowerShell: Move Windows Server 2008 Cluster Group</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-drive-space-info-from-multiple-systems' rel='bookmark' title='PowerShell: Drive Space Info from multiple systems'>PowerShell: Drive Space Info from multiple systems</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly' rel='bookmark' title='PowerShell: Change PS Window Size on the fly'>PowerShell: Change PS Window Size on the fly</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I needed to check the server uptime for multiple servers, and well, I wanted to do it in PowerShell. <img src='http://everydaynerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I found a sample from <a href="http://msdn.microsoft.com/en-us/library/aa394591(VS.85).aspx" target="_blank">MSDN</a>, and modified it, and threw it into a function.</p>
<pre class="brush: powershell; light: false; title: ; toolbar: true; notranslate">
Function Get-Uptime
{
	#Requires -version 2
	[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact=&quot;High&quot;)]
	Param(
	[parameter(Mandatory=$false,HelpMessage=&quot;Computer Name(s)&quot;,ValueFromPipeline=$true)]
	[object[]]$ComputerName = &quot;.&quot;
	)
	PROCESS
	{
		$WmiOS = Get-WMIObject -class Win32_OperatingSystem -computer $ComputerName
		Function ConvertWMIDateToDateTime($BootTime)
		{
			[System.Management.ManagementDateTimeconverter]::ToDateTime($BootTime)
		}
		Function GetUptime($ComputerName)
		{
			$BootTime = $WmiOS.LastBootUpTime
			$LastBootUpTime = ConvertWMIDateToDateTime($BootTime)
			$Uptime = (Get-Date) - $lastBootUpTime
			$days = $Uptime.Days
			$hours = $Uptime.Hours
			$min = $uptime.Minutes
			$sec = $uptime.Seconds
			[console]::ForegroundColor = &quot;Green&quot;
			&quot;$($ComputerName) has been up for: {0} days, {1} hours, {2} minutes and {3} seconds&quot; -f $days,$hours,$min,$sec
			[console]::ResetColor()
		}
		GetUptime $ComputerName
	}
	&lt;#
		.SYNOPSIS
		Gets uptime of a system via WMI

		.DESCRIPTION
		Get-Uptime uses WMI (specificaly Win32_ComputerSystem) to get the uptime of a system.
		The core component of the script was found at http://msdn.microsoft.com/en-us/library/aa394591(VS.85).aspx
		and addapted with additional functionality.

		.EXAMPLE
		PS c:\&gt; Get-UpTime SERVER01
		SERVER01 has been up for: 355 days, 23 hours, 59 minutes and 59 seconds

		.EXAMPLE
		PS c:\&gt; Get-ExchangeServer | Get-Uptime
		SERVER01 has been up for: 355 days, 23 hours, 59 minutes and 59 seconds
		SERVER02 has been up for: 355 days, 23 hours, 59 minutes and 59 seconds
		SERVER03 has been up for: 355 days, 23 hours, 59 minutes and 59 seconds
		SERVER04 has been up for: 355 days, 23 hours, 59 minutes and 59 seconds

		.LINK
		Script Posted to:

http://everydaynerd.com

		Adapted from sample posted at:

http://msdn.microsoft.com/en-us/library/aa394591(VS.85).aspx

		.NOTES
		Function Name : Get-UpTime
		Author: Dan Burgess
		Email: nerd@everydaynerd.com
		Script Requires:  Powershell 2.x or higher
	#&gt;
}
</pre>
<p>Here&#8217;s an alternative to this function that outputs to a powershell object &#8211; rather than just writing to the screen. (Thanks for the encouragement Jeffery)</p>
<pre class="brush: powershell; light: false; title: ; toolbar: true; notranslate">
Function Get-Uptime
{
	#Requires -version 2
	[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact=&quot;High&quot;)]
	Param(
	[parameter(Mandatory=$true,HelpMessage=&quot;Computer Name(s)&quot;,ValueFromPipeline=$true)]
	[object[]]$ComputerName
	)
	PROCESS
	{
		$System = Get-WMIObject -class Win32_OperatingSystem -computer $ComputerName
		Function GetUptime($ComputerName)
		{
			$Bootup = $System.LastBootUpTime
			$LastBootUpTime = $System.ConvertToDateTime($System.LastBootUpTime)
			$now = Get-Date
			$Uptime = $now - $lastBootUpTime
			$NewObjectProperties = @{
				ComputerName=$ComputerName
				Days=$Uptime.Days;`
				Hours=$Uptime.Hours;`
				Minutes=$Uptime.Minutes;`
				Seconds=$Uptime.Seconds;`
				}
			New-Object psobject -Property $NewObjectProperties
		}
		$Results = GetUptime $ComputerName
		$Results | Select ComputerName, Days, Hours, Minutes, Seconds
	}
	&lt;#
		.SYNOPSIS
		Gets uptime of a system via WMI

		.DESCRIPTION
		Get-Uptime uses WMI (specificaly Win32_ComputerSystem) to get the uptime of a system.
		The core component of the script was found at http://msdn.microsoft.com/en-us/library/aa394591(VS.85).aspx
		and addapted with additional functionality.

		.EXAMPLE
		PS c:\&gt; Get-UpTime server01
		ComputerName : {server01}
		Days         : 27
		Hours        : 2
		Minutes      : 21
		Seconds      : 26

		.EXAMPLE
		PS c:\&gt; Get-ExchangeServer | Get-Uptime | ft -AutoSize
		ComputerName Days Hours Minutes Seconds
		------------ ---- ----- ------- -------
		{server01}    27     2      15      49
		{server02}   130     6      40      23

		.LINK
		Script Posted to:

http://everydaynerd.com

		Adapted from sample posted at:

http://msdn.microsoft.com/en-us/library/aa394591(VS.85).aspx

		.NOTES
		Function Name : Get-UpTime
		Author: Dan Burgess
		Email: nerd@everydaynerd.com
		Script Requires:  Powershell 2.x or higher
	#&gt;
}
</pre>
<p>Happy PowerShelling!</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group' rel='bookmark' title='PowerShell: Move Windows Server 2008 Cluster Group'>PowerShell: Move Windows Server 2008 Cluster Group</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-drive-space-info-from-multiple-systems' rel='bookmark' title='PowerShell: Drive Space Info from multiple systems'>PowerShell: Drive Space Info from multiple systems</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly' rel='bookmark' title='PowerShell: Change PS Window Size on the fly'>PowerShell: Change PS Window Size on the fly</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/MmRLCvgqNioXpo-CpXeDWxUYOOk/0/da"><img src="http://feedads.g.doubleclick.net/~a/MmRLCvgqNioXpo-CpXeDWxUYOOk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MmRLCvgqNioXpo-CpXeDWxUYOOk/1/da"><img src="http://feedads.g.doubleclick.net/~a/MmRLCvgqNioXpo-CpXeDWxUYOOk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=yWvAeSJBAR0:lpp4CZ145BA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=yWvAeSJBAR0:lpp4CZ145BA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=yWvAeSJBAR0:lpp4CZ145BA:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=yWvAeSJBAR0:lpp4CZ145BA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=yWvAeSJBAR0:lpp4CZ145BA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=yWvAeSJBAR0:lpp4CZ145BA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=yWvAeSJBAR0:lpp4CZ145BA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=yWvAeSJBAR0:lpp4CZ145BA:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=yWvAeSJBAR0:lpp4CZ145BA:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/yWvAeSJBAR0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers</feedburner:origLink></item>
		<item>
		<title>Notepad ++ Powershell Language Syntax Coloring</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/LWIs0L2m9Lw/notepad-powershell-language-syntax-coloring</link>
		<comments>http://everydaynerd.com/general/notepad-powershell-language-syntax-coloring#comments</comments>
		<pubDate>Thu, 17 Nov 2011 18:32:50 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1667</guid>
		<description><![CDATA[Notepad++ is my editor of choice for writing PowerShell code.  There is a built in language syntax for PowerShell, but it doesn&#8217;t include Exchange cmdlets in the syntax coloring.  So, I&#8217;ve created a custom user-defined language file for PowerShell, that &#8230; <a class="more-link" href="http://everydaynerd.com/general/notepad-powershell-language-syntax-coloring">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly' rel='bookmark' title='PowerShell: Change PS Window Size on the fly'>PowerShell: Change PS Window Size on the fly</a></li>
<li><a href='http://everydaynerd.com/microsoft/create-multiple-rdp-files-with-powershell' rel='bookmark' title='Create multiple RDP files with Powershell'>Create multiple RDP files with Powershell</a></li>
<li><a href='http://everydaynerd.com/software/free/free-e-book-powershell' rel='bookmark' title='Free E-Book: PowerShell'>Free E-Book: PowerShell</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Notepad++ is my editor of choice for writing PowerShell code.  There is a built in language syntax for PowerShell, but it doesn&#8217;t include Exchange cmdlets in the syntax coloring.  So, I&#8217;ve created a custom user-defined language file for PowerShell, that includes the Exchange, and Active Directory cmdlets, as well as a few other modules that I use regularly.  I also included the new PowerShell 2 comment block coloring, as the built-in didn&#8217;t recognize them.</p>
<p>This is my first attempt at creating a user-defined language for Notepad++, but I thought I&#8217;d share it, mainly because I didn&#8217;t see anyone else that had one available on the internet.</p>
<p>Here&#8217;s an example of the coloring:</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2011/11/User-Defined_Powershell.png"><img class="alignnone size-medium wp-image-1668" title="User-Defined_Powershell" src="http://everydaynerd.com/wp-content/uploads/2011/11/User-Defined_Powershell-300x174.png" alt="" width="300" height="174" /></a></p>
<p>Extract the zip, and place the xml file in %AppData%\Notepad++\ directory.  If you already have a userDefineLang.xml, you will have to edit your original, and append the data from this file to it.  More info can be found on Notepad++ <a href="http://notepad-plus-plus.org/" target="_blank">website</a> if you need help.</p>
<p>[<a href="http://everydaynerd.com/files/userDefineLang.zip">Download</a>]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly' rel='bookmark' title='PowerShell: Change PS Window Size on the fly'>PowerShell: Change PS Window Size on the fly</a></li>
<li><a href='http://everydaynerd.com/microsoft/create-multiple-rdp-files-with-powershell' rel='bookmark' title='Create multiple RDP files with Powershell'>Create multiple RDP files with Powershell</a></li>
<li><a href='http://everydaynerd.com/software/free/free-e-book-powershell' rel='bookmark' title='Free E-Book: PowerShell'>Free E-Book: PowerShell</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/2d-ZEJsbViT49A5H-3NM-bskwV8/0/da"><img src="http://feedads.g.doubleclick.net/~a/2d-ZEJsbViT49A5H-3NM-bskwV8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2d-ZEJsbViT49A5H-3NM-bskwV8/1/da"><img src="http://feedads.g.doubleclick.net/~a/2d-ZEJsbViT49A5H-3NM-bskwV8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LWIs0L2m9Lw:UZlztRBxIVk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LWIs0L2m9Lw:UZlztRBxIVk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LWIs0L2m9Lw:UZlztRBxIVk:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LWIs0L2m9Lw:UZlztRBxIVk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=LWIs0L2m9Lw:UZlztRBxIVk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LWIs0L2m9Lw:UZlztRBxIVk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=LWIs0L2m9Lw:UZlztRBxIVk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LWIs0L2m9Lw:UZlztRBxIVk:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=LWIs0L2m9Lw:UZlztRBxIVk:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/LWIs0L2m9Lw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/general/notepad-powershell-language-syntax-coloring/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/general/notepad-powershell-language-syntax-coloring</feedburner:origLink></item>
		<item>
		<title>R.I.P. Steve Jobs</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/P5nmtl4sEwQ/r-i-p-steve-jobs</link>
		<comments>http://everydaynerd.com/general/r-i-p-steve-jobs#comments</comments>
		<pubDate>Thu, 06 Oct 2011 14:30:32 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1661</guid>
		<description><![CDATA[(image credit) Related posts: Use Excel to create easy batch jobs Use Excel to create easy batch jobs Use Excel to create easy batch jobs
Related posts:<ol>
<li><a href='http://everydaynerd.com/general/use-excel-to-create-easy-batch-jobs-2' rel='bookmark' title='Use Excel to create easy batch jobs'>Use Excel to create easy batch jobs</a></li>
<li><a href='http://everydaynerd.com/scripts/use-excel-to-create-easy-batch-jobs-3' rel='bookmark' title='Use Excel to create easy batch jobs'>Use Excel to create easy batch jobs</a></li>
<li><a href='http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs' rel='bookmark' title='Use Excel to create easy batch jobs'>Use Excel to create easy batch jobs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Eternal &quot;Flame&quot;" src="http://imgs.xkcd.com/comics/eternal_flame.gif" alt="" width="370" height="223" /></p>
<address>(<a href="http://xkcd.com/961/" target="_blank">image credit</a>)</address>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/general/use-excel-to-create-easy-batch-jobs-2' rel='bookmark' title='Use Excel to create easy batch jobs'>Use Excel to create easy batch jobs</a></li>
<li><a href='http://everydaynerd.com/scripts/use-excel-to-create-easy-batch-jobs-3' rel='bookmark' title='Use Excel to create easy batch jobs'>Use Excel to create easy batch jobs</a></li>
<li><a href='http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs' rel='bookmark' title='Use Excel to create easy batch jobs'>Use Excel to create easy batch jobs</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/O_OA_WZsBJBq7EKH4WkIsGt5Ox0/0/da"><img src="http://feedads.g.doubleclick.net/~a/O_OA_WZsBJBq7EKH4WkIsGt5Ox0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O_OA_WZsBJBq7EKH4WkIsGt5Ox0/1/da"><img src="http://feedads.g.doubleclick.net/~a/O_OA_WZsBJBq7EKH4WkIsGt5Ox0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=P5nmtl4sEwQ:ldrm79jyLZs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=P5nmtl4sEwQ:ldrm79jyLZs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=P5nmtl4sEwQ:ldrm79jyLZs:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=P5nmtl4sEwQ:ldrm79jyLZs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=P5nmtl4sEwQ:ldrm79jyLZs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=P5nmtl4sEwQ:ldrm79jyLZs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=P5nmtl4sEwQ:ldrm79jyLZs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=P5nmtl4sEwQ:ldrm79jyLZs:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=P5nmtl4sEwQ:ldrm79jyLZs:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/P5nmtl4sEwQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/general/r-i-p-steve-jobs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/general/r-i-p-steve-jobs</feedburner:origLink></item>
		<item>
		<title>PowerShell: Drive Space Info from multiple systems</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/LCJKRotpnmg/powershell-drive-space-info-from-multiple-systems</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-drive-space-info-from-multiple-systems#comments</comments>
		<pubDate>Wed, 28 Sep 2011 18:24:13 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1650</guid>
		<description><![CDATA[With PowerShell 2 came Powershell remoting and jobs, both of which are REALLY cool!  I&#8217;m going to show you two ways to get drive space info from multiple systems, first with a normal foreach loop, and then with remoting (which &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-drive-space-info-from-multiple-systems">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers' rel='bookmark' title='PowerShell: Get-Uptime for Computer(s)'>PowerShell: Get-Uptime for Computer(s)</a></li>
<li><a href='http://everydaynerd.com/how-to/easy-hyperlink-trick-for-windows-even-if-it-has-a-space-in-the-unc-path' rel='bookmark' title='Easy hyperlink trick for Windows (Even if it has a space in the UNC path)'>Easy hyperlink trick for Windows (Even if it has a space in the UNC path)</a></li>
<li><a href='http://everydaynerd.com/microsoft/create-multiple-rdp-files-with-powershell' rel='bookmark' title='Create multiple RDP files with Powershell'>Create multiple RDP files with Powershell</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>With PowerShell 2 came Powershell remoting and jobs, both of which are REALLY cool!  I&#8217;m going to show you two ways to get drive space info from multiple systems, first with a normal foreach loop, and then with remoting (which is basically a remote job).  Both methods use WMI class Win32_LogicalDisk to query the drives for information.</p>
<p>First, the old fashion foreach loop.  Notice the &#8220;Process&#8221; section &#8211; this in essence does a foreach of the $Identity &#8211; notice that in the parameter that the $Identity has  [object[]] in front of it.  Two things about this:  One, [] denotes an array, versus a single object.  Two, it&#8217;s object, instead of string, int or other data type.  Object allows the parameter to be just a string &#8211; a computer name (&#8220;SERVER01&#8243;), a string array (&#8220;SERVER01&#8243;, &#8220;SERVER02&#8243;), or even the identity from other objects (Get-ExchangeServer | GetDriveSpace).  I&#8217;ll be posting more in the future about parameters, and advanced functions (cmdletbinding).</p>
<pre class="brush: powershell; light: false; title: ; toolbar: true; notranslate">
Function GetDriveSpace
{
	[CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact=&quot;Low&quot;)]
	param (
	[parameter(Mandatory=$true,HelpMessage=&quot;ComputerName(s)&quot;,ValueFromPipeline=$true)]
	[Object[]]$Identity
	)
	Process
	{
		$Name = (Get-WmiObject -ComputerName $Identity win32_computersystem  | Select Name).Name.ToString()
		$drives = Get-WmiObject -ComputerName $Identity Win32_LogicalDisk | Where-Object {$_.DriveType -eq 3}

		foreach($drive in $drives)
		{
			$NewObjectProperties = @{
				ComputerName=$Name;`
				DriveLetter=$drive.DeviceID;`
				Label=($drive.VolumeName);`
				DriveSize=($drive.Size/1gb).ToString(&quot;0.00&quot;);`
				FreeSpaceMB=($drive.freespace/1GB).tostring(&quot;0.00&quot;);`
				PercentFree=((($drive.freespace/1GB)/($drive.size/1GB))*100).tostring(&quot;0.00&quot;)`
			}
			New-Object psobject -Property $NewObjectProperties
		}
	}

	GetDriveSpace -Identity SERVER01

		Returns Drive Space Info for SERVER01

		.EXAMPLE
		PS] C:\&gt;Get-MailboxServer | GetDriveSpace | FT

		Returns Drive Space Info for Exchange Mailbox Servers

		.EXAMPLE
		PS] C:\&gt;GetDriveSpace -Identity SERVER01, SERVER02 | FT -AutoSize

		Returns Drive Space Info for SERVER01 &amp; SERVER02

		.NOTES
		Function Name : GetDriveSpace
		Author : Dan Burgess
		Email: nerd@everydaynerd.com
		Script Requires:  Powershell 2.0 or higher
	#&gt;
}
</pre>
<p>Now, lets do the same thing, but this time with PowerShell remoting.  As before, the function is utilizing  CmdletBinding, Parameter, with a single param [object[]]$Identity, and the Process block, but an End block as well.  In the Process block, each server passed in the parameter has a remote job started with the Invoke-Command cmdlet, passing the script block with the code to query WMI to return the disk space information.  Note the -AsJob switch &#8211; this allows the invoke-command to work in the background, instead of waiting on the job to finish.  The End block then checks all the jobs, and waits till none of the jobs have a status of &#8220;Running&#8221; before issuing a &#8220;Receive-Job&#8221;.  This gathers all the returned values from each job that ran.  The -Keep leaves a copy of the results in the job queue &#8211; if receive-job is run with out this, the results are removed from the job status.</p>
<pre class="brush: powershell; light: false; title: ; toolbar: true; notranslate">
Function GetDriveSpace-Remoting
{
	[CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact=&quot;Low&quot;)]
	param (
	[parameter(Mandatory=$true,HelpMessage=&quot;ComputerName(s)&quot;,ValueFromPipeline=$true)]
	[Object[]]$Identity
	)
	Process
	{
		Invoke-Command -ComputerName $Identity -ScriptBlock {$drives = Get-WmiObject Win32_LogicalDisk | Where-Object {$_.DriveType -eq 3}
			foreach($drive in $drives)
			{
				$NewObjectProperties = @{
					DriveLetter=$drive.DeviceID;`
					Label=($drive.VolumeName);`
					DriveSizeMB=($drive.Size/1gb).ToString(&quot;0.00&quot;);`
					FreeSpaceMB=($drive.freespace/1GB).tostring(&quot;0.00&quot;);`
					PercentFree=((($drive.freespace/1GB)/($drive.size/1GB))*100).tostring(&quot;0.00&quot;)`
				}
				New-Object psobject -Property $NewObjectProperties
			}
		} -SessionOption (New-PSSessionOption -NoMachineProfile) -AsJob

	}
	End
	{
		While (Get-Job -State &quot;Running&quot;)
		{
			$i = ((Get-Job).Count) - ((Get-Job -State &quot;Running&quot;).count)
			$Progress = [int][Math]::Ceiling(($i / ((Get-Job).Count) * 100))
			Write-Progress -Activity &quot;Waiting on $(((Get-Job -State &quot;Running&quot;).count)) Jobs to finish&quot; -PercentComplete $progress -Status &quot;$($progress)% Complete&quot; -Id 1;
		}
		$Results = Get-Job | % {Receive-Job $_ }
		$Results
	}

	GetDriveSpace-Remoting -Identity SERVER01

		Returns Drive Space Info for SERVER01

		.EXAMPLE
		PS] C:\&gt;Get-MailboxServer | GetDriveSpace-Remoting | FT

		Returns Drive Space Info for Exchange Mailbox Servers

		.EXAMPLE
		PS] C:\&gt;GetDriveSpace-Remoting -Identity SERVER01, SERVER02 | FT -AutoSize

		Returns Drive Space Info for SERVER01 &amp; SERVER02

		.NOTES
		Function Name : GetDriveSpace-Remoting
		Author : Dan Burgess
		Email: nerd@everydaynerd.com
		Script Requires:  Powershell 2.0 or higher and WinRM enabled on remote hosts
	#&gt;
}
</pre>
<p>Both methods work, but in my tests, the remote function was MUCH faster when pulling from multiple systems.  For a list of 48 systems, the normal foreach loop took 30 seconds, while the remote function only took 5 seconds!!!</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers' rel='bookmark' title='PowerShell: Get-Uptime for Computer(s)'>PowerShell: Get-Uptime for Computer(s)</a></li>
<li><a href='http://everydaynerd.com/how-to/easy-hyperlink-trick-for-windows-even-if-it-has-a-space-in-the-unc-path' rel='bookmark' title='Easy hyperlink trick for Windows (Even if it has a space in the UNC path)'>Easy hyperlink trick for Windows (Even if it has a space in the UNC path)</a></li>
<li><a href='http://everydaynerd.com/microsoft/create-multiple-rdp-files-with-powershell' rel='bookmark' title='Create multiple RDP files with Powershell'>Create multiple RDP files with Powershell</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/tLuQAYWeldbH3hm-ETH1w_hKbRY/0/da"><img src="http://feedads.g.doubleclick.net/~a/tLuQAYWeldbH3hm-ETH1w_hKbRY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tLuQAYWeldbH3hm-ETH1w_hKbRY/1/da"><img src="http://feedads.g.doubleclick.net/~a/tLuQAYWeldbH3hm-ETH1w_hKbRY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LCJKRotpnmg:fwIPdy9MPfI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LCJKRotpnmg:fwIPdy9MPfI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LCJKRotpnmg:fwIPdy9MPfI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LCJKRotpnmg:fwIPdy9MPfI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=LCJKRotpnmg:fwIPdy9MPfI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LCJKRotpnmg:fwIPdy9MPfI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=LCJKRotpnmg:fwIPdy9MPfI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=LCJKRotpnmg:fwIPdy9MPfI:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=LCJKRotpnmg:fwIPdy9MPfI:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/LCJKRotpnmg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-drive-space-info-from-multiple-systems/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-drive-space-info-from-multiple-systems</feedburner:origLink></item>
		<item>
		<title>PowerShell: Change PS Window Size on the fly</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/Z4HkoygarIM/powershell-change-ps-window-size-on-the-fly</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly#comments</comments>
		<pubDate>Wed, 28 Sep 2011 10:00:34 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1637</guid>
		<description><![CDATA[First, my apologies for not posting ANYTHING to EverydayNerd since April 25, but hey, this is just for fun, and I DO have a day job I am going to be posting a LOT of PowerShell stuff here, as it &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/free-e-book-powershell' rel='bookmark' title='Free E-Book: PowerShell'>Free E-Book: PowerShell</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group' rel='bookmark' title='PowerShell: Move Windows Server 2008 Cluster Group'>PowerShell: Move Windows Server 2008 Cluster Group</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers' rel='bookmark' title='PowerShell: Get-Uptime for Computer(s)'>PowerShell: Get-Uptime for Computer(s)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>First, my apologies for not posting ANYTHING to EverydayNerd since April 25, but hey, this is just for fun, and I DO have a day job <img src='http://everydaynerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am going to be posting a LOT of PowerShell stuff here, as it has, over the last 6 months, become my best friend at the office! Thanks to <a href="http://blogs.technet.com/b/gary/" target="_blank">Gary Siepser</a>, I have gone from writing super simple scripts, to now, well trust me, it’s a day/night difference.</p>
<p>So I work on a laptop, but also dock, and when I un-dock my resolution changes – enough that I have scroll bars in my PowerShell window. This was really annoying, so I wrote a quick function that will change the window size on the fly.</p>
<p>I put these functions into my PowerShell profile, so I can call them whenever I need to change my PS window size. Works like a charm!  If you don&#8217;t know how to edit our PowerShell profile, just enter this in your shell:  notepad $Profile</p>
<p>Hope this helps, and stay tuned for more PowerShell goodies!</p>
<p>Source Code:</p>
<pre escaped="true">
<pre class="brush: powershell; light: false; title: ; toolbar: true; notranslate">
Function Set-Wide
{
	$aff = (Get-Host).UI.RawUI
	$bff = $aff.BufferSize
	$bff.Width = 170
	$bff.Height = 9000
	$aff.BufferSize = $bff
	$wff = $aff.WindowSize
	$wff.Width = 170
	$wff.Height = 60
	$aff.WindowSize = $wff
}

Function Set-Small
{
	$aff = (Get-Host).UI.RawUI
	$wff = $aff.WindowSize
	$wff.Width = 90
	$wff.Height = 45
	$aff.WindowSize = $wff
	$bff = $aff.BufferSize
	$bff.Width = 90
	$bff.Height = 9000
	$aff.BufferSize = $bff
}
</pre>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/free-e-book-powershell' rel='bookmark' title='Free E-Book: PowerShell'>Free E-Book: PowerShell</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-move-windows-server-2008-cluster-group' rel='bookmark' title='PowerShell: Move Windows Server 2008 Cluster Group'>PowerShell: Move Windows Server 2008 Cluster Group</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers' rel='bookmark' title='PowerShell: Get-Uptime for Computer(s)'>PowerShell: Get-Uptime for Computer(s)</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/NVYvLvzQaxQpOqwR0_7fqSN1X94/0/da"><img src="http://feedads.g.doubleclick.net/~a/NVYvLvzQaxQpOqwR0_7fqSN1X94/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NVYvLvzQaxQpOqwR0_7fqSN1X94/1/da"><img src="http://feedads.g.doubleclick.net/~a/NVYvLvzQaxQpOqwR0_7fqSN1X94/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Z4HkoygarIM:N2jqwCFIUZY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Z4HkoygarIM:N2jqwCFIUZY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Z4HkoygarIM:N2jqwCFIUZY:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Z4HkoygarIM:N2jqwCFIUZY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Z4HkoygarIM:N2jqwCFIUZY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Z4HkoygarIM:N2jqwCFIUZY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Z4HkoygarIM:N2jqwCFIUZY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Z4HkoygarIM:N2jqwCFIUZY:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Z4HkoygarIM:N2jqwCFIUZY:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/Z4HkoygarIM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-change-ps-window-size-on-the-fly</feedburner:origLink></item>
		<item>
		<title>THIS is why you don’t leave your Wi-Fi open</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/048dpGngH2k/this-is-why-you-dont-leave-your-wi-fi-open</link>
		<comments>http://everydaynerd.com/security/this-is-why-you-dont-leave-your-wi-fi-open#comments</comments>
		<pubDate>Mon, 25 Apr 2011 20:44:27 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/security/this-is-why-you-dont-leave-your-wi-fi-open</guid>
		<description><![CDATA[I’ve said this for years.&#160; It finally happened.&#160; Man leaves Wi-Fi open, allowing a pedophile to use his internet to download images.&#160; This prompted an FBI raid on the man’s house, and leaving the man a whole lot of explaining &#8230; <a class="more-link" href="http://everydaynerd.com/security/this-is-why-you-dont-leave-your-wi-fi-open">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/security/use-ssl' rel='bookmark' title='Use SSL!'>Use SSL!</a></li>
<li><a href='http://everydaynerd.com/general/wireless-security-must-read' rel='bookmark' title='Wireless Security &#8211; Must Read!'>Wireless Security &#8211; Must Read!</a></li>
<li><a href='http://everydaynerd.com/hardware/sandisk-flash-based-drives-for-laptops' rel='bookmark' title='SanDisk &#8211; Flash based drives for Laptops'>SanDisk &#8211; Flash based drives for Laptops</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; border-top: 0px; border-right: 0px; padding-top: 0px" border="0" src="http://everydaynerd.com/wp-content/uploads/2009/09/image5.png"></p>
<p>I’ve said this for years.&nbsp; It finally happened.&nbsp; Man leaves Wi-Fi open, allowing a pedophile to use his internet to download images.&nbsp; This prompted an FBI raid on the man’s house, and leaving the man a whole lot of explaining to do…</p>
<p>Please, please PLEASE – secure your Wi-Fi connection!!!</p>
<p>[ <a href="http://everydaynerd.com/howto/securewireless">How to secure your wireless</a> ]</p>
<p>[ <a href="http://news.yahoo.com/s/ap/20110424/ap_on_hi_te/us_wi_fi_warning" target="_blank">source</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/security/use-ssl' rel='bookmark' title='Use SSL!'>Use SSL!</a></li>
<li><a href='http://everydaynerd.com/general/wireless-security-must-read' rel='bookmark' title='Wireless Security &#8211; Must Read!'>Wireless Security &#8211; Must Read!</a></li>
<li><a href='http://everydaynerd.com/hardware/sandisk-flash-based-drives-for-laptops' rel='bookmark' title='SanDisk &#8211; Flash based drives for Laptops'>SanDisk &#8211; Flash based drives for Laptops</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/UHUjY95_6mGLIfNuinYzXuaj_qs/0/da"><img src="http://feedads.g.doubleclick.net/~a/UHUjY95_6mGLIfNuinYzXuaj_qs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/UHUjY95_6mGLIfNuinYzXuaj_qs/1/da"><img src="http://feedads.g.doubleclick.net/~a/UHUjY95_6mGLIfNuinYzXuaj_qs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=048dpGngH2k:uMrDAFpREY0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=048dpGngH2k:uMrDAFpREY0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=048dpGngH2k:uMrDAFpREY0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=048dpGngH2k:uMrDAFpREY0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=048dpGngH2k:uMrDAFpREY0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=048dpGngH2k:uMrDAFpREY0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=048dpGngH2k:uMrDAFpREY0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=048dpGngH2k:uMrDAFpREY0:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=048dpGngH2k:uMrDAFpREY0:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/048dpGngH2k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/security/this-is-why-you-dont-leave-your-wi-fi-open/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/security/this-is-why-you-dont-leave-your-wi-fi-open</feedburner:origLink></item>
		<item>
		<title>Facebook–Two Factor Authentication Coming Soon</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/zDaAqNpoMyI/facebooktwo-factor-authentication-coming-soon</link>
		<comments>http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon#comments</comments>
		<pubDate>Wed, 20 Apr 2011 15:12:10 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon</guid>
		<description><![CDATA[Following Google’s foot steps, Facebook is now rolling out two factor authentication.&#160; Two factor authentication adds a second password – or token number – required to log into your account.&#160; Basically, when you try to log into Facebook, you get &#8230; <a class="more-link" href="http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/security/facebook-security-bit-defender-safego' rel='bookmark' title='Facebook Security: Bit Defender SafeGo'>Facebook Security: Bit Defender SafeGo</a></li>
<li><a href='http://everydaynerd.com/microsoft/microsoft-releases-facebook-for-windows-mobile' rel='bookmark' title='Microsoft releases Facebook for Windows Mobile!'>Microsoft releases Facebook for Windows Mobile!</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/dpm/dpm-install-issue-error-3023-when-installing' rel='bookmark' title='DPM Install Issue: Error 3023 when installing'>DPM Install Issue: Error 3023 when installing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Following Google’s foot steps, Facebook is now rolling out two factor authentication.&nbsp; Two factor authentication adds a second password – or token number – required to log into your account.&nbsp; Basically, when you try to log into Facebook, you get a text message, with an additional password to complete your sign-on.&nbsp; Check out the Facebook Blog for details, and keep an eye out on your Facebook Account page for the availability!</p>
<p>[ <a href="https://blog.facebook.com/blog.php?post=10150153272607131" target="_blank">Facebook Blog</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/security/facebook-security-bit-defender-safego' rel='bookmark' title='Facebook Security: Bit Defender SafeGo'>Facebook Security: Bit Defender SafeGo</a></li>
<li><a href='http://everydaynerd.com/microsoft/microsoft-releases-facebook-for-windows-mobile' rel='bookmark' title='Microsoft releases Facebook for Windows Mobile!'>Microsoft releases Facebook for Windows Mobile!</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/dpm/dpm-install-issue-error-3023-when-installing' rel='bookmark' title='DPM Install Issue: Error 3023 when installing'>DPM Install Issue: Error 3023 when installing</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/NHk8xFjaCWBzJNCch-RwX_4cVD8/0/da"><img src="http://feedads.g.doubleclick.net/~a/NHk8xFjaCWBzJNCch-RwX_4cVD8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NHk8xFjaCWBzJNCch-RwX_4cVD8/1/da"><img src="http://feedads.g.doubleclick.net/~a/NHk8xFjaCWBzJNCch-RwX_4cVD8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=zDaAqNpoMyI:MVR6-tR5bE0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=zDaAqNpoMyI:MVR6-tR5bE0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=zDaAqNpoMyI:MVR6-tR5bE0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=zDaAqNpoMyI:MVR6-tR5bE0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=zDaAqNpoMyI:MVR6-tR5bE0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=zDaAqNpoMyI:MVR6-tR5bE0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=zDaAqNpoMyI:MVR6-tR5bE0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=zDaAqNpoMyI:MVR6-tR5bE0:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=zDaAqNpoMyI:MVR6-tR5bE0:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/zDaAqNpoMyI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon</feedburner:origLink></item>
		<item>
		<title>Firefox 4 for Android</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/L-1HB9xq44s/firefox-4-for-android</link>
		<comments>http://everydaynerd.com/firefox/firefox-4-for-android#comments</comments>
		<pubDate>Tue, 29 Mar 2011 19:33:59 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1614</guid>
		<description><![CDATA[Firefox has always been a favorite of mine, and well, so is Android.  Firefox for Android came out of beta, and can now be installed on you android device.  With it, you get Firefox Sync, add-ons tabbed browsing, and much &#8230; <a class="more-link" href="http://everydaynerd.com/firefox/firefox-4-for-android">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now' rel='bookmark' title='Get your EverydayNerd.com Android App NOW!'>Get your EverydayNerd.com Android App NOW!</a></li>
<li><a href='http://everydaynerd.com/general/297' rel='bookmark' title='Firefox 3 Release Candidate 1'>Firefox 3 Release Candidate 1</a></li>
<li><a href='http://everydaynerd.com/firefox/extension/firefox-plug-in-search-options' rel='bookmark' title='Firefox Plug-in: Search Options'>Firefox Plug-in: Search Options</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://everydaynerd.com/wp-content/uploads/2011/03/Firefox.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Firefox" src="http://everydaynerd.com/wp-content/uploads/2011/03/Firefox_thumb.png" border="0" alt="Firefox" width="104" height="104" /></a></p>
<p>Firefox has always been a favorite of mine, and well, so is Android.  Firefox for Android came out of beta, and can now be installed on you android device.  With it, you get Firefox Sync, add-ons tabbed browsing, and much more!</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2011/03/ss-1-320-480-160-2-771a77c195383c899338828983f225b8f19fb8e6.jpg"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="ss-1-320-480-160-2-771a77c195383c899338828983f225b8f19fb8e6" src="http://everydaynerd.com/wp-content/uploads/2011/03/ss-1-320-480-160-2-771a77c195383c899338828983f225b8f19fb8e6_thumb.jpg" border="0" alt="ss-1-320-480-160-2-771a77c195383c899338828983f225b8f19fb8e6" width="148" height="244" /></a><a href="http://everydaynerd.com/wp-content/uploads/2011/03/ss-0-320-480-160-2-759cbd5ce06c828878b004b4e1ff759548c0b938.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="ss-0-320-480-160-2-759cbd5ce06c828878b004b4e1ff759548c0b938" src="http://everydaynerd.com/wp-content/uploads/2011/03/ss-0-320-480-160-2-759cbd5ce06c828878b004b4e1ff759548c0b938_thumb.jpg" border="0" alt="ss-0-320-480-160-2-759cbd5ce06c828878b004b4e1ff759548c0b938" width="148" height="244" /></a></p>
<p>[ <a href="https://market.android.com/details?id=org.mozilla.firefox" target="_blank">Firefox 4 – Android Market</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now' rel='bookmark' title='Get your EverydayNerd.com Android App NOW!'>Get your EverydayNerd.com Android App NOW!</a></li>
<li><a href='http://everydaynerd.com/general/297' rel='bookmark' title='Firefox 3 Release Candidate 1'>Firefox 3 Release Candidate 1</a></li>
<li><a href='http://everydaynerd.com/firefox/extension/firefox-plug-in-search-options' rel='bookmark' title='Firefox Plug-in: Search Options'>Firefox Plug-in: Search Options</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/RfoM2rwALG6lGxAoNl6ayuDbcII/0/da"><img src="http://feedads.g.doubleclick.net/~a/RfoM2rwALG6lGxAoNl6ayuDbcII/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RfoM2rwALG6lGxAoNl6ayuDbcII/1/da"><img src="http://feedads.g.doubleclick.net/~a/RfoM2rwALG6lGxAoNl6ayuDbcII/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=L-1HB9xq44s:LFnsTDDyYhI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=L-1HB9xq44s:LFnsTDDyYhI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=L-1HB9xq44s:LFnsTDDyYhI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=L-1HB9xq44s:LFnsTDDyYhI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=L-1HB9xq44s:LFnsTDDyYhI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=L-1HB9xq44s:LFnsTDDyYhI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=L-1HB9xq44s:LFnsTDDyYhI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=L-1HB9xq44s:LFnsTDDyYhI:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=L-1HB9xq44s:LFnsTDDyYhI:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/L-1HB9xq44s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/firefox/firefox-4-for-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/firefox/firefox-4-for-android</feedburner:origLink></item>
		<item>
		<title>Amazon Cloud Player – 5GB free!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/SrFZIrCh2x8/amazon-cloud-player-5gb-free</link>
		<comments>http://everydaynerd.com/general/muisic/amazon-cloud-player-5gb-free#comments</comments>
		<pubDate>Tue, 29 Mar 2011 06:14:39 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/general/muisic/amazon-cloud-player-5gb-free</guid>
		<description><![CDATA[So while everyone is waiting around for Google Music to go live, Amazon comes out and goes live with Amazon Cloud Player!&#160; Stream your music from the web to your computer or Android device – all you need is an &#8230; <a class="more-link" href="http://everydaynerd.com/general/muisic/amazon-cloud-player-5gb-free">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/get-windows-live-onecare-for-free-from-amazon' rel='bookmark' title='Get Windows Live OneCare for Free from Amazon'>Get Windows Live OneCare for Free from Amazon</a></li>
<li><a href='http://everydaynerd.com/microsoft/web/live/skydrive-is-live-and-5gb-large' rel='bookmark' title='Skydrive is Live, and 5GB Large'>Skydrive is Live, and 5GB Large</a></li>
<li><a href='http://everydaynerd.com/software/free/free-kiosk-utility-for-windows' rel='bookmark' title='Free Kiosk Utility for Windows'>Free Kiosk Utility for Windows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="amzn-cloud-player" border="0" alt="amzn-cloud-player" src="http://everydaynerd.com/wp-content/uploads/2011/03/amzn-cloud-player.jpg" width="479" height="368"></p>
<p>So while everyone is waiting around for Google Music to go live, Amazon comes out and goes live with Amazon Cloud Player!&nbsp; Stream your music from the web to your computer or Android device – all you need is an Amazon account (free).&nbsp; All users get 5GB of space for free, and option to purchase more at a very reasonable price!&nbsp; Comes with a great utility that will automatically upload your music from your computer to the cloud.</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2011/03/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2011/03/image_thumb.png" width="609" height="380"></a></p>
<p>Nice addition, any mp3 albums purchased on Amazon are automatically stored on your Cloud Drive, but <strong>don’t</strong> count against your quota.&nbsp; Also, if you purchase an album, you get one year of 20GB storage for free!&nbsp; (<a href="http://www.amazon.com/gp/feature.html/?ie=UTF8&amp;docId=1000667531" target="_blank">Details on 20GB promo</a>) Not bad!</p>
<p>[ <a href="http://www.amazon.com/b/ref=amb_link_355091782_4?ie=UTF8&amp;node=2658409011&amp;pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=center-2&amp;pf_rd_r=049EMNTK3XADJAYJWC7E&amp;pf_rd_t=101&amp;pf_rd_p=1291940422&amp;pf_rd_i=163856011" target="_blank">Amazon Cloud Player</a> ]</p>
<p>[ <a href="https://www.amazon.com/clouddrive/learnmore" target="_blank">Learn more about Cloud Drive</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/get-windows-live-onecare-for-free-from-amazon' rel='bookmark' title='Get Windows Live OneCare for Free from Amazon'>Get Windows Live OneCare for Free from Amazon</a></li>
<li><a href='http://everydaynerd.com/microsoft/web/live/skydrive-is-live-and-5gb-large' rel='bookmark' title='Skydrive is Live, and 5GB Large'>Skydrive is Live, and 5GB Large</a></li>
<li><a href='http://everydaynerd.com/software/free/free-kiosk-utility-for-windows' rel='bookmark' title='Free Kiosk Utility for Windows'>Free Kiosk Utility for Windows</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/t-dirkIXzipPkHkrH5hMA9HZxsk/0/da"><img src="http://feedads.g.doubleclick.net/~a/t-dirkIXzipPkHkrH5hMA9HZxsk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/t-dirkIXzipPkHkrH5hMA9HZxsk/1/da"><img src="http://feedads.g.doubleclick.net/~a/t-dirkIXzipPkHkrH5hMA9HZxsk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=SrFZIrCh2x8:AoyBK8hEAeM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=SrFZIrCh2x8:AoyBK8hEAeM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=SrFZIrCh2x8:AoyBK8hEAeM:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=SrFZIrCh2x8:AoyBK8hEAeM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=SrFZIrCh2x8:AoyBK8hEAeM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=SrFZIrCh2x8:AoyBK8hEAeM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=SrFZIrCh2x8:AoyBK8hEAeM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=SrFZIrCh2x8:AoyBK8hEAeM:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=SrFZIrCh2x8:AoyBK8hEAeM:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/SrFZIrCh2x8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/general/muisic/amazon-cloud-player-5gb-free/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/general/muisic/amazon-cloud-player-5gb-free</feedburner:origLink></item>
		<item>
		<title>Exchange PowerShell Script: Get Mailbox Count by Database</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/Hlx37yBRYCY/exchange-powershell-script-get-mailbox-count-by-database</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/powershell/exchange-powershell-script-get-mailbox-count-by-database#comments</comments>
		<pubDate>Sat, 26 Mar 2011 17:20:55 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/microsoft/software-microsoft/powershell/exchange-powershell-script-get-mailbox-count-by-database</guid>
		<description><![CDATA[&#160; Here’s a PowerShell script that does a quick count of mailboxes on each database of a server, or all servers – depending if you specify the server name as a script parameter. ** Updated:&#160; I made some improvements to &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/powershell/exchange-powershell-script-get-mailbox-count-by-database">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/script-to-find-whitespace-on-all-exchange-2007-servers' rel='bookmark' title='Script to Find Whitespace on all Exchange 2007 Servers'>Script to Find Whitespace on all Exchange 2007 Servers</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/script-get-time-of-exchange-last-online-defrag' rel='bookmark' title='Script: Get time of Exchange last online defrag'>Script: Get time of Exchange last online defrag</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-script-display-exchange-2007-queue-by-site' rel='bookmark' title='Powershell Script: Display Exchange 2007 Queue by Site'>Powershell Script: Display Exchange 2007 Queue by Site</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://everydaynerd.com/wp-content/uploads/2010/07/exchange2k7.png">&nbsp;<img src="http://everydaynerd.com/wp-content/uploads/2011/03/windows_powershell_icon-e1301251108185.png"></p>
<p>Here’s a PowerShell script that does a quick count of mailboxes on each database of a server, or all servers – depending if you specify the server name as a script parameter.</p>
<p>** Updated:&nbsp; I made some improvements to the script, and have posted the updated code.&nbsp; One notable items is that I separated the count of mailboxes and disconnected mailboxes.&nbsp; Previously, the count included both mailboxes and disconnected mailboxes.&nbsp; This may skew the numbers a bit, depending on what&nbsp; you are looking for.</p>
<div style="border-bottom: silver 1px solid; text-align: left; border-left: silver 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: 'Courier New', courier, monospace; direction: ltr; max-height: 200px; font-size: 8pt; overflow: auto; border-top: silver 1px solid; cursor: text; border-right: silver 1px solid; padding-top: 4px" id="codeSnippetWrapper">
<div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px" id="codeSnippet">
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum1">   1:</span> <span style="color: #008000">#=================================================================================================</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum2">   2:</span> <span style="color: #008000"># NAME: Get-MailboxCountPerDatabase.ps1</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum3">   3:</span> <span style="color: #008000">#</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum4">   4:</span> <span style="color: #008000"># AUTHOR:  Dan B.</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum5">   5:</span> <span style="color: #008000"># EMAIL:   Nerd@EverydayNerd.com </span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum6">   6:</span> <span style="color: #008000"># DATE:    03/27/2011</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum7">   7:</span> <span style="color: #008000"># Version: 1.0</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum8">   8:</span> <span style="color: #008000">#</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum9">   9:</span> <span style="color: #008000"># COMMENT: Script to return the count of mailboxes on each server by database</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum10">  10:</span> <span style="color: #008000">#</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum11">  11:</span> <span style="color: #008000">#=================================== Change Log ==================================================</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum12">  12:</span> <span style="color: #008000"># Version 1.0</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum13">  13:</span> <span style="color: #008000"># -Initial script</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum14">  14:</span> <span style="color: #008000"># -Changed output to an array instead of just write-host</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum15">  15:</span> <span style="color: #008000"># -Added total count to single server</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum16">  16:</span> <span style="color: #008000">#</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum17">  17:</span> <span style="color: #008000">#=================================================================================================</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum18">  18:</span> <span style="color: #008000"># Script Paramaters to allow server name to be typed after the script name.   If no Param, all servers are returned</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum19">  19:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum20">  20:</span> <span style="color: #0000ff">param</span>([string] $Param )     </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum21">  21:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum22">  22:</span> $Results = @()</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum23">  23:</span> $CountMB = 0</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum24">  24:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum25">  25:</span> <span style="color: #0000ff">if</span>(!$<span style="color: #0000ff">param</span>)</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum26">  26:</span>     {</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum27">  27:</span>         $Servers = Get-ExchangeServer | Where {$_.ServerRole <span style="color: #cc6633">-eq</span> <span style="color: #006080">"Mailbox"</span>} | Sort Name</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum28">  28:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum29">  29:</span>         Foreach($Server <span style="color: #0000ff">in</span> $Servers)</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum30">  30:</span>             {</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum31">  31:</span>                 $dbs = Get-MailboxDatabase -server $Server | Sort Name</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum32">  32:</span>                 </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum33">  33:</span>                 <span style="color: #0000ff">foreach</span>($db <span style="color: #0000ff">in</span> $dbs)</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum34">  34:</span>                     {</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum35">  35:</span>                         $mb = Get-MailboxStatistics -Database $db | Where {$_.DisconnectDate <span style="color: #cc6633">-eq</span> $null -and $_.ObjectClass <span style="color: #cc6633">-eq</span> <span style="color: #006080">'Mailbox'</span>} | Measure-Object</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum36">  36:</span>                         $mbdis = Get-MailboxStatistics -Database $db | Where {$_.DisconnectDate <span style="color: #cc6633">-ne</span> $null -and $_.ObjectClass <span style="color: #cc6633">-eq</span> <span style="color: #006080">'Mailbox'</span>} | Measure-Object</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum37">  37:</span>                         </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum38">  38:</span>                         Write-Host <span style="color: #006080">"$($Server) `t $($db.name)`t $($a.count)"</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum39">  39:</span>                         </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum40">  40:</span>                         $Obj = New-Object PSObject</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum41">  41:</span>                         $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Server"</span> -Value $Server</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum42">  42:</span>                         $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Database"</span> -Value $db.Name</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum43">  43:</span>                         $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Mailboxes"</span> -Value $mb.count</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum44">  44:</span>                         $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Disconnected Mailboxes"</span> -Value $mbdis.count</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum45">  45:</span>                         $Results += $Obj</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum46">  46:</span>                     }</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum47">  47:</span>             }</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum48">  48:</span>     }</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum49">  49:</span> <span style="color: #0000ff">else</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum50">  50:</span>     {</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum51">  51:</span>     $server = $<span style="color: #0000ff">param</span></pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum52">  52:</span>         $dbs = Get-MailboxDatabase -server $Server | Sort Name</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum53">  53:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum54">  54:</span>         <span style="color: #0000ff">foreach</span>($db <span style="color: #0000ff">in</span> $dbs)</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum55">  55:</span>             {</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum56">  56:</span>                 $mb = Get-MailboxStatistics -Database $db | Where {$_.DisconnectDate <span style="color: #cc6633">-eq</span> $null -and $_.ObjectClass <span style="color: #cc6633">-eq</span> <span style="color: #006080">'Mailbox'</span>} | Measure-Object</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum57">  57:</span>                 $mbdis = Get-MailboxStatistics -Database $db | Where {$_.DisconnectDate <span style="color: #cc6633">-ne</span> $null -and $_.ObjectClass <span style="color: #cc6633">-eq</span> <span style="color: #006080">'Mailbox'</span>} | Measure-Object</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum58">  58:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum59">  59:</span>                 $Obj = New-Object PSObject</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum60">  60:</span>                 $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Server"</span> -Value $Server</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum61">  61:</span>                 $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Database"</span> -Value $db.Name</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum62">  62:</span>                 $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Mailboxes"</span> -Value $mb.count</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum63">  63:</span>                 $Obj | Add-Member NoteProperty -Name <span style="color: #006080">"Disconnected Mailboxes"</span> -Value $mbdis.count</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum64">  64:</span>                 $Results += $Obj</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum65">  65:</span>                 $countmb += $mb.count</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum66">  66:</span>                 </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum67">  67:</span>             }</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum68">  68:</span>         Write-Host</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum69">  69:</span>         Write-Host <span style="color: #006080">"$($Server) has a total of $($CountMB) mailboxes"</span> -ForegroundColor Green</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum70">  70:</span>     }</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum71">  71:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum72">  72:</span> $Results | FT -AutoSize</pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum73">  73:</span>  </pre>
<p><!--CRLF-->
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum74">  74:</span> <span style="color: #008000">#===================================== End of Script ==============================================</span></pre>
<p><!--CRLF--></div>
</div>
<p>Script can be downloaded here:&nbsp; <a href="http://everydaynerd.com/files/Get-MailboxCountPerDatabase.ps1" target="_blank">Get-MailboxCountPerDatabase.ps1</a></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/script-to-find-whitespace-on-all-exchange-2007-servers' rel='bookmark' title='Script to Find Whitespace on all Exchange 2007 Servers'>Script to Find Whitespace on all Exchange 2007 Servers</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/script-get-time-of-exchange-last-online-defrag' rel='bookmark' title='Script: Get time of Exchange last online defrag'>Script: Get time of Exchange last online defrag</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-script-display-exchange-2007-queue-by-site' rel='bookmark' title='Powershell Script: Display Exchange 2007 Queue by Site'>Powershell Script: Display Exchange 2007 Queue by Site</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/sgoYzKv0u50Rs47gb3QClBJI1kE/0/da"><img src="http://feedads.g.doubleclick.net/~a/sgoYzKv0u50Rs47gb3QClBJI1kE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sgoYzKv0u50Rs47gb3QClBJI1kE/1/da"><img src="http://feedads.g.doubleclick.net/~a/sgoYzKv0u50Rs47gb3QClBJI1kE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Hlx37yBRYCY:Lvi6xdrhClc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Hlx37yBRYCY:Lvi6xdrhClc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Hlx37yBRYCY:Lvi6xdrhClc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Hlx37yBRYCY:Lvi6xdrhClc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Hlx37yBRYCY:Lvi6xdrhClc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Hlx37yBRYCY:Lvi6xdrhClc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Hlx37yBRYCY:Lvi6xdrhClc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Hlx37yBRYCY:Lvi6xdrhClc:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Hlx37yBRYCY:Lvi6xdrhClc:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/Hlx37yBRYCY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/powershell/exchange-powershell-script-get-mailbox-count-by-database/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/software-microsoft/powershell/exchange-powershell-script-get-mailbox-count-by-database</feedburner:origLink></item>
		<item>
		<title>Get your EverydayNerd.com Android App NOW!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/aUg1lRTBS0Y/get-your-everydaynerd-com-android-app-now</link>
		<comments>http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now#comments</comments>
		<pubDate>Sat, 26 Mar 2011 03:45:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now</guid>
		<description><![CDATA[For all you Android users out there, you can now have content from EverydayNerd delivered directly to your Android device!&#160; Just hit up the link below for the Market Website, or use the QR code below to install from your &#8230; <a class="more-link" href="http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/firefox/firefox-4-for-android' rel='bookmark' title='Firefox 4 for Android'>Firefox 4 for Android</a></li>
<li><a href='http://everydaynerd.com/google/finally-google-apps-for-your-domain-mobile-app' rel='bookmark' title='Finally: Google Apps for your Domain &#8211; Mobile App'>Finally: Google Apps for your Domain &#8211; Mobile App</a></li>
<li><a href='http://everydaynerd.com/software/install-freeware-from-command-line' rel='bookmark' title='Install Freeware from Command line'>Install Freeware from Command line</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://everydaynerd.com/wp-content/uploads/2011/03/EDN_Heart_Android.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="EDN_Heart_Android" border="0" alt="EDN_Heart_Android" src="http://everydaynerd.com/wp-content/uploads/2011/03/EDN_Heart_Android_thumb.png" width="600" height="247"></a></p>
<p>For all you Android users out there, you can now have content from EverydayNerd delivered directly to your Android device!&nbsp; Just hit up the link below for the Market Website, or use the QR code below to install from your phone!</p>
<p>Ring the church bells, wake up the neighbors, tell everyone you know – it’s FREE!!!</p>
<p><a href="http://goo.gl/gmRr3" target="_blank"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="EverydayNerd.com on Android Market" border="0" alt="EverydayNerd.com on Android Market" src="http://everydaynerd.com/wp-content/uploads/2011/03/snap20110325_232836.png" width="292" height="481"></a></p>
<p>Download [ <a href="http://goo.gl/gmRr3" target="_blank">Market</a> ]&nbsp; FREE!!!!</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2011/03/QRCode.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="QRCode" border="0" alt="QRCode" src="http://everydaynerd.com/wp-content/uploads/2011/03/QRCode_thumb.png" width="150" height="150"></a></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/firefox/firefox-4-for-android' rel='bookmark' title='Firefox 4 for Android'>Firefox 4 for Android</a></li>
<li><a href='http://everydaynerd.com/google/finally-google-apps-for-your-domain-mobile-app' rel='bookmark' title='Finally: Google Apps for your Domain &#8211; Mobile App'>Finally: Google Apps for your Domain &#8211; Mobile App</a></li>
<li><a href='http://everydaynerd.com/software/install-freeware-from-command-line' rel='bookmark' title='Install Freeware from Command line'>Install Freeware from Command line</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/rgzRIxDMrLvXBxMPiMcPugbAn8Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/rgzRIxDMrLvXBxMPiMcPugbAn8Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rgzRIxDMrLvXBxMPiMcPugbAn8Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/rgzRIxDMrLvXBxMPiMcPugbAn8Y/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=aUg1lRTBS0Y:FQ0iwxO4vfg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=aUg1lRTBS0Y:FQ0iwxO4vfg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=aUg1lRTBS0Y:FQ0iwxO4vfg:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=aUg1lRTBS0Y:FQ0iwxO4vfg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=aUg1lRTBS0Y:FQ0iwxO4vfg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=aUg1lRTBS0Y:FQ0iwxO4vfg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=aUg1lRTBS0Y:FQ0iwxO4vfg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=aUg1lRTBS0Y:FQ0iwxO4vfg:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=aUg1lRTBS0Y:FQ0iwxO4vfg:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/aUg1lRTBS0Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/google/android/get-your-everydaynerd-com-android-app-now</feedburner:origLink></item>
		<item>
		<title>Firefox 4 is HERE!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/f6gccw-Vlek/firefox-4-is-here</link>
		<comments>http://everydaynerd.com/firefox/firefox-4-is-here#comments</comments>
		<pubDate>Mon, 21 Mar 2011 19:13:52 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/firefox/firefox-4-is-here</guid>
		<description><![CDATA[So I’m a huge fan of Firefox (although recently been using Chrome almost all the time) but now that Firefox 4 is out of Beta, there’s a good chance I’ll be switching back to Firefox! Download it here from a &#8230; <a class="more-link" href="http://everydaynerd.com/firefox/firefox-4-is-here">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/firefox/firefox-4-for-android' rel='bookmark' title='Firefox 4 for Android'>Firefox 4 for Android</a></li>
<li><a href='http://everydaynerd.com/firefox/firefox-3-5-out-now' rel='bookmark' title='Firefox 3.5 out now!'>Firefox 3.5 out now!</a></li>
<li><a href='http://everydaynerd.com/firefox/download-firefox-3-today' rel='bookmark' title='Download Firefox 3 Today!'>Download Firefox 3 Today!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://everydaynerd.com/wp-content/uploads/2011/03/SNAGHTMLb8de6e1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="SNAGHTMLb8de6e1" border="0" alt="SNAGHTMLb8de6e1" src="http://everydaynerd.com/wp-content/uploads/2011/03/SNAGHTMLb8de6e1_thumb.png" width="644" height="432"></a></p>
<p>So I’m a huge fan of Firefox (although recently been using Chrome almost all the time) but now that Firefox 4 is out of Beta, there’s a good chance I’ll be switching back to Firefox!</p>
<p>Download it here from a random mirror: <a href="http://download.mozilla.org/?product=firefox-4.0&amp;os=win&amp;lang=en-US">Windows</a> /<a href="http://download.mozilla.org/?product=firefox-4.0&amp;os=osx&amp;lang=en-US">Mac OS X</a> / <a href="http://download.mozilla.org/?product=firefox-4.0&amp;os=linux&amp;lang=en-US">Linux</a>.</p>
<p>The official launch is 3/22/2011.</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/firefox/firefox-4-for-android' rel='bookmark' title='Firefox 4 for Android'>Firefox 4 for Android</a></li>
<li><a href='http://everydaynerd.com/firefox/firefox-3-5-out-now' rel='bookmark' title='Firefox 3.5 out now!'>Firefox 3.5 out now!</a></li>
<li><a href='http://everydaynerd.com/firefox/download-firefox-3-today' rel='bookmark' title='Download Firefox 3 Today!'>Download Firefox 3 Today!</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/GYHjt5ZS3XUkI2UziMEvv65lQmw/0/da"><img src="http://feedads.g.doubleclick.net/~a/GYHjt5ZS3XUkI2UziMEvv65lQmw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GYHjt5ZS3XUkI2UziMEvv65lQmw/1/da"><img src="http://feedads.g.doubleclick.net/~a/GYHjt5ZS3XUkI2UziMEvv65lQmw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=f6gccw-Vlek:2w-zIFedT6w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=f6gccw-Vlek:2w-zIFedT6w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=f6gccw-Vlek:2w-zIFedT6w:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=f6gccw-Vlek:2w-zIFedT6w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=f6gccw-Vlek:2w-zIFedT6w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=f6gccw-Vlek:2w-zIFedT6w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=f6gccw-Vlek:2w-zIFedT6w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=f6gccw-Vlek:2w-zIFedT6w:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=f6gccw-Vlek:2w-zIFedT6w:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/f6gccw-Vlek" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/firefox/firefox-4-is-here/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/firefox/firefox-4-is-here</feedburner:origLink></item>
		<item>
		<title>Uninstall IE 9 Beta on Windows 7</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/cnfHpoYM9vg/uninstall-ie-9-beta-on-windows-7</link>
		<comments>http://everydaynerd.com/microsoft/windows/7/uninstall-ie-9-beta-on-windows-7#comments</comments>
		<pubDate>Wed, 08 Dec 2010 13:18:42 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/microsoft/windows/7/uninstall-ie-9-beta-on-windows-7</guid>
		<description><![CDATA[So you have a Internet Explroer 9 Beta that you would like to roll back on Windows 7 (IE 9 Beta is considered a update not a program). Press Win+R (the run and paste in the following: C:\Windows\explorer.exe shell:::{d450a8a1-9568-45c7-9c0e-b4f9fb4537bd}then press &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/windows/7/uninstall-ie-9-beta-on-windows-7">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/ie/internet-explorer-8-released-goodbye-beta' rel='bookmark' title='Internet Explorer 8 Released! (Goodbye Beta)'>Internet Explorer 8 Released! (Goodbye Beta)</a></li>
<li><a href='http://everydaynerd.com/microsoft/download-windows-7-beta-now' rel='bookmark' title='Download Windows 7 Beta Now!'>Download Windows 7 Beta Now!</a></li>
<li><a href='http://everydaynerd.com/microsoft/get-windows-7-beta' rel='bookmark' title='Get Windows 7 Beta'>Get Windows 7 Beta</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So you have a Internet Explroer 9 Beta that you would like to roll back on Windows 7 (IE 9 Beta is considered a update not a program).</p>
<ol>
<li>Press <strong>Win+R </strong>(the run and paste in the following: <strong><br />C:\Windows\explorer.exe shell:::{d450a8a1-9568-45c7-9c0e-b4f9fb4537bd}<br /></strong>then press <strong>Enter.<br /></strong>
<li>wait for the Uninstall an update screen to load completely
<li>scroll through the list until you find <strong>Windows Internet Explorer 9</strong>
<li>click once to highlight IE9, then click the Uninstall button (or right-click and uninstall)
<li>confirm that you want to uninstall (click yes)</li>
</ol>
<p>That’s it!</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/ie/internet-explorer-8-released-goodbye-beta' rel='bookmark' title='Internet Explorer 8 Released! (Goodbye Beta)'>Internet Explorer 8 Released! (Goodbye Beta)</a></li>
<li><a href='http://everydaynerd.com/microsoft/download-windows-7-beta-now' rel='bookmark' title='Download Windows 7 Beta Now!'>Download Windows 7 Beta Now!</a></li>
<li><a href='http://everydaynerd.com/microsoft/get-windows-7-beta' rel='bookmark' title='Get Windows 7 Beta'>Get Windows 7 Beta</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/BibxLTg2pcVdeByEaYTjOO0QnS4/0/da"><img src="http://feedads.g.doubleclick.net/~a/BibxLTg2pcVdeByEaYTjOO0QnS4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BibxLTg2pcVdeByEaYTjOO0QnS4/1/da"><img src="http://feedads.g.doubleclick.net/~a/BibxLTg2pcVdeByEaYTjOO0QnS4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=cnfHpoYM9vg:7uSEhV6EUrI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=cnfHpoYM9vg:7uSEhV6EUrI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=cnfHpoYM9vg:7uSEhV6EUrI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=cnfHpoYM9vg:7uSEhV6EUrI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=cnfHpoYM9vg:7uSEhV6EUrI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=cnfHpoYM9vg:7uSEhV6EUrI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=cnfHpoYM9vg:7uSEhV6EUrI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=cnfHpoYM9vg:7uSEhV6EUrI:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=cnfHpoYM9vg:7uSEhV6EUrI:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/cnfHpoYM9vg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/windows/7/uninstall-ie-9-beta-on-windows-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/windows/7/uninstall-ie-9-beta-on-windows-7</feedburner:origLink></item>
		<item>
		<title>Google BeatBox</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/PINl8_8KtgE/google-beatbox</link>
		<comments>http://everydaynerd.com/google/google-beatbox#comments</comments>
		<pubDate>Wed, 01 Dec 2010 15:36:34 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/google/google-beatbox</guid>
		<description><![CDATA[Found this morning…. and laughed out loud.. no really, I did… Go to Google Translate Set the translator to translate from German to German Copy and paste this string in the text to be translated box: pv zk pv pv &#8230; <a class="more-link" href="http://everydaynerd.com/google/google-beatbox">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/google/google-linux-repositories' rel='bookmark' title='Google Linux Repositories'>Google Linux Repositories</a></li>
<li><a href='http://everydaynerd.com/google/google-releases-a-new-browser-meet-google-chrome' rel='bookmark' title='Google releases a new Browser! Meet Google Chrome'>Google releases a new Browser! Meet Google Chrome</a></li>
<li><a href='http://everydaynerd.com/google/google-chrome-eula-welcome-to-the-dark-side' rel='bookmark' title='Google Chrome EULA &#8211; Welcome to the dark side'>Google Chrome EULA &#8211; Welcome to the dark side</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Found this morning…. and laughed out loud.. no really, I did… <img src='http://everydaynerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
<ul>
<li>Go to <a href="http://translate.google.com/">Google Translate</a></li>
<li>Set the translator to translate from German to German</li>
<li>Copy and paste this string in the text to be translated box: pv zk pv pv zk pv zk kz zk pv pv pv zk pv zk zk pzk pzk pvzkpvpzk kkkkk bsch</li>
<li>Press the translate button and then hit “Listen.”</li>
</ul>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/google/google-linux-repositories' rel='bookmark' title='Google Linux Repositories'>Google Linux Repositories</a></li>
<li><a href='http://everydaynerd.com/google/google-releases-a-new-browser-meet-google-chrome' rel='bookmark' title='Google releases a new Browser! Meet Google Chrome'>Google releases a new Browser! Meet Google Chrome</a></li>
<li><a href='http://everydaynerd.com/google/google-chrome-eula-welcome-to-the-dark-side' rel='bookmark' title='Google Chrome EULA &#8211; Welcome to the dark side'>Google Chrome EULA &#8211; Welcome to the dark side</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/ixFWAVA6yKPYnMrbL6u1wWIR690/0/da"><img src="http://feedads.g.doubleclick.net/~a/ixFWAVA6yKPYnMrbL6u1wWIR690/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ixFWAVA6yKPYnMrbL6u1wWIR690/1/da"><img src="http://feedads.g.doubleclick.net/~a/ixFWAVA6yKPYnMrbL6u1wWIR690/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=PINl8_8KtgE:vbBhVUmLuv8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=PINl8_8KtgE:vbBhVUmLuv8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=PINl8_8KtgE:vbBhVUmLuv8:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=PINl8_8KtgE:vbBhVUmLuv8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=PINl8_8KtgE:vbBhVUmLuv8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=PINl8_8KtgE:vbBhVUmLuv8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=PINl8_8KtgE:vbBhVUmLuv8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=PINl8_8KtgE:vbBhVUmLuv8:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=PINl8_8KtgE:vbBhVUmLuv8:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/PINl8_8KtgE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/google/google-beatbox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/google/google-beatbox</feedburner:origLink></item>
		<item>
		<title>WinX HD Video Converter Deluxe Halloween Free Givaway</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/3NTI7IMrdWs/winx-hd-video-converter-deluxe-halloween-free-givaway</link>
		<comments>http://everydaynerd.com/software/free/winx-hd-video-converter-deluxe-halloween-free-givaway#comments</comments>
		<pubDate>Mon, 01 Nov 2010 03:49:12 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Free]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/software/free/winx-hd-video-converter-deluxe-halloween-free-givaway</guid>
		<description><![CDATA[I Love free software!&#160; WinX Video Converter is a GREAT video encoder, and can encode any video to virtually any format you need!&#160; Get it free until November 4th! [ WinX DVD ] Related posts: FREE WinX HD Video Converter &#8230; <a class="more-link" href="http://everydaynerd.com/software/free/winx-hd-video-converter-deluxe-halloween-free-givaway">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/free-winx-hd-video-converter' rel='bookmark' title='FREE WinX HD Video Converter'>FREE WinX HD Video Converter</a></li>
<li><a href='http://everydaynerd.com/hardware/dvd/free-dvd-software-from-winx' rel='bookmark' title='Free DVD Software from WinX'>Free DVD Software from WinX</a></li>
<li><a href='http://everydaynerd.com/software/free/convert-any-video-or-audio-format-with-quick-media-converter' rel='bookmark' title='Convert any Video or Audio format with Quick Media Converter'>Convert any Video or Audio format with Quick Media Converter</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img alt="WinX HD Video Converter" src="http://everydaynerd.com/wp-content/uploads/HLIC/835acebbc62d1a23d320cd31e9f129cb.jpg"></p>
<p>I Love free software!&nbsp; WinX Video Converter is a GREAT video encoder, and can encode any video to virtually any format you need!&nbsp; Get it free until November 4th!</p>
<p>[ <a href="http://www.winxdvd.com/giveaway/" target="_blank">WinX DVD</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/free-winx-hd-video-converter' rel='bookmark' title='FREE WinX HD Video Converter'>FREE WinX HD Video Converter</a></li>
<li><a href='http://everydaynerd.com/hardware/dvd/free-dvd-software-from-winx' rel='bookmark' title='Free DVD Software from WinX'>Free DVD Software from WinX</a></li>
<li><a href='http://everydaynerd.com/software/free/convert-any-video-or-audio-format-with-quick-media-converter' rel='bookmark' title='Convert any Video or Audio format with Quick Media Converter'>Convert any Video or Audio format with Quick Media Converter</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/sILppiXHWvLCpt339Krla_WuvSk/0/da"><img src="http://feedads.g.doubleclick.net/~a/sILppiXHWvLCpt339Krla_WuvSk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sILppiXHWvLCpt339Krla_WuvSk/1/da"><img src="http://feedads.g.doubleclick.net/~a/sILppiXHWvLCpt339Krla_WuvSk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=3NTI7IMrdWs:GIMyMD17A90:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=3NTI7IMrdWs:GIMyMD17A90:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=3NTI7IMrdWs:GIMyMD17A90:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=3NTI7IMrdWs:GIMyMD17A90:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=3NTI7IMrdWs:GIMyMD17A90:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=3NTI7IMrdWs:GIMyMD17A90:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=3NTI7IMrdWs:GIMyMD17A90:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=3NTI7IMrdWs:GIMyMD17A90:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=3NTI7IMrdWs:GIMyMD17A90:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/3NTI7IMrdWs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/software/free/winx-hd-video-converter-deluxe-halloween-free-givaway/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/software/free/winx-hd-video-converter-deluxe-halloween-free-givaway</feedburner:origLink></item>
		<item>
		<title>Facebook Security: Bit Defender SafeGo</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/Au1CmfDArQc/facebook-security-bit-defender-safego</link>
		<comments>http://everydaynerd.com/security/facebook-security-bit-defender-safego#comments</comments>
		<pubDate>Wed, 27 Oct 2010 14:33:21 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/security/facebook-security-bit-defender-safego</guid>
		<description><![CDATA[Facebook security is really hard to achieve with their constant changes in policy and design.&#160; Facebook has become a place for malware and other malicious code to hang out – tempting you by “Click here to see what really happened…” &#8230; <a class="more-link" href="http://everydaynerd.com/security/facebook-security-bit-defender-safego">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon' rel='bookmark' title='Facebook&ndash;Two Factor Authentication Coming Soon'>Facebook&ndash;Two Factor Authentication Coming Soon</a></li>
<li><a href='http://everydaynerd.com/security/new-alerts-for-facebook-account-login' rel='bookmark' title='New &#8211; Alerts for Facebook Account Login'>New &#8211; Alerts for Facebook Account Login</a></li>
<li><a href='http://everydaynerd.com/security/check-facebook-privacy-settings-reclaimprivacy-org' rel='bookmark' title='Check Facebook Privacy Settings: ReclaimPrivacy.org'>Check Facebook Privacy Settings: ReclaimPrivacy.org</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Facebook security is really hard to achieve with their constant changes in policy and design.&#160; Facebook has become a place for malware and other malicious code to hang out – tempting you by “Click here to see what really happened…” senerios, and as soon as you click “Allow” your profile is infected.</p>
<p>Bit Defender SafeGo application uses cloud scanning to keep your Facebook account safe.&#160; It scans all authorized apps, links, and warns you if you are about to share your personal information.</p>
<p>Check it out here, and secure your social networking account today!</p>
<p>[ <a href="http://apps.facebook.com/bd-safego/" target="_blank">Facebook – BitDefender SafeGo</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/general/facebook/facebooktwo-factor-authentication-coming-soon' rel='bookmark' title='Facebook&ndash;Two Factor Authentication Coming Soon'>Facebook&ndash;Two Factor Authentication Coming Soon</a></li>
<li><a href='http://everydaynerd.com/security/new-alerts-for-facebook-account-login' rel='bookmark' title='New &#8211; Alerts for Facebook Account Login'>New &#8211; Alerts for Facebook Account Login</a></li>
<li><a href='http://everydaynerd.com/security/check-facebook-privacy-settings-reclaimprivacy-org' rel='bookmark' title='Check Facebook Privacy Settings: ReclaimPrivacy.org'>Check Facebook Privacy Settings: ReclaimPrivacy.org</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/SJtLvmaU0Ovn5RFcQQsi1Ibf3II/0/da"><img src="http://feedads.g.doubleclick.net/~a/SJtLvmaU0Ovn5RFcQQsi1Ibf3II/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SJtLvmaU0Ovn5RFcQQsi1Ibf3II/1/da"><img src="http://feedads.g.doubleclick.net/~a/SJtLvmaU0Ovn5RFcQQsi1Ibf3II/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Au1CmfDArQc:ymuOXLaPJ6U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Au1CmfDArQc:ymuOXLaPJ6U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Au1CmfDArQc:ymuOXLaPJ6U:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Au1CmfDArQc:ymuOXLaPJ6U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Au1CmfDArQc:ymuOXLaPJ6U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Au1CmfDArQc:ymuOXLaPJ6U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Au1CmfDArQc:ymuOXLaPJ6U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=Au1CmfDArQc:ymuOXLaPJ6U:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=Au1CmfDArQc:ymuOXLaPJ6U:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/Au1CmfDArQc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/security/facebook-security-bit-defender-safego/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/security/facebook-security-bit-defender-safego</feedburner:origLink></item>
		<item>
		<title>Windows 7 and Windows Server 2008 R2 Service Pack 1 Release Candidate</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/npmbTBd42jw/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate</link>
		<comments>http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate#comments</comments>
		<pubDate>Wed, 27 Oct 2010 14:10:49 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate</guid>
		<description><![CDATA[It’s here!!!&#160;&#160; For all you chomping at the bit to get SP1, Microsoft has released the Release Candidate, so the final version should be out soon.&#160; For you early adopters, here’s the link. Related posts: Windows XP &#8211; Service Pack &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-xp-service-pack-3-release-dates' rel='bookmark' title='Windows XP &#8211; Service Pack 3: Release Dates'>Windows XP &#8211; Service Pack 3: Release Dates</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready' rel='bookmark' title='Windows 7 Service Pack 1 coming soon – Be Ready!'>Windows 7 Service Pack 1 coming soon – Be Ready!</a></li>
<li><a href='http://everydaynerd.com/microsoft/vista-server-2008-service-pack-2-released' rel='bookmark' title='Vista &amp; Server 2008 Service Pack 2 released'>Vista &amp; Server 2008 Service Pack 2 released</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://everydaynerd.com/wp-content/uploads/2010/10/image.png" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: ; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2010/10/image_thumb.png" width="177" height="64" /></a></p>
<p>It’s here!!!&#160;&#160; For all you chomping at the bit to get SP1, Microsoft has released the Release Candidate, so the final version should be out soon.&#160; For you early adopters, here’s <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=C3202CE6-4056-4059-8A1B-3A9B77CDFDDA&amp;displaylang=en" target="_blank">the link</a>.</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-xp-service-pack-3-release-dates' rel='bookmark' title='Windows XP &#8211; Service Pack 3: Release Dates'>Windows XP &#8211; Service Pack 3: Release Dates</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready' rel='bookmark' title='Windows 7 Service Pack 1 coming soon – Be Ready!'>Windows 7 Service Pack 1 coming soon – Be Ready!</a></li>
<li><a href='http://everydaynerd.com/microsoft/vista-server-2008-service-pack-2-released' rel='bookmark' title='Vista &amp; Server 2008 Service Pack 2 released'>Vista &amp; Server 2008 Service Pack 2 released</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/mcYyZO-l33a-HwOoTjM3D1dJVaY/0/da"><img src="http://feedads.g.doubleclick.net/~a/mcYyZO-l33a-HwOoTjM3D1dJVaY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mcYyZO-l33a-HwOoTjM3D1dJVaY/1/da"><img src="http://feedads.g.doubleclick.net/~a/mcYyZO-l33a-HwOoTjM3D1dJVaY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=npmbTBd42jw:LKsc19LtZts:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=npmbTBd42jw:LKsc19LtZts:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=npmbTBd42jw:LKsc19LtZts:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=npmbTBd42jw:LKsc19LtZts:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=npmbTBd42jw:LKsc19LtZts:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=npmbTBd42jw:LKsc19LtZts:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=npmbTBd42jw:LKsc19LtZts:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=npmbTBd42jw:LKsc19LtZts:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=npmbTBd42jw:LKsc19LtZts:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/npmbTBd42jw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate</feedburner:origLink></item>
		<item>
		<title>Nerds explained</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/8YHQxBiaWJY/nerds-explained</link>
		<comments>http://everydaynerd.com/general/nerds-explained#comments</comments>
		<pubDate>Mon, 18 Oct 2010 18:26:31 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1416</guid>
		<description><![CDATA[Ran across this picture this morning, and just had to post it here&#8230;  Pretty much sums it up! Related posts: Airport Security… Hmm…
Related posts:<ol>
<li><a href='http://everydaynerd.com/general/airport-security%e2%80%a6-hmm%e2%80%a6' rel='bookmark' title='Airport Security… Hmm…'>Airport Security… Hmm…</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ran across this picture this morning, and just had to post it here&#8230;  Pretty much sums it up!</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/10/Nerd_Dork_Geek_Venn_Diagram1.jpg"><img class="alignnone size-medium wp-image-1417" title="Nerd_Dork_Geek_Venn_Diagram" src="http://everydaynerd.com/wp-content/uploads/2010/10/Nerd_Dork_Geek_Venn_Diagram1-300x280.jpg" alt="" width="300" height="280" /></a><img src="file:///D:/Profile/Desktop/Nerd_Dork_Geek_Venn_Diagram.jpg" alt="" /></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/general/airport-security%e2%80%a6-hmm%e2%80%a6' rel='bookmark' title='Airport Security… Hmm…'>Airport Security… Hmm…</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/5GDNGfOjPaSaKEoAdkAZL-mTjt8/0/da"><img src="http://feedads.g.doubleclick.net/~a/5GDNGfOjPaSaKEoAdkAZL-mTjt8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5GDNGfOjPaSaKEoAdkAZL-mTjt8/1/da"><img src="http://feedads.g.doubleclick.net/~a/5GDNGfOjPaSaKEoAdkAZL-mTjt8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=8YHQxBiaWJY:R3i7WIzbMUQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=8YHQxBiaWJY:R3i7WIzbMUQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=8YHQxBiaWJY:R3i7WIzbMUQ:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=8YHQxBiaWJY:R3i7WIzbMUQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=8YHQxBiaWJY:R3i7WIzbMUQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=8YHQxBiaWJY:R3i7WIzbMUQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=8YHQxBiaWJY:R3i7WIzbMUQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=8YHQxBiaWJY:R3i7WIzbMUQ:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=8YHQxBiaWJY:R3i7WIzbMUQ:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/8YHQxBiaWJY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/general/nerds-explained/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/general/nerds-explained</feedburner:origLink></item>
		<item>
		<title>Easy Online Gallery with DropMocks</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/1rcxtpBnHbQ/easy-online-gallery-with-dropmocks</link>
		<comments>http://everydaynerd.com/links/easy-online-gallery-with-dropmocks#comments</comments>
		<pubDate>Wed, 29 Sep 2010 17:43:14 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Products I Use]]></category>
		<category><![CDATA[Website of the Week]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1404</guid>
		<description><![CDATA[Online photo gallery so easy, a caveman could do it!!!!  It&#8217;s Stupid Easy! Seriously though, DropMocks has got to be the easiest online photo gallery I&#8217;ve ever seen &#8211; and it looks fantastic!!!  Utilizing HTML5 (so will have to use &#8230; <a class="more-link" href="http://everydaynerd.com/links/easy-online-gallery-with-dropmocks">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/backup/spideroak-secure-easy-online-backupsharesync-software' rel='bookmark' title='SpiderOak &#8211; Secure, Easy, Online Backup/Share/Sync Software'>SpiderOak &#8211; Secure, Easy, Online Backup/Share/Sync Software</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/script-get-time-of-exchange-last-online-defrag' rel='bookmark' title='Script: Get time of Exchange last online defrag'>Script: Get time of Exchange last online defrag</a></li>
<li><a href='http://everydaynerd.com/google/picasa-web-albums-assistant' rel='bookmark' title='Picasa Web Albums Assistant'>Picasa Web Albums Assistant</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Online photo gallery so easy, a caveman could do it!!!! <img src='http://everydaynerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   It&#8217;s Stupid Easy!</p>
<p>Seriously though, DropMocks has got to be the easiest online photo gallery I&#8217;ve ever seen &#8211; and it looks fantastic!!!  Utilizing HTML5 (so will have to use an up-to-date browser) one simply drags photos from the computer to the webpage, and presto!!  Gallery done!  All images are displayed in a slick, clean manner &#8211; and with automatic sharing URL, it&#8217;s easy to send to friends and family.  Add in Google Authentication, you can access previously create, edit share and delete galleries.  This has got to be the coolest new website I&#8217;ve seen all year!</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/09/DropMocks.jpg"><img class="alignnone size-full wp-image-1405" title="DropMocks" src="http://everydaynerd.com/wp-content/uploads/2010/09/DropMocks.jpg" alt="" width="477" height="272" /></a></p>
<p>Check it out here!!  <a href="http://www.dropmocks.com/">http://www.dropmocks.com/</a></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/backup/spideroak-secure-easy-online-backupsharesync-software' rel='bookmark' title='SpiderOak &#8211; Secure, Easy, Online Backup/Share/Sync Software'>SpiderOak &#8211; Secure, Easy, Online Backup/Share/Sync Software</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/powershell/script-get-time-of-exchange-last-online-defrag' rel='bookmark' title='Script: Get time of Exchange last online defrag'>Script: Get time of Exchange last online defrag</a></li>
<li><a href='http://everydaynerd.com/google/picasa-web-albums-assistant' rel='bookmark' title='Picasa Web Albums Assistant'>Picasa Web Albums Assistant</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/IaZRp8vJMjbBmvbrHOz6xe06RCk/0/da"><img src="http://feedads.g.doubleclick.net/~a/IaZRp8vJMjbBmvbrHOz6xe06RCk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IaZRp8vJMjbBmvbrHOz6xe06RCk/1/da"><img src="http://feedads.g.doubleclick.net/~a/IaZRp8vJMjbBmvbrHOz6xe06RCk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=1rcxtpBnHbQ:2x1j10q4fH4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=1rcxtpBnHbQ:2x1j10q4fH4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=1rcxtpBnHbQ:2x1j10q4fH4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=1rcxtpBnHbQ:2x1j10q4fH4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=1rcxtpBnHbQ:2x1j10q4fH4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=1rcxtpBnHbQ:2x1j10q4fH4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=1rcxtpBnHbQ:2x1j10q4fH4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=1rcxtpBnHbQ:2x1j10q4fH4:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=1rcxtpBnHbQ:2x1j10q4fH4:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/1rcxtpBnHbQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/links/easy-online-gallery-with-dropmocks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/links/easy-online-gallery-with-dropmocks</feedburner:origLink></item>
		<item>
		<title>New Copywright Law says it’s OK to Jailbreak!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/ZdPdiwIZRRE/new-copywright-law-says-its-ok-to-jailbreak</link>
		<comments>http://everydaynerd.com/apple/iphone/new-copywright-law-says-its-ok-to-jailbreak#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:27:12 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1382</guid>
		<description><![CDATA[The US Library of Congress has declared that jailbreaking a phone is legal!  Read more about it here. http://www.neowin.net/news/us-government-makes-jailbreaking-unlocking-and-ripping-dvds-legal?utm_source=feedburner&#38;utm_medium=feed&#38;utm_campaign=Feed%3A+neowin-main+%28Neowin+Main+News%29 Related posts: Windows Vista SP1 &#8211; Released to Public Free DVD Software from WinX Windows Live Folders Update
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-vista-sp1-released-to-public' rel='bookmark' title='Windows Vista SP1 &#8211; Released to Public'>Windows Vista SP1 &#8211; Released to Public</a></li>
<li><a href='http://everydaynerd.com/hardware/dvd/free-dvd-software-from-winx' rel='bookmark' title='Free DVD Software from WinX'>Free DVD Software from WinX</a></li>
<li><a href='http://everydaynerd.com/microsoft/web/live/windows-live-folders-update' rel='bookmark' title='Windows Live Folders Update'>Windows Live Folders Update</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The US Library of Congress has declared that jailbreaking a phone is legal!  <a href="http://www.neowin.net/news/us-government-makes-jailbreaking-unlocking-and-ripping-dvds-legal?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+neowin-main+%28Neowin+Main+News%29" target="_blank">Read more about it here</a>.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">http://www.neowin.net/news/us-government-makes-jailbreaking-unlocking-and-ripping-dvds-legal?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+neowin-main+%28Neowin+Main+News%29</div>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-vista-sp1-released-to-public' rel='bookmark' title='Windows Vista SP1 &#8211; Released to Public'>Windows Vista SP1 &#8211; Released to Public</a></li>
<li><a href='http://everydaynerd.com/hardware/dvd/free-dvd-software-from-winx' rel='bookmark' title='Free DVD Software from WinX'>Free DVD Software from WinX</a></li>
<li><a href='http://everydaynerd.com/microsoft/web/live/windows-live-folders-update' rel='bookmark' title='Windows Live Folders Update'>Windows Live Folders Update</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/_gUXfEvrBFlAwZ-FohZcBIu8pQw/0/da"><img src="http://feedads.g.doubleclick.net/~a/_gUXfEvrBFlAwZ-FohZcBIu8pQw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_gUXfEvrBFlAwZ-FohZcBIu8pQw/1/da"><img src="http://feedads.g.doubleclick.net/~a/_gUXfEvrBFlAwZ-FohZcBIu8pQw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZdPdiwIZRRE:Qh8xYeo_9Ew:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZdPdiwIZRRE:Qh8xYeo_9Ew:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZdPdiwIZRRE:Qh8xYeo_9Ew:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZdPdiwIZRRE:Qh8xYeo_9Ew:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=ZdPdiwIZRRE:Qh8xYeo_9Ew:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZdPdiwIZRRE:Qh8xYeo_9Ew:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=ZdPdiwIZRRE:Qh8xYeo_9Ew:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZdPdiwIZRRE:Qh8xYeo_9Ew:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=ZdPdiwIZRRE:Qh8xYeo_9Ew:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/ZdPdiwIZRRE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/apple/iphone/new-copywright-law-says-its-ok-to-jailbreak/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/apple/iphone/new-copywright-law-says-its-ok-to-jailbreak</feedburner:origLink></item>
		<item>
		<title>Cisco VPN Finally Supports x64!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/eeTk1JZLyYI/1377</link>
		<comments>http://everydaynerd.com/microsoft/1377#comments</comments>
		<pubDate>Wed, 21 Jul 2010 20:44:57 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Remote Access]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1377</guid>
		<description><![CDATA[For those of you that telecommute, or ever work remotely, you probably use Cisco&#8217;s VPN software.  Up until now, it was only supported on 32 bit OS&#8217;s, leaving anyone that wanted to run 64 bit out in the cold, or &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/1377">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/adobe/acrobat-supports-office-2007-now' rel='bookmark' title='Acrobat Supports Office 2007 Now'>Acrobat Supports Office 2007 Now</a></li>
<li><a href='http://everydaynerd.com/software/free/microsoft-releases-free-express-edition-of-search-server-2008' rel='bookmark' title='Microsoft Releases Free Express Edition Of Search Server 2008'>Microsoft Releases Free Express Edition Of Search Server 2008</a></li>
<li><a href='http://everydaynerd.com/google/finally-google-fixes-imap-for-windows-mobile' rel='bookmark' title='Finally &#8211; Google fixes IMAP for Windows Mobile'>Finally &#8211; Google fixes IMAP for Windows Mobile</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://everydaynerd.com/wp-content/uploads/2010/07/cisco.jpg"><img class="alignnone size-full wp-image-1378" title="cisco" src="http://everydaynerd.com/wp-content/uploads/2010/07/cisco.jpg" alt="" width="149" height="94" /></a></p>
<p>For those of you that telecommute, or ever work remotely, you probably use Cisco&#8217;s VPN software.  Up until now, it was only supported on 32 bit OS&#8217;s, leaving anyone that wanted to run 64 bit out in the cold, or forcing them to dual boot, or other nasty hacks&#8230;  FINALLY, Cisco has released a 64 bit version of their VPN client that works on Windows 7 x64!</p>
<p>For some dumb reason, it&#8217;s not publicly available on Cisco&#8217;s website, so do a quick Google search for &#8220;<a href="http://www.google.com/search?q=vpnclient-winx64-msi-5.0.07.0290-k9.exe" target="_blank">vpnclient-winx64-msi-5.0.07.0290-k9.exe</a>&#8221; and you will see multiple sites to grab the file.</p>
<p>Think I&#8217;m going to re-load my laptop tonight to 64! <img src='http://everydaynerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/adobe/acrobat-supports-office-2007-now' rel='bookmark' title='Acrobat Supports Office 2007 Now'>Acrobat Supports Office 2007 Now</a></li>
<li><a href='http://everydaynerd.com/software/free/microsoft-releases-free-express-edition-of-search-server-2008' rel='bookmark' title='Microsoft Releases Free Express Edition Of Search Server 2008'>Microsoft Releases Free Express Edition Of Search Server 2008</a></li>
<li><a href='http://everydaynerd.com/google/finally-google-fixes-imap-for-windows-mobile' rel='bookmark' title='Finally &#8211; Google fixes IMAP for Windows Mobile'>Finally &#8211; Google fixes IMAP for Windows Mobile</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/o85BGBNgbyyWmin6dlwtEXXqOG0/0/da"><img src="http://feedads.g.doubleclick.net/~a/o85BGBNgbyyWmin6dlwtEXXqOG0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/o85BGBNgbyyWmin6dlwtEXXqOG0/1/da"><img src="http://feedads.g.doubleclick.net/~a/o85BGBNgbyyWmin6dlwtEXXqOG0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=eeTk1JZLyYI:Cg46YQ0S4DM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=eeTk1JZLyYI:Cg46YQ0S4DM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=eeTk1JZLyYI:Cg46YQ0S4DM:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=eeTk1JZLyYI:Cg46YQ0S4DM:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/eeTk1JZLyYI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/1377/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/1377</feedburner:origLink></item>
		<item>
		<title>Auditing Exchange 2007</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/auzXobGBU6c/auditing-exchange-2007</link>
		<comments>http://everydaynerd.com/general/auditing-exchange-2007#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:20:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/general/auditing-exchange-2007</guid>
		<description><![CDATA[Mike Lagase from Microsoft just posted a GREAT article about auditing Exchange 2007.&#160; Related posts: Exchange 2007 SP2 is out. Exchange 2007 CCR – Move File Share Witness Manage Exchange Certificates with a free GUI
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-sp2-is-out' rel='bookmark' title='Exchange 2007 SP2 is out.'>Exchange 2007 SP2 is out.</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-ccr-%e2%80%93-move-file-share-witness' rel='bookmark' title='Exchange 2007 CCR – Move File Share Witness'>Exchange 2007 CCR – Move File Share Witness</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/manage-exchange-certificates-with-a-free-gui' rel='bookmark' title='Manage Exchange Certificates with a free GUI'>Manage Exchange Certificates with a free GUI</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Mike Lagase from Microsoft just posted a GREAT article about <a href="http://blogs.technet.com/b/mikelag/archive/2010/06/23/audit-exchange-2007-sp2-auditing.aspx">auditing Exchange 2007</a>.&nbsp;</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-sp2-is-out' rel='bookmark' title='Exchange 2007 SP2 is out.'>Exchange 2007 SP2 is out.</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-ccr-%e2%80%93-move-file-share-witness' rel='bookmark' title='Exchange 2007 CCR – Move File Share Witness'>Exchange 2007 CCR – Move File Share Witness</a></li>
<li><a href='http://everydaynerd.com/microsoft/software-microsoft/exchange/manage-exchange-certificates-with-a-free-gui' rel='bookmark' title='Manage Exchange Certificates with a free GUI'>Manage Exchange Certificates with a free GUI</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/oQJmqRVNjlrjB7aMS9nZeqthph8/0/da"><img src="http://feedads.g.doubleclick.net/~a/oQJmqRVNjlrjB7aMS9nZeqthph8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oQJmqRVNjlrjB7aMS9nZeqthph8/1/da"><img src="http://feedads.g.doubleclick.net/~a/oQJmqRVNjlrjB7aMS9nZeqthph8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=auzXobGBU6c:G2EYqzJUPIc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=auzXobGBU6c:G2EYqzJUPIc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=auzXobGBU6c:G2EYqzJUPIc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=auzXobGBU6c:G2EYqzJUPIc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=auzXobGBU6c:G2EYqzJUPIc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=auzXobGBU6c:G2EYqzJUPIc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=auzXobGBU6c:G2EYqzJUPIc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=auzXobGBU6c:G2EYqzJUPIc:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=auzXobGBU6c:G2EYqzJUPIc:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/auzXobGBU6c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/general/auditing-exchange-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/general/auditing-exchange-2007</feedburner:origLink></item>
		<item>
		<title>Windows 7 Service Pack 1 coming soon – Be Ready!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/ZhQVwLpmiT8/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready</link>
		<comments>http://everydaynerd.com/microsoft/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:14:36 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1361</guid>
		<description><![CDATA[Windows 7 Service Pack 1 will be released soon, and I wanted to make sure that you are ready for it! Before installing, here are some things you can do: Uninstall your AntiVirus program (i.e. Microsoft&#8217;s Security Essentials &#38; Forefront &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-xp-service-pack-3-release-dates' rel='bookmark' title='Windows XP &#8211; Service Pack 3: Release Dates'>Windows XP &#8211; Service Pack 3: Release Dates</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-xp-service-pack-3-not-till-2008' rel='bookmark' title='Windows XP Service Pack 3: Not till 2008'>Windows XP Service Pack 3: Not till 2008</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate' rel='bookmark' title='Windows 7 and Windows Server 2008 R2 Service Pack 1 Release Candidate'>Windows 7 and Windows Server 2008 R2 Service Pack 1 Release Candidate</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Windows 7 Service Pack 1 will be released soon, and I wanted to make sure  that you are ready for it!</p>
<p>Before installing, here are some things you can do:</p>
<ul>
<li><a href="http://windows.microsoft.com/en-gb/windows7/why-am-i-receiving-a-message-about-microsoft-security-essentials-or-microsoft-forefront-client-security-when-installing-a-service-pack">Uninstall  your AntiVirus program</a> (i.e. Microsoft&#8217;s Security Essentials &amp;  Forefront Client Security)</li>
<li><a href="http://windows.microsoft.com/en-gb/windows7/why-am-i-receiving-a-language-file-message">Foreign  Language Support:</a> Windows 7 Service Pack 1 (SP1) only supports  German, Spanish, French, English, &amp; Japanese version of Windows 7</li>
<li><a href="http://windows.microsoft.com/en-gb/windows7/strategies-for-freeing-disk-space">Ensure  you have enough disk space!</a> <strong>&#8211; (</strong><a href="http://www.winextra.com/archives/windows-7-sp1-beta-better-check-your-free-disk-space/">32-bit  (x86-based) = 600 MB &#8212; 64-bit (x64-based) = 900 MB of free  space</a><strong>)</strong></li>
</ul>
<p>You can also run the Windows 7 System Update Readiness Tool:  <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=44e15787-66b0-4e9c-9c3b-1fc9ea40f69f&amp;displaylang=en" target="_blank">32-bit</a> &amp; <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=914fbc5b-1fba-4bae-a7c3-d2c47c6fcffc&amp;displaylang=en" target="_blank">64-bit</a></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-xp-service-pack-3-release-dates' rel='bookmark' title='Windows XP &#8211; Service Pack 3: Release Dates'>Windows XP &#8211; Service Pack 3: Release Dates</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-xp-service-pack-3-not-till-2008' rel='bookmark' title='Windows XP Service Pack 3: Not till 2008'>Windows XP Service Pack 3: Not till 2008</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-and-windows-server-2008-r2-service-pack-1-release-candidate' rel='bookmark' title='Windows 7 and Windows Server 2008 R2 Service Pack 1 Release Candidate'>Windows 7 and Windows Server 2008 R2 Service Pack 1 Release Candidate</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/heoCndEn8Zi0cJfYe94OU-YT4zM/0/da"><img src="http://feedads.g.doubleclick.net/~a/heoCndEn8Zi0cJfYe94OU-YT4zM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/heoCndEn8Zi0cJfYe94OU-YT4zM/1/da"><img src="http://feedads.g.doubleclick.net/~a/heoCndEn8Zi0cJfYe94OU-YT4zM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZhQVwLpmiT8:97-YMOGz-1s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZhQVwLpmiT8:97-YMOGz-1s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZhQVwLpmiT8:97-YMOGz-1s:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZhQVwLpmiT8:97-YMOGz-1s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=ZhQVwLpmiT8:97-YMOGz-1s:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZhQVwLpmiT8:97-YMOGz-1s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=ZhQVwLpmiT8:97-YMOGz-1s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=ZhQVwLpmiT8:97-YMOGz-1s:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=ZhQVwLpmiT8:97-YMOGz-1s:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/ZhQVwLpmiT8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/microsoft/windows-7-service-pack-1-coming-soon-%e2%80%93-be-ready</feedburner:origLink></item>
		<item>
		<title>Google Docs now does OCR!</title>
		<link>http://feedproxy.google.com/~r/EverydayNerd/~3/9ZK1gDUSiSo/google-docs-now-does-ocr</link>
		<comments>http://everydaynerd.com/google/google-docs-now-does-ocr#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:13:26 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Docs]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/?p=1359</guid>
		<description><![CDATA[Finally!  Google Docs now can take a scanned image, and convert the image to editable text!  OCR is Optical Character Recognition, and has been around for a while, but having this feature in Google Docs, just makes it better Related &#8230; <a class="more-link" href="http://everydaynerd.com/google/google-docs-now-does-ocr">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/google/google-docs-upgrade' rel='bookmark' title='Google Docs Upgrade'>Google Docs Upgrade</a></li>
<li><a href='http://everydaynerd.com/google/googles-public-dns-server' rel='bookmark' title='Google&rsquo;s Public DNS server'>Google&rsquo;s Public DNS server</a></li>
<li><a href='http://everydaynerd.com/google/google-releases-a-new-browser-meet-google-chrome' rel='bookmark' title='Google releases a new Browser! Meet Google Chrome'>Google releases a new Browser! Meet Google Chrome</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Finally!  Google Docs now can take a scanned image, and convert the image to editable text!  OCR is Optical Character Recognition, and has been around for a while, but having this feature in Google Docs, just makes it better <img src='http://everydaynerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/google/google-docs-upgrade' rel='bookmark' title='Google Docs Upgrade'>Google Docs Upgrade</a></li>
<li><a href='http://everydaynerd.com/google/googles-public-dns-server' rel='bookmark' title='Google&rsquo;s Public DNS server'>Google&rsquo;s Public DNS server</a></li>
<li><a href='http://everydaynerd.com/google/google-releases-a-new-browser-meet-google-chrome' rel='bookmark' title='Google releases a new Browser! Meet Google Chrome'>Google releases a new Browser! Meet Google Chrome</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/J-rvTcqdTD1utOCMBrUj7BIKB9g/0/da"><img src="http://feedads.g.doubleclick.net/~a/J-rvTcqdTD1utOCMBrUj7BIKB9g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/J-rvTcqdTD1utOCMBrUj7BIKB9g/1/da"><img src="http://feedads.g.doubleclick.net/~a/J-rvTcqdTD1utOCMBrUj7BIKB9g/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=9ZK1gDUSiSo:Lqrsp0_xBAk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=9ZK1gDUSiSo:Lqrsp0_xBAk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=9ZK1gDUSiSo:Lqrsp0_xBAk:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=9ZK1gDUSiSo:Lqrsp0_xBAk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=9ZK1gDUSiSo:Lqrsp0_xBAk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=9ZK1gDUSiSo:Lqrsp0_xBAk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=9ZK1gDUSiSo:Lqrsp0_xBAk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/EverydayNerd?a=9ZK1gDUSiSo:Lqrsp0_xBAk:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/EverydayNerd?i=9ZK1gDUSiSo:Lqrsp0_xBAk:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/EverydayNerd/~4/9ZK1gDUSiSo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/google/google-docs-now-does-ocr/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://everydaynerd.com/google/google-docs-now-does-ocr</feedburner:origLink></item>
	</channel>
</rss>

