<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Everyday Nerd &#187; Microsoft</title>
	<atom:link href="http://everydaynerd.com/category/microsoft/feed" rel="self" type="application/rss+xml" />
	<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>
		<item>
		<title>PowerShell: Move Windows Server 2008 Cluster Group</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/powershell/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>]]></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>
		</item>
		<item>
		<title>PowerShell: Get-Uptime for Computer(s)</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/powershell/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>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/powershell/powershell-get-uptime-for-computers/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PowerShell: Drive Space Info from multiple systems</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/powershell/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>]]></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>
		</item>
		<item>
		<title>PowerShell: Change PS Window Size on the fly</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/powershell/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>]]></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>
		</item>
		<item>
		<title>Exchange PowerShell Script: Get Mailbox Count by Database</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/powershell/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>]]></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>
		</item>
		<item>
		<title>Uninstall IE 9 Beta on Windows 7</title>
		<link>http://everydaynerd.com/microsoft/windows/7/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>]]></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>
		</item>
		<item>
		<title>Windows 7 and Windows Server 2008 R2 Service Pack 1 Release Candidate</title>
		<link>http://everydaynerd.com/microsoft/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>]]></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>
		</item>
		<item>
		<title>Cisco VPN Finally Supports x64!</title>
		<link>http://everydaynerd.com/microsoft/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>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/1377/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows 7 Service Pack 1 coming soon – Be Ready!</title>
		<link>http://everydaynerd.com/microsoft/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>]]></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>
		</item>
		<item>
		<title>Manage Exchange Certificates with a free GUI</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/exchange/manage-exchange-certificates-with-a-free-gui</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/exchange/manage-exchange-certificates-with-a-free-gui#comments</comments>
		<pubDate>Wed, 26 May 2010 16:11:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/general/manage-exchange-certificates-with-a-free-gui</guid>
		<description><![CDATA[Managing Exchange 2007 certificates form powershell can sometimes be confusing.  U-B Tech has released a free tool that allows Exchange Administrators to manage certificates from a GUI.  The Certificate Manager for Exchange Server 2007 enables administrators to do: Manage your &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/exchange/manage-exchange-certificates-with-a-free-gui">Continue reading <span class="meta-nav">&#8594;</span></a>
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/microsoft-releases-beta-exchange-2010-codenamed-exchange-14' rel='bookmark' title='Microsoft Releases Beta Exchange 2010 (Codenamed Exchange 14)'>Microsoft Releases Beta Exchange 2010 (Codenamed Exchange 14)</a></li>
<li><a href='http://everydaynerd.com/general/auditing-exchange-2007' rel='bookmark' title='Auditing Exchange 2007'>Auditing Exchange 2007</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Managing Exchange 2007 certificates form powershell can sometimes be confusing.  U-B Tech has released a <strong>free</strong> tool that allows Exchange Administrators to manage certificates from a GUI.  The Certificate Manager for Exchange Server 2007 enables administrators to do:</p>
<ul>
<li>Manage your current server certificates.</li>
<li>Enable certificates for Exchange 2007 Services (POP, IMAP, SMTP, IIS, UM).</li>
<li>Generate an Exchange 2007 Certificate Signing Request and process the Certificate Authority answer.</li>
<li>Generate an Exchange 2007 Self-Signed certificate (not for production use).</li>
<li>Easily include additional subject names in a single certificate.</li>
<li>Import &amp; Export ability for existing certificates.</li>
</ul>
<p><img style="display: inline; border: 0px;" title="image" src="http://everydaynerd.com/wp-content/uploads/HLIC/6af7b1dfe07a247ff3d6f53479a89b04.png" border="0" alt="image" width="500" height="267" /></p>
<p>[<a href="http://www.u-btech.com/products/certificate-manager-for-exchange-2007.html" target="_blank">Certificate Manager for Exchange Server 2007</a>]</p>
<p>[<a href="http://www.u-btech.com/images/certificate-manager-flash.html" target="_blank">Online Flash Demo of Certificate Manager</a>]</p>
<p>[<a href="http://technet.microsoft.com/en-us/library/bb851505.aspx" target="_blank">TechNet: Exchange Certificate Management</a>]</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/microsoft-releases-beta-exchange-2010-codenamed-exchange-14' rel='bookmark' title='Microsoft Releases Beta Exchange 2010 (Codenamed Exchange 14)'>Microsoft Releases Beta Exchange 2010 (Codenamed Exchange 14)</a></li>
<li><a href='http://everydaynerd.com/general/auditing-exchange-2007' rel='bookmark' title='Auditing Exchange 2007'>Auditing Exchange 2007</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/exchange/manage-exchange-certificates-with-a-free-gui/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want to win a free copy of Windows 7?</title>
		<link>http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7</link>
		<comments>http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7#comments</comments>
		<pubDate>Tue, 23 Mar 2010 09:00:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7</guid>
		<description><![CDATA[“Share your story” with The Windows Club and you could win a copy of Windows 7!&#160; It has to be a real story about the moment you liked Windows 7 most, or when it made your day… [Share your story] &#8230; <a class="more-link" href="http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/general/good-deal/win-a-free-zune' rel='bookmark' title='Win a Free Zune!'>Win a Free Zune!</a></li>
<li><a href='http://everydaynerd.com/general/vista-tip-windows-key-quicklaunch' rel='bookmark' title='Vista Tip: Windows Key + QuickLaunch'>Vista Tip: Windows Key + QuickLaunch</a></li>
<li><a href='http://everydaynerd.com/software/free/free-windows-7-for-it-pros' rel='bookmark' title='Free Windows 7 for IT Pro&rsquo;s'>Free Windows 7 for IT Pro&rsquo;s</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>“Share your story” with <strong><a href="http://www.thewindowsclub.com/" target="_blank">The Windows Club</a></strong> and you could win a copy of Windows 7!&#160; It has to be a real story about the moment you liked Windows 7 most, or when it made your day…</p>
<p>[<a href="http://www.thewindowsclub.com/share-your-windows-7-story-and-win-a-windows-7-license" target="_blank">Share your story</a>]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/general/good-deal/win-a-free-zune' rel='bookmark' title='Win a Free Zune!'>Win a Free Zune!</a></li>
<li><a href='http://everydaynerd.com/general/vista-tip-windows-key-quicklaunch' rel='bookmark' title='Vista Tip: Windows Key + QuickLaunch'>Vista Tip: Windows Key + QuickLaunch</a></li>
<li><a href='http://everydaynerd.com/software/free/free-windows-7-for-it-pros' rel='bookmark' title='Free Windows 7 for IT Pro&rsquo;s'>Free Windows 7 for IT Pro&rsquo;s</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How-To log off a user from remote computer</title>
		<link>http://everydaynerd.com/how-to/how-to-log-off-a-user-from-remote-computer</link>
		<comments>http://everydaynerd.com/how-to/how-to-log-off-a-user-from-remote-computer#comments</comments>
		<pubDate>Mon, 22 Mar 2010 16:33:47 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Remote Access]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/how-to/how-to-log-off-a-user-from-remote-computer</guid>
		<description><![CDATA[If you work in IT, I’m sure you’ve run across a time that you needed to log off a user from a remote computers – even if it’s yourself (especially when it’s time to change your password).  Personally, I have &#8230; <a class="more-link" href="http://everydaynerd.com/how-to/how-to-log-off-a-user-from-remote-computer">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/command-line-terminal-server-tip' rel='bookmark' title='Command Line &#8211; Terminal Server tip'>Command Line &#8211; Terminal Server tip</a></li>
<li><a href='http://everydaynerd.com/scripts/script-who%e2%80%99s-logged-on-to-remote-pc' rel='bookmark' title='Script: Who’s Logged on to remote PC'>Script: Who’s Logged on to remote PC</a></li>
<li><a href='http://everydaynerd.com/microsoft/technet-plus-direct-single-user-subscription-for-249' rel='bookmark' title='TechNet Plus Direct single user subscription for $249'>TechNet Plus Direct single user subscription for $249</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you work in IT, I’m sure you’ve run across a time that you needed to log off a user from a remote computers – even if it’s yourself (especially when it’s time to change your password).  Personally, I have to change my network password every 30 days, and there are times that I may be logged into any of 150 computers.  I try to remember to use the log off button, but sometimes, I have idle sessions on computers.</p>
<p>This being said, I needed a way to log off any session I was logged into, in a list of computers I knew I might be logged into.  My first thought was to use <a href="http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs" target="_blank">PSLOGGEDON.exe</a> (from <a href="http://technet.microsoft.com/en-us/sysinternals/default.aspx" target="_blank">Sysinternals</a>) which is a <a href="http://everydaynerd.com/?s=sysinternals" target="_blank">fantastic tool</a>, but I don’t want to search the entire domain, plus I might be logged in to multiple domains.</p>
<p>So, I found a nice little utility built right into windows – quser.exe</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/03/image.png"><img style="display: inline; border: 0px;" title="image" src="http://everydaynerd.com/wp-content/uploads/2010/03/image_thumb.png" alt="image" width="244" height="96" border="0" /></a></p>
<p>Quser.exe can be used to show what user is logged in to a remote computer, as well as the localhost.  Use <strong>quser.exe /SERVER:<em>servername</em></strong> to query a remote system.</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/03/image1.png"><img style="display: inline; border: 0px;" title="image" src="http://everydaynerd.com/wp-content/uploads/2010/03/image_thumb1.png" alt="image" width="244" height="34" border="0" /></a></p>
<p>If you want to specify just one user account instead of finding all users logged in, user this syntax:  <strong>quser.exe user6 /SERVER:</strong><em><strong>servername</strong></em></p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/03/image2.png"><img style="display: inline; border: 0px;" title="image" src="http://everydaynerd.com/wp-content/uploads/2010/03/image_thumb2.png" alt="image" width="244" height="23" border="0" /></a></p>
<p>Now to log off this user, or session, you can use another built-in utility in Windows – Logoff.exe</p>
<p>Logoff.exe can either log off a session ID, or SessionName remotely – not by username (username works locally though).   The syntax is similar to quser.exe:</p>
<p>LOGOFF [sessionname | sessionid] [/SERVER:servername]</p>
<p>So to log off user6 from the example above, I can use either the session name (rdp-rcp#443 – or I can use the ID – 2 – I’ll go with the ID</p>
<p>logoff 2 /SERVER:server1</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/03/image3.png"><img style="display: inline; border: 0px;" title="image" src="http://everydaynerd.com/wp-content/uploads/2010/03/image_thumb3.png" alt="image" width="244" height="25" border="0" /></a></p>
<p>That was easy!  Now, to check to see if I’m logged any of the 150 servers I manage, I create a quick bat file using excel (<a href="http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs" target="_blank">more on that here</a>) and now I can run it at any time, and see what remote systems I’m logged into, and log my session off if needed.</p>
<p>This is a really simple way to do this, but if you have another way to do it, please post below!  I’d love to see how you handle this problem!</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/command-line-terminal-server-tip' rel='bookmark' title='Command Line &#8211; Terminal Server tip'>Command Line &#8211; Terminal Server tip</a></li>
<li><a href='http://everydaynerd.com/scripts/script-who%e2%80%99s-logged-on-to-remote-pc' rel='bookmark' title='Script: Who’s Logged on to remote PC'>Script: Who’s Logged on to remote PC</a></li>
<li><a href='http://everydaynerd.com/microsoft/technet-plus-direct-single-user-subscription-for-249' rel='bookmark' title='TechNet Plus Direct single user subscription for $249'>TechNet Plus Direct single user subscription for $249</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/how-to/how-to-log-off-a-user-from-remote-computer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Super Admin folder</title>
		<link>http://everydaynerd.com/microsoft/windows-7-super-admin-folder</link>
		<comments>http://everydaynerd.com/microsoft/windows-7-super-admin-folder#comments</comments>
		<pubDate>Mon, 11 Jan 2010 18:29:32 +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/microsoft/windows-7-super-admin-folder</guid>
		<description><![CDATA[Windows 7 is great, but if you’re a control freak like me, you want to be able to change all your settings easily, and preferably, all in one place.&#160; Well, the developers at Microsoft heard your cries of woe, and &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/windows-7-super-admin-folder">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-7-remote-server-admin-tools-beta-released-rsat' rel='bookmark' title='Windows 7 Remote Server Admin Tools Beta released (RSAT)'>Windows 7 Remote Server Admin Tools Beta released (RSAT)</a></li>
<li><a href='http://everydaynerd.com/how-to/fix/windows-7-enable-admin-share' rel='bookmark' title='Windows 7 &ndash; Enable $admin share'>Windows 7 &ndash; Enable $admin share</a></li>
<li><a href='http://everydaynerd.com/software/free/free-easy-filefolder-encryption' rel='bookmark' title='Free, Easy File/Folder Encryption'>Free, Easy File/Folder Encryption</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Windows 7 is great, but if you’re a control freak like me, you want to be able to change all your settings easily, and preferably, all in one place.&#160; Well, the developers at Microsoft heard your cries of woe, and have enabled a super folder.</p>
<p>Create a new folder (can be located anywhere, like on the Desktop), with the following name: <strong>SuperFolder.{ED7BA470-8E54-465E-825C-99712043E01C}</strong></p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/01/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2010/01/image_thumb.png" width="544" height="242" /></a></p>
<p>&#160;<a href="http://everydaynerd.com/wp-content/uploads/2010/01/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2010/01/image_thumb1.png" width="89" height="142" /></a> </p>
<p>Once you hit enter, it will look like this:</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2010/01/image2.png" width="78" height="76" /></p>
<p>Opening this folder, you will see all the Admin goodness – 277 administrative tasks, all in one place!</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/01/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2010/01/image_thumb2.png" width="157" height="244" /></a> </p>
<p>This has been a much needed feature for Windows.&#160; My only wish is that it was easier to create the super folder – for instance if I were to work on someone else’s machine, I’m not going to remember what that long string of numbers and letters are – would be nice to remember a word, or sentence to call the folder… oh well, at least we got it!&#160; </p>
<p>One more tip, I added this <strong>SuperFolder</strong> to my Favorites, so it’s accessible from any open explorer window! (Just drag the folder onto the Favorites star, and it will add it to the favorite list!)</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2010/01/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2010/01/image_thumb3.png" width="244" height="173" /></a></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-7-remote-server-admin-tools-beta-released-rsat' rel='bookmark' title='Windows 7 Remote Server Admin Tools Beta released (RSAT)'>Windows 7 Remote Server Admin Tools Beta released (RSAT)</a></li>
<li><a href='http://everydaynerd.com/how-to/fix/windows-7-enable-admin-share' rel='bookmark' title='Windows 7 &ndash; Enable $admin share'>Windows 7 &ndash; Enable $admin share</a></li>
<li><a href='http://everydaynerd.com/software/free/free-easy-filefolder-encryption' rel='bookmark' title='Free, Easy File/Folder Encryption'>Free, Easy File/Folder Encryption</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/windows-7-super-admin-folder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sync iPhone Calendar with Google using CalDev</title>
		<link>http://everydaynerd.com/apple/iphone/sync-iphone-calendar-with-google-using-caldev</link>
		<comments>http://everydaynerd.com/apple/iphone/sync-iphone-calendar-with-google-using-caldev#comments</comments>
		<pubDate>Mon, 30 Nov 2009 19:04:25 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Office]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/google/sync-iphone-calendar-with-google-using-caldev</guid>
		<description><![CDATA[Syncing my iPhone with work (Microsoft Exchange) is great, but I still wanted a to view personal calendar from Google Calendar to be synced to my iPhone too.&#160; And yes, I know you can use ActiveSync to sync Calendar on &#8230; <a class="more-link" href="http://everydaynerd.com/apple/iphone/sync-iphone-calendar-with-google-using-caldev">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/web/live/calendar-sync-for-hotmaillive-calendar-now-free' rel='bookmark' title='Calendar Sync for Hotmail/Live Calendar – Now Free!'>Calendar Sync for Hotmail/Live Calendar – Now Free!</a></li>
<li><a href='http://everydaynerd.com/google/google-calendar-now-syncs-with-blackberry' rel='bookmark' title='Google Calendar &#8211; Now syncs with Blackberry'>Google Calendar &#8211; Now syncs with Blackberry</a></li>
<li><a href='http://everydaynerd.com/google/2-way-syncing-google-calendar-outlook-finally' rel='bookmark' title='2-way Syncing: Google Calendar / Outlook (Finally!)'>2-way Syncing: Google Calendar / Outlook (Finally!)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Syncing my iPhone with work (Microsoft Exchange) is great, but I still wanted a to view personal calendar from Google Calendar to be synced to my iPhone too.&#160; And yes, I know you can use ActiveSync to sync Calendar on the iphone.&#160; This can be done by adding the CalDev calendar sync!</p>
<p>First, click the settings button on the home screen, select <strong><em>Mail, Contacts, Calendars</em></strong>:</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/11/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb2.png" width="164" height="244" /></a> <a href="http://everydaynerd.com/wp-content/uploads/2009/11/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb3.png" width="164" height="244" /></a> </p>
<p>Select <strong><em>Add Account</em></strong>, then <strong><em>Other</em></strong>, </p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/11/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb4.png" width="165" height="150" /></a> <a href="http://everydaynerd.com/wp-content/uploads/2009/11/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb5.png" width="165" height="244" /></a> </p>
<p>Now select <strong><em>Add CalDev Account</em></strong>: </p>
</p>
</p>
</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/11/image5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb6.png" width="201" height="244" /></a> </p>
<p>Enter the following information:</p>
<ul>
<li>Server:&#160; <a href="http://www.google.com">www.google.com</a></li>
<li>User Name:&#160; Your Google account email address (can be your Google Apps email address)</li>
<li>Password:&#160; Ummm… your Google account password…</li>
<li>Description:&#160; Google Calendar (or whatever you want to put here)</li>
</ul>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/11/image6.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb7.png" width="164" height="244" /></a> </p>
</p>
<p>Tap the Next button in the top right, and that’s it!&#160; I did a quick test, and added an items from both Exchange and Google Calendar, and within 1-2 minutes, it was on synced to my iPhone!</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/web/live/calendar-sync-for-hotmaillive-calendar-now-free' rel='bookmark' title='Calendar Sync for Hotmail/Live Calendar – Now Free!'>Calendar Sync for Hotmail/Live Calendar – Now Free!</a></li>
<li><a href='http://everydaynerd.com/google/google-calendar-now-syncs-with-blackberry' rel='bookmark' title='Google Calendar &#8211; Now syncs with Blackberry'>Google Calendar &#8211; Now syncs with Blackberry</a></li>
<li><a href='http://everydaynerd.com/google/2-way-syncing-google-calendar-outlook-finally' rel='bookmark' title='2-way Syncing: Google Calendar / Outlook (Finally!)'>2-way Syncing: Google Calendar / Outlook (Finally!)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/apple/iphone/sync-iphone-calendar-with-google-using-caldev/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Right Click Attach/Detach VHD Image</title>
		<link>http://everydaynerd.com/software/free/right-click-attachdetach-vhd-image</link>
		<comments>http://everydaynerd.com/software/free/right-click-attachdetach-vhd-image#comments</comments>
		<pubDate>Sat, 14 Nov 2009 22:42:20 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/software/free/right-click-attachdetach-vhd-image</guid>
		<description><![CDATA[For Windows 7 / Server 2008 R2 only – Medo has created a great little utility that will attach (mount) or detach a VHD Hard drive image file.&#160; This is a wonderful time saver for those that use VHD’s on &#8230; <a class="more-link" href="http://everydaynerd.com/software/free/right-click-attachdetach-vhd-image">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/test-drive-vista-office-free' rel='bookmark' title='Test drive Vista &amp; Office Free'>Test drive Vista &#38; Office Free</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-robocopy-is-multi-threaded' rel='bookmark' title='Windows 7: Robocopy is Multi Threaded!'>Windows 7: Robocopy is Multi Threaded!</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://everydaynerd.com/wp-content/uploads/2009/11/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/11/image_thumb1.png" width="244" height="83" /></a> </p>
<p>For Windows 7 / Server 2008 R2 only – <a href="http://www.jmedved.com/?page=vhdattach" target="_blank">Medo</a> has created a great little utility that will attach (mount) or detach a VHD Hard drive image file.&#160; This is a wonderful time saver for those that use VHD’s on a regular basis!</p>
<p>[ <a href="http://www.jmedved.com/?page=vhdattach" target="_blank">VHD Attach</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/test-drive-vista-office-free' rel='bookmark' title='Test drive Vista &amp; Office Free'>Test drive Vista &#38; Office Free</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-robocopy-is-multi-threaded' rel='bookmark' title='Windows 7: Robocopy is Multi Threaded!'>Windows 7: Robocopy is Multi Threaded!</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/software/free/right-click-attachdetach-vhd-image/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why it’s a bad idea to send large email attachments</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/exchange/why-it%e2%80%99s-a-bad-idea-to-send-large-email-attachments</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/exchange/why-it%e2%80%99s-a-bad-idea-to-send-large-email-attachments#comments</comments>
		<pubDate>Tue, 03 Nov 2009 19:13:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://nerd45.wordpress.com/2009/11/03/why-it%e2%80%99s-a-bad-idea-to-send-large-email-attachments</guid>
		<description><![CDATA[The Google Operating System Blog has a great post explaining why it’s not a good idea to send large attachments: People who demand large message size limits rarely understand the limitations of the email transmission.  Because of the MIME encoding &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/exchange/why-it%e2%80%99s-a-bad-idea-to-send-large-email-attachments">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/general/why-its-a-bad-idea-to-send-large-email-attachments' rel='bookmark' title='Why it&rsquo;s a bad idea to send large email attachments'>Why it&rsquo;s a bad idea to send large email attachments</a></li>
<li><a href='http://everydaynerd.com/adobe/acrobat/send-large-attachments-in-outlook-2007-with-acrobatcom' rel='bookmark' title='Send large attachments in Outlook 2007 with Acrobat.com'>Send large attachments in Outlook 2007 with Acrobat.com</a></li>
<li><a href='http://everydaynerd.com/blackberry/confirm-email-delivery-to-blackberry' rel='bookmark' title='Confirm Email Delivery to Blackberry'>Confirm Email Delivery to Blackberry</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://googlesystem.blogspot.com/2009/11/why-its-bad-idea-to-send-huge-files-by.html" target="_blank">Google Operating System Blog</a> has a great post explaining why it’s not a good idea to send large attachments:</p>
<blockquote><p>People who demand large message size limits rarely understand the limitations of the email transmission.  Because of the MIME encoding used when sending binary attachments, your files expand 33% when sent via email. </p>
<p>In other words, a 15MB attachment requires 20MB plus the message text, plus message headers.      <br />When you carbon copy 20 of your friends &amp; coworkers, a separate message is sent to each. 20MB x 20 = 400MB. That&#8217;s half a freaking CD.</p>
<p>If 5 of those friends are on the same small company email server, downloading those messages saturates the entire bandwidth of their T1 data line for nearly 9 minutes. Because each message has separate headers, it isn&#8217;t easily cached and gets completely downloaded by each recipient.</p>
<p>Compare this to uploading the same attachment to a web server, FTP server, file transmission service like YouSendIt, or video streaming site like YouTube. One copy is uploaded. The download is typically 8-bit so minimal expansion factor. The small business&#8217; network can cache the content, so it&#8217;s only downloaded once then fetched locally from the web caching server.</p>
<p>Bottom line, sending a large attachment via email is relocating using the U.S. Postal Service as your moving company. It is painful, limited, and expensive.</p>
</blockquote>
<p>As an email administrator, I couldn’t agree more…</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/general/why-its-a-bad-idea-to-send-large-email-attachments' rel='bookmark' title='Why it&rsquo;s a bad idea to send large email attachments'>Why it&rsquo;s a bad idea to send large email attachments</a></li>
<li><a href='http://everydaynerd.com/adobe/acrobat/send-large-attachments-in-outlook-2007-with-acrobatcom' rel='bookmark' title='Send large attachments in Outlook 2007 with Acrobat.com'>Send large attachments in Outlook 2007 with Acrobat.com</a></li>
<li><a href='http://everydaynerd.com/blackberry/confirm-email-delivery-to-blackberry' rel='bookmark' title='Confirm Email Delivery to Blackberry'>Confirm Email Delivery to Blackberry</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/exchange/why-it%e2%80%99s-a-bad-idea-to-send-large-email-attachments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean Install Windows 7 with Upgrade Disk</title>
		<link>http://everydaynerd.com/microsoft/clean-install-windows-7-with-upgrade-disk</link>
		<comments>http://everydaynerd.com/microsoft/clean-install-windows-7-with-upgrade-disk#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:25:27 +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/microsoft/clean-install-windows-7-with-upgrade-disk</guid>
		<description><![CDATA[Seems that you can perform a clean install of Windows 7 – with an upgrade disk (read much cheaper here). Normally, if you install with an upgrade disk, you cannot activate windows.&#160; The work around is to perform a clean &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/clean-install-windows-7-with-upgrade-disk">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/how-to/install-windows-7-from-usb-disk' rel='bookmark' title='Install Windows 7 from USB Disk'>Install Windows 7 from USB Disk</a></li>
<li><a href='http://everydaynerd.com/microsoft/new-microsoft-tool-to-install-windows-from-usb' rel='bookmark' title='New Microsoft tool to install Windows from USB'>New Microsoft tool to install Windows from USB</a></li>
<li><a href='http://everydaynerd.com/how-to/disable-group-policy-service-on-windows-vista7' rel='bookmark' title='Disable Group Policy Service on Windows Vista/7'>Disable Group Policy Service on Windows Vista/7</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Seems that you can perform a clean install of Windows 7 – with an upgrade disk (read much cheaper here).</p>
<p>Normally, if you install with an upgrade disk, you cannot activate windows.&#160; The work around is to perform a clean install, ensure that there are no pending Windows Updates waiting to install (orange shield on restart icon), and make the following registry change:</p>
<blockquote><p>HKLM/Software/Microsoft/Windows/CurrentVersion/Setup/OOBE/</p>
<p>Change MediaBootInstall from &quot;1&quot; to &quot;0&quot;.</p>
</blockquote>
<p>Open Regedit (Start, Type in Regedit and press enter) </p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/10/image5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb4.png" width="154" height="82" /></a> <a href="http://everydaynerd.com/wp-content/uploads/2009/10/image6.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb5.png" width="154" height="83" /></a> </p>
<p>Click “Yes” on the User Access Control </p>
<p>Navigate Regedit to: HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Setup/OOBE/</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/10/image7.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb6.png" width="154" height="56" /></a> <a href="http://everydaynerd.com/wp-content/uploads/2009/10/image8.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb7.png" width="154" height="55" /></a> </p>
<p>Right click on the <strong>MediaBootInstall</strong> key and choose Modify.&#160; Change the “1” to a “0”</p>
<p>Restart the computer, and you should be able to activate your “Clean” install of Windows 7!</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/how-to/install-windows-7-from-usb-disk' rel='bookmark' title='Install Windows 7 from USB Disk'>Install Windows 7 from USB Disk</a></li>
<li><a href='http://everydaynerd.com/microsoft/new-microsoft-tool-to-install-windows-from-usb' rel='bookmark' title='New Microsoft tool to install Windows from USB'>New Microsoft tool to install Windows from USB</a></li>
<li><a href='http://everydaynerd.com/how-to/disable-group-policy-service-on-windows-vista7' rel='bookmark' title='Disable Group Policy Service on Windows Vista/7'>Disable Group Policy Service on Windows Vista/7</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/clean-install-windows-7-with-upgrade-disk/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Microsoft tool to install Windows from USB</title>
		<link>http://everydaynerd.com/microsoft/new-microsoft-tool-to-install-windows-from-usb</link>
		<comments>http://everydaynerd.com/microsoft/new-microsoft-tool-to-install-windows-from-usb#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:04:37 +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/microsoft/new-microsoft-tool-to-install-windows-from-usb</guid>
		<description><![CDATA[Now, easier than before, Microsoft has released a handy utility to turn an ISO image of Windows 7 into a bootable DVD or Flash drive! Select the ISO file for Windows 7 Choose USB or DVD &#160; That’s it! It &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/new-microsoft-tool-to-install-windows-from-usb">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/how-to/install-windows-7-from-usb-disk' rel='bookmark' title='Install Windows 7 from USB Disk'>Install Windows 7 from USB Disk</a></li>
<li><a href='http://everydaynerd.com/microsoft/easy-way-create-windows-7-bootable-usb-drive' rel='bookmark' title='Easy way create Windows 7 Bootable USB drive'>Easy way create Windows 7 Bootable USB drive</a></li>
<li><a href='http://everydaynerd.com/microsoft/clean-install-windows-7-with-upgrade-disk' rel='bookmark' title='Clean Install Windows 7 with Upgrade Disk'>Clean Install Windows 7 with Upgrade Disk</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Now, easier than before, Microsoft has released a handy utility to turn an ISO image of Windows 7 into a bootable DVD or Flash drive!</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/10/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb.png" width="154" height="83" /></a> </p>
<p>Select the ISO file for Windows 7</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/10/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb1.png" width="154" height="83" /></a> </p>
<p>Choose USB or DVD</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/10/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb2.png" width="154" height="82" /></a>&#160;</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/10/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image_thumb3.png" width="154" height="83" /></a></p>
<p>That’s it!</p>
<p>It doesn’t get much easier than this!&#160; I will say, that I have first knowledge that installing Windows 7 with a USB device is MUCH faster than with DVD.&#160; From start to finish, USB only took about 20 minutes… DVD took close to 30-40 minutes. </p>
<p>&#160;</p>
<p><strong>[ <a href="http://images2.store.microsoft.com/prod/clustera/framework/w7udt/1.0/en-us/Windows7-USB-DVD-tool.exe">Windows 7 USB/DVD Download Tool</a></strong> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/how-to/install-windows-7-from-usb-disk' rel='bookmark' title='Install Windows 7 from USB Disk'>Install Windows 7 from USB Disk</a></li>
<li><a href='http://everydaynerd.com/microsoft/easy-way-create-windows-7-bootable-usb-drive' rel='bookmark' title='Easy way create Windows 7 Bootable USB drive'>Easy way create Windows 7 Bootable USB drive</a></li>
<li><a href='http://everydaynerd.com/microsoft/clean-install-windows-7-with-upgrade-disk' rel='bookmark' title='Clean Install Windows 7 with Upgrade Disk'>Clean Install Windows 7 with Upgrade Disk</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/new-microsoft-tool-to-install-windows-from-usb/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 is out!</title>
		<link>http://everydaynerd.com/microsoft/windows-7-is-out</link>
		<comments>http://everydaynerd.com/microsoft/windows-7-is-out#comments</comments>
		<pubDate>Fri, 23 Oct 2009 18:42:00 +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/microsoft/windows-7-is-out</guid>
		<description><![CDATA[With the biggest and best launch to date, Microsoft has launched, in my opinion, the best operating system to come out from Redmond Washington.&#160; Windows 7 is what Vista should have been.&#160; Get your credit card out, and download it &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/windows-7-is-out">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7' rel='bookmark' title='Want to win a free copy of Windows 7?'>Want to win a free copy of Windows 7?</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows/home-server/windows-home-server' rel='bookmark' title='Windows Home Server'>Windows Home Server</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-gets-xp-virtual-mode' rel='bookmark' title='Windows 7 gets XP virtual mode'>Windows 7 gets XP virtual mode</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/10/image.png" width="137" height="104" /> </p>
<p>With the biggest and best launch to date, Microsoft has launched, in my opinion, the best operating system to come out from Redmond Washington.&#160; Windows 7 is what Vista should have been.&#160; Get your credit card out, and download it today!</p>
<p><strong>Order your Windows 7 today</strong>    <br /><a href="http://store.microsoft.com/microsoft/Windows-7-Home-Premium-Upgrade/product/B0F9E641">Windows 7 Home Premium Upgrade</a>    <br /><a href="http://store.microsoft.com/microsoft/Windows-7-Professional-Upgrade/product/8BB1A4B4">Windows 7 Professional Upgrade</a>    <br /><a href="http://store.microsoft.com/microsoft/Windows-7-Ultimate-Upgrade/product/592F5AF5">Windows 7 Ultimate Upgrade</a></p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7' rel='bookmark' title='Want to win a free copy of Windows 7?'>Want to win a free copy of Windows 7?</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows/home-server/windows-home-server' rel='bookmark' title='Windows Home Server'>Windows Home Server</a></li>
<li><a href='http://everydaynerd.com/microsoft/windows-7-gets-xp-virtual-mode' rel='bookmark' title='Windows 7 gets XP virtual mode'>Windows 7 gets XP virtual mode</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/windows-7-is-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE Anti-Virus / Anti-Malware / Anti-Spyware released from Microsoft</title>
		<link>http://everydaynerd.com/microsoft/free-anti-virus-anti-malware-anti-spyware-released-from-microsoft</link>
		<comments>http://everydaynerd.com/microsoft/free-anti-virus-anti-malware-anti-spyware-released-from-microsoft#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:12:39 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Security Essentials]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/microsoft/free-anti-virus-anti-malware-anti-spyware-released-from-microsoft</guid>
		<description><![CDATA[Today, Microsoft released Security Essentials, a 100% free anti virus, anti spyware, and anti malware software.&#160; There are no subscriptions, no trials, just 100% free!&#160; Finally, people can protect their computers without forking over any money! Download, and install the &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/free-anti-virus-anti-malware-anti-spyware-released-from-microsoft">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/free-zonealarms-anti-spyware-today-only' rel='bookmark' title='FREE: ZoneAlarm&#8217;s Anti-Spyware &#8211; Today Only!'>FREE: ZoneAlarm&#8217;s Anti-Spyware &#8211; Today Only!</a></li>
<li><a href='http://everydaynerd.com/microsoft/critical-microsoft-patch-released' rel='bookmark' title='Critical Microsoft Patch Released'>Critical Microsoft Patch Released</a></li>
<li><a href='http://everydaynerd.com/security/mcafee-killing-xp-machines' rel='bookmark' title='McAfee killing XP Machines'>McAfee killing XP Machines</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/09/image48.png" width="214" height="56" /> </p>
<p>Today, Microsoft released Security Essentials, a 100% free anti virus, anti spyware, and anti malware software.&#160; There are no subscriptions, no trials, just 100% free!&#160; Finally, people can protect their computers without forking over any money!</p>
<p>Download, and install the small software package, only takes a few minutes.&#160; Once installed, you don’t have to do anything else!&#160; Security Essentials is “set it and forget it” protection!&#160; It runs in the system tray, and will alert you if there are any security issues.</p>
<p>[ <a href="http://www.microsoft.com/security_essentials/" target="_blank">Download Microsoft Security Essentials</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/free-zonealarms-anti-spyware-today-only' rel='bookmark' title='FREE: ZoneAlarm&#8217;s Anti-Spyware &#8211; Today Only!'>FREE: ZoneAlarm&#8217;s Anti-Spyware &#8211; Today Only!</a></li>
<li><a href='http://everydaynerd.com/microsoft/critical-microsoft-patch-released' rel='bookmark' title='Critical Microsoft Patch Released'>Critical Microsoft Patch Released</a></li>
<li><a href='http://everydaynerd.com/security/mcafee-killing-xp-machines' rel='bookmark' title='McAfee killing XP Machines'>McAfee killing XP Machines</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/free-anti-virus-anti-malware-anti-spyware-released-from-microsoft/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protect your PC &#8211; Disable AutoPlay</title>
		<link>http://everydaynerd.com/microsoft/protect-your-pc-disable-autoplay</link>
		<comments>http://everydaynerd.com/microsoft/protect-your-pc-disable-autoplay#comments</comments>
		<pubDate>Mon, 14 Sep 2009 15:27:49 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/microsoft/protect-your-pc-disable-autoplay</guid>
		<description><![CDATA[Windows 7 disables the AutoPlay feature which has been abused by malware (like Conficker). Now, Microsoft provides this same functionality for Windows XP, Windows Server 2003, Windows Vista, and Windows Server 2008. Download Disable AutoPlay for Windows Update for Windows &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/protect-your-pc-disable-autoplay">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<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-7-remote-server-admin-tools-beta-released-rsat' rel='bookmark' title='Windows 7 Remote Server Admin Tools Beta released (RSAT)'>Windows 7 Remote Server Admin Tools Beta released (RSAT)</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><strong><a href="http://support.microsoft.com/kb/971029">Windows 7 disables the <u><em>AutoPlay</em></u> feature</a></strong> which has been abused by malware (like Conficker). Now, Microsoft provides this same functionality for Windows XP, Windows Server 2003, Windows Vista, and Windows Server 2008.</p>
<p><strong>Download <u><em>Disable AutoPlay</em></u> for Windows</strong></p>
<ul>
<li><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=96ca61f6-8b16-4157-9635-8cfc0bbf4c35">Update for Windows XP</a></strong> </li>
<li><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dd6a61a3-b3c6-4b0a-a848-7b32be9f31c5">Update for Windows Vista</a></strong> </li>
<li><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=12e3fe0f-db79-4a27-aa7d-a456ee1c6ac4">Update for Windows Vista <em>x</em>64</a></strong> </li>
</ul>
<p>Related posts:<ol>
<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-7-remote-server-admin-tools-beta-released-rsat' rel='bookmark' title='Windows 7 Remote Server Admin Tools Beta released (RSAT)'>Windows 7 Remote Server Admin Tools Beta released (RSAT)</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>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/protect-your-pc-disable-autoplay/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily connect to 2nd monitor or projector with Windows 7</title>
		<link>http://everydaynerd.com/how-to/easily-connect-to-2nd-monitor-or-projector-with-windows-7</link>
		<comments>http://everydaynerd.com/how-to/easily-connect-to-2nd-monitor-or-projector-with-windows-7#comments</comments>
		<pubDate>Thu, 27 Aug 2009 20:34:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/how-to/easily-connect-to-2nd-monitor-or-projector-with-windows-7</guid>
		<description><![CDATA[Every laptop user has been there… at the start of a meeting, plugging in the projector, trying to get what you have on your screen to show up on the projector, pushing Fn+F8, opps, that just put you in sleep &#8230; <a class="more-link" href="http://everydaynerd.com/how-to/easily-connect-to-2nd-monitor-or-projector-with-windows-7">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-7-gets-xp-virtual-mode' rel='bookmark' title='Windows 7 gets XP virtual mode'>Windows 7 gets XP virtual mode</a></li>
<li><a href='http://everydaynerd.com/how-to/install-windows-7-from-usb-disk' rel='bookmark' title='Install Windows 7 from USB Disk'>Install Windows 7 from USB Disk</a></li>
<li><a href='http://everydaynerd.com/how-to/fix/windows-7-enable-admin-share' rel='bookmark' title='Windows 7 &ndash; Enable $admin share'>Windows 7 &ndash; Enable $admin share</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Every laptop user has been there… at the start of a meeting, plugging in the projector, trying to get what you have on your screen to show up on the projector, pushing Fn+F8, opps, that just put you in sleep mode… argh!</p>
<p>Windows 7 makes it really easy for you.  Just press the Windows Key   + P</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/08/image31.png"><img style="display: inline; border: 0px none currentColor;" title="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb28.png" border="0" alt="image" width="363" height="74" /></a></p>
<p>Just select the configuration that you want to use!  Easy huh?</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/microsoft/windows-7-gets-xp-virtual-mode' rel='bookmark' title='Windows 7 gets XP virtual mode'>Windows 7 gets XP virtual mode</a></li>
<li><a href='http://everydaynerd.com/how-to/install-windows-7-from-usb-disk' rel='bookmark' title='Install Windows 7 from USB Disk'>Install Windows 7 from USB Disk</a></li>
<li><a href='http://everydaynerd.com/how-to/fix/windows-7-enable-admin-share' rel='bookmark' title='Windows 7 &ndash; Enable $admin share'>Windows 7 &ndash; Enable $admin share</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/how-to/easily-connect-to-2nd-monitor-or-projector-with-windows-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2007 SP2 is out.</title>
		<link>http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-sp2-is-out</link>
		<comments>http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-sp2-is-out#comments</comments>
		<pubDate>Wed, 26 Aug 2009 18:55:00 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://nerd45.wordpress.com/2009/08/26/exchange-2007-sp2-is-out</guid>
		<description><![CDATA[OK all you admins, put in that Change Request, and get installing!  For an overview of the new features that are available in Exchange Server 2007 SP2, see &#8220;What&#8217;s New in Exchange Server 2007 SP2&#8243;. [ Exchange 2007 SP2 ] &#8230; <a class="more-link" href="http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-sp2-is-out">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/general/auditing-exchange-2007' rel='bookmark' title='Auditing Exchange 2007'>Auditing Exchange 2007</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>OK all you admins, put in that Change Request, and get installing!  For an overview of the new features that are available in Exchange Server 2007 SP2, see <a href="http://go.microsoft.com/fwlink/?LinkId=154404" target="_blank">&#8220;What&#8217;s New in Exchange Server 2007 SP2&#8243;</a>.</p>
<p>[ <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=4c4bd2a3-5e50-42b0-8bbb-2cc9afe3216a#tm" target="_blank">Exchange 2007 SP2</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/general/auditing-exchange-2007' rel='bookmark' title='Auditing Exchange 2007'>Auditing Exchange 2007</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>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/microsoft/software-microsoft/exchange/exchange-2007-sp2-is-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Re-size for Windows 7/Vista/XP</title>
		<link>http://everydaynerd.com/software/free/image-re-size-for-windows-7vistaxp</link>
		<comments>http://everydaynerd.com/software/free/image-re-size-for-windows-7vistaxp#comments</comments>
		<pubDate>Wed, 26 Aug 2009 18:44:56 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/software/free/image-re-size-for-windows-7vistaxp</guid>
		<description><![CDATA[Have a picture you need to resize in a hurry?&#160; No problem!&#160; Microsoft has released an updated version of it’s Image Resizer.&#160; Just right click on an image file, or many images, and choose to either copy/resize, or resize the &#8230; <a class="more-link" href="http://everydaynerd.com/software/free/image-re-size-for-windows-7vistaxp">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/get-vista-ultimate-for-free' rel='bookmark' title='Get Vista Ultimate &#8211; For FREE!'>Get Vista Ultimate &#8211; For FREE!</a></li>
<li><a href='http://everydaynerd.com/software/free/free-vista-business-office-2007' rel='bookmark' title='Free Vista Business &amp; Office 2007'>Free Vista Business &#038; Office 2007</a></li>
<li><a href='http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7' rel='bookmark' title='Want to win a free copy of Windows 7?'>Want to win a free copy of Windows 7?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Have a picture you need to resize in a hurry?&#160; No problem!&#160; Microsoft has released an updated version of it’s Image Resizer.&#160; Just right click on an image file, or many images, and choose to either copy/resize, or resize the original.</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/08/image41.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb36.png" width="154" height="42" /></a> </p>
<p>This is a really nice utility, and for any picture enthusiast, this is a must have!</p>
<p>[ <a href="http://prishcom.spaces.live.com/blog/cns!6A6A204ABDF15411!128.entry" target="_blank">Microsoft Image Resizer</a> ]</p>
<p>Related posts:<ol>
<li><a href='http://everydaynerd.com/software/free/get-vista-ultimate-for-free' rel='bookmark' title='Get Vista Ultimate &#8211; For FREE!'>Get Vista Ultimate &#8211; For FREE!</a></li>
<li><a href='http://everydaynerd.com/software/free/free-vista-business-office-2007' rel='bookmark' title='Free Vista Business &amp; Office 2007'>Free Vista Business &#038; Office 2007</a></li>
<li><a href='http://everydaynerd.com/software/free/want-to-win-a-free-copy-of-windows-7' rel='bookmark' title='Want to win a free copy of Windows 7?'>Want to win a free copy of Windows 7?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/software/free/image-re-size-for-windows-7vistaxp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Excel to create easy batch jobs</title>
		<link>http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs</link>
		<comments>http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs#comments</comments>
		<pubDate>Tue, 25 Aug 2009 15:05:38 +0000</pubDate>
		<dc:creator>Nerd</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs</guid>
		<description><![CDATA[Do you have to run a command on several servers remotely?&#160; You can enter each command separately, but every good admin should know how to make life easier for him/her self.&#160; For example, I wanted to use the psloggedon.exe tool &#8230; <a class="more-link" href="http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<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/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/microsoft/easy-way-create-windows-7-bootable-usb-drive' rel='bookmark' title='Easy way create Windows 7 Bootable USB drive'>Easy way create Windows 7 Bootable USB drive</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Do you have to run a command on several servers remotely?&#160; You can enter each command separately, but every good admin should know how to make life easier for him/her self.&#160; For example, I wanted to use the <em>psloggedon.exe</em> tool to find out who was logged in to all the servers I manage (about 150).&#160; Naturally, I could log into each server, check the Terminal Server Manager, and go on the next, but who wants to do that?&#160; </p>
<p>The PSTool – psloggedon.exe is a nice little utility that I can run from my command prompt, and have it query a remote computer, returning who is logged on to that server.&#160; So, starting in Excel (I already had a list of all the servers), I pasted the list of servers in the C column. </p>
<p>Next, in Column A, I entered &quot;<em>psloggedon.exe”</em> – the name of the executable I want to run.&#160; in Column B, I put a “ \\” – note the space in front of the \\.&#160; In column E, I entered my first switch, “ –l” – and in column F, a second switch “ –x” again, note the spaces before the switches.</p>
<p>&#160;<a href="http://everydaynerd.com/wp-content/uploads/2009/08/image36.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb31.png" width="391" height="105" /></a> <a href="http://everydaynerd.com/wp-content/uploads/2009/08/image37.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb32.png" width="392" height="106" /></a> </p>
<p>Now, to bring the whole thing together.&#160; I LOVE the command Concatenate.&#160; </p>
</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/08/image38.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb33.png" width="403" height="68" /></a></p>
<p>In column G, I entered <strong>=concatenate(A1,B1,C1,D1,E1)</strong></p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/08/image39.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb34.png" width="406" height="28" /></a> </p>
<p>This will combine all the columns together (now you know why the spaces were above) for your final command.</p>
<p><a href="http://everydaynerd.com/wp-content/uploads/2009/08/image40.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://everydaynerd.com/wp-content/uploads/2009/08/image_thumb35.png" width="407" height="60" /></a> </p>
<p>You can now select column G, and copy and paste it into notepad, and save it as a .bat file.&#160; You now have an easily made bat file, using Excel.</p>
<p>Related posts:<ol>
<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/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/microsoft/easy-way-create-windows-7-bootable-usb-drive' rel='bookmark' title='Easy way create Windows 7 Bootable USB drive'>Easy way create Windows 7 Bootable USB drive</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://everydaynerd.com/how-to/use-excel-to-create-easy-batch-jobs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

