<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Get Exchange Online Mailbox Size in GB</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2013/02/27/get-exchange-online-mailbox-size-in-gb.aspx</link><description>Microsoft PFE, Brian Jackett, talks about using Windows PowerShell to get Exchange Online Mailbox size in GB.</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Get Exchange Online Mailbox Size in GB</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2013/02/27/get-exchange-online-mailbox-size-in-gb.aspx#3555346</link><pubDate>Wed, 27 Feb 2013 18:23:20 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3555346</guid><dc:creator>Tunde</dc:creator><description>&lt;p&gt;Interesting! I used below trick in mine and it produces same result as yours. The crazy part is I search everywhere for something like this before I decided to resolve it myself. &lt;/p&gt;
&lt;p&gt;-------------------------------&lt;/p&gt;
&lt;p&gt;$stats = $mb | Get-MailboxStatistics | Select-Object TotalItemSize,ItemCount,LastLogonTime,StorageLimitStatus,TotalDeletedItemSize&lt;/p&gt;
&lt;p&gt;	$lastlogon = $stats.LastLogonTime&lt;/p&gt;
&lt;p&gt;	$TotalItemSize = [double]$Stats.TotalItemSize.SubString($Stats.TotalItemSize.indexof(&amp;quot;(&amp;quot;)+1, $Stats.TotalItemSize.indexof(&amp;quot; b&amp;quot;)-$Stats.TotalItemSize.indexof(&amp;quot;(&amp;quot;))&lt;/p&gt;
&lt;p&gt;	$TotalItemSizeGB = $TotalItemSize / 1073741824&lt;/p&gt;
&lt;p&gt;	$TotalItemSizeGB = &amp;quot;{0:N2}&amp;quot; -f $TotalItemSizeGB&lt;/p&gt;
&lt;p&gt;	$TotalItemSizeMB = $TotalItemSize /1048576&lt;/p&gt;
&lt;p&gt;	$TotalItemSizeMB = &amp;quot;{0:N0}&amp;quot; -f $TotalItemSizeMB&lt;/p&gt;
&lt;p&gt;--------------------------------------&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3555346" width="1" height="1"&gt;</description></item></channel></rss>