<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: A few Exchange PowerShell scriptlets</title>
	<atom:link href="http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/</link>
	<description>Just another IT guy!</description>
	<lastBuildDate>Fri, 30 Jul 2010 14:25:06 -0600</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Elan Shudnow</title>
		<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/comment-page-1/#comment-9852</link>
		<dc:creator>Elan Shudnow</dc:creator>
		<pubDate>Tue, 30 Mar 2010 20:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.shudnow.net/?p=1024#comment-9852</guid>
		<description>Use exfolders for Exchange 2010 and PFDAVAdmin for Exchange 2003/2007. </description>
		<content:encoded><![CDATA[<p>Use exfolders for Exchange 2010 and PFDAVAdmin for Exchange 2003/2007.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/comment-page-1/#comment-9851</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Tue, 30 Mar 2010 13:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.shudnow.net/?p=1024#comment-9851</guid>
		<description>Do you know how to script the sharing of the calendar for a shared mailbox </description>
		<content:encoded><![CDATA[<p>Do you know how to script the sharing of the calendar for a shared mailbox</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shany</title>
		<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/comment-page-1/#comment-9134</link>
		<dc:creator>shany</dc:creator>
		<pubDate>Fri, 11 Dec 2009 09:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.shudnow.net/?p=1024#comment-9134</guid>
		<description>Hi Elan 
 
Could you please add one script or command line ,where we can use both Get-mailbox and Get-MailboxStatistics? 
 
I have one example ,but its trhrowing error  
 
&quot;MailboxDisplayName,SAMAccount,EmployeeID,Department,ServerName/StoreName,Size,TotalItems,LastLoggedOnUserAccount,LastLogoffTime,LastLogonTime&quot;&#124; out-file GMS.csv;Get-Mailbox -resultsize unlimited -server st-excl21 &#124; Get-MailboxStatistics -server st-excl21 &#124; ForEach{$a = $_.DisplayName;$b=$_.Alias;$c=$_.CustomAttribute12;$d=$_.CustomAttribute4;$e=$_.database;$f=$_.TotalItemSize.Value.ToMB();$g=$_.itemcount;$h=$_.LastLoggedOnUserAccount;$i=$_.LastLogoffTime;$j=$_.LastLogonTime;&quot;$a,$b,$c,$d,$e,$f,$g,$h,$i,$j&quot;} &#124; out-file GMS.csv -Append 
 
Please help </description>
		<content:encoded><![CDATA[<p>Hi Elan </p>
<p>Could you please add one script or command line ,where we can use both Get-mailbox and Get-MailboxStatistics? </p>
<p>I have one example ,but its trhrowing error  </p>
<p>&quot;MailboxDisplayName,SAMAccount,EmployeeID,Department,ServerName/StoreName,Size,TotalItems,LastLoggedOnUserAccount,LastLogoffTime,LastLogonTime&quot;| out-file GMS.csv;Get-Mailbox -resultsize unlimited -server st-excl21 | Get-MailboxStatistics -server st-excl21 | ForEach{$a = $_.DisplayName;$b=$_.Alias;$c=$_.CustomAttribute12;$d=$_.CustomAttribute4;$e=$_.database;$f=$_.TotalItemSize.Value.ToMB();$g=$_.itemcount;$h=$_.LastLoggedOnUserAccount;$i=$_.LastLogoffTime;$j=$_.LastLogonTime;&quot;$a,$b,$c,$d,$e,$f,$g,$h,$i,$j&quot;} | out-file GMS.csv -Append </p>
<p>Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elan Shudnow</title>
		<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/comment-page-1/#comment-6788</link>
		<dc:creator>Elan Shudnow</dc:creator>
		<pubDate>Sun, 17 May 2009 13:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.shudnow.net/?p=1024#comment-6788</guid>
		<description>Can&#039;t believe I didn&#039;t know that!  *slaps self*  Thanks Shay.</description>
		<content:encoded><![CDATA[<p>Can&#8217;t believe I didn&#8217;t know that!  *slaps self*  Thanks Shay.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shay Levy</title>
		<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/comment-page-1/#comment-6787</link>
		<dc:creator>Shay Levy</dc:creator>
		<pubDate>Sat, 16 May 2009 22:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.shudnow.net/?p=1024#comment-6787</guid>
		<description>Hi Elan,

Scriptlet 1: Get-MailboxDatabase Identity parameter accept wildcard characters so you could skip Where-Object and do: 

Get-MailboxDatabase -Identity  *Database1* &#124; Format-Table Name,Database -wrap -autosize</description>
		<content:encoded><![CDATA[<p>Hi Elan,</p>
<p>Scriptlet 1: Get-MailboxDatabase Identity parameter accept wildcard characters so you could skip Where-Object and do: </p>
<p>Get-MailboxDatabase -Identity  *Database1* | Format-Table Name,Database -wrap -autosize</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A few Exchange PowerShell scriptlets &#171; JC&#8217;s Blog-O-Gibberish</title>
		<link>http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/comment-page-1/#comment-6785</link>
		<dc:creator>A few Exchange PowerShell scriptlets &#171; JC&#8217;s Blog-O-Gibberish</dc:creator>
		<pubDate>Fri, 15 May 2009 13:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.shudnow.net/?p=1024#comment-6785</guid>
		<description>[...] A few Exchange PowerShell&#160;scriptlets  Posted on May 15, 2009 by johnacook   http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/ [...]</description>
		<content:encoded><![CDATA[<p>[...] A few Exchange PowerShell&nbsp;scriptlets  Posted on May 15, 2009 by johnacook   <a href="http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/" rel="nofollow">http://www.shudnow.net/2009/05/14/a-few-exchange-powershell-scriptlets/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
