RE: process msexchangeadtopologyservice.exe topology discovery failed

2011-11-15 Thread PRamatowski
Is the server a member of the "Exchange Servers" group? From: Jason Benway [mailto:benw...@jsjcorp.com] Sent: Tuesday, November 15, 2011 8:47 AM To: MS-Exchange Admin Issues Subject: process msexchangeadtopologyservice.exe topology discovery failed I've had this issue a few times on our new CAS s

RE: process msexchangeadtopologyservice.exe topology discovery failed

2011-11-15 Thread Jason Benway
yes From: pramatow...@mediageneral.com [mailto:pramatow...@mediageneral.com] Sent: Tuesday, November 15, 2011 9:08 AM To: MS-Exchange Admin Issues Subject: RE: process msexchangeadtopologyservice.exe topology discovery failed Is the server a member of the "Exchange Servers" group? From: Jason Be

PS Question

2011-11-15 Thread Cameron
Good afternoon all, I'm trying to get the number of folders that a user has in their mailbox. I've tried get--mailboxfolderstatistics -identity "domain\user name" and it returns all the folders in the mailbox. What I would actually like returned is Number of folders = x for that user. My google-fu

RE: PS Question

2011-11-15 Thread Damien Solodow
So close. :) Try this: (get-mailboxfolderstatistics -identity "domain\user name").Count DAMIEN SOLODOW Systems Engineer 317.447.6033 (office) 317.447.6014 (fax) HARRISON COLLEGE From: Cameron [mailto:cameron.orl...@gmail.com] Sent: Tuesday, November 15, 2011 1:31 PM To: MS-Exchange Admin Issues S

Re: PS Question

2011-11-15 Thread Cameron
Perfect! Thanks Damien! On Tue, Nov 15, 2011 at 1:35 PM, Damien Solodow wrote: > So close. J > > Try this: (get-mailboxfolderstatistics –identity “domain\user name”).Count > > > ** ** > > DAMIEN SOLODOW > > Systems Engineer > > 317.447.6033 (office) > > 317.447.6014 (fax)**

Re: PS Question

2011-11-15 Thread Wright, Seth - wrightst
Something like this? $users = Get-Mailbox -Identity wrightst foreach ($user in $users) { $folderCount = (Get-MailboxFolderStatistics -Identity $user).Count Write-Host "Number of folders = $folderCount for user $user" } Number of folders = 65 for user wrightst --- seth wrigh

RE: PS Question

2011-11-15 Thread PRamatowski
Ok to ask a different question in this thread?:) $getmbx= get-mailboxserver | get-mailbox -ResultSize Unlimited | get-MailboxStatistics $getmbx | select DisplayName,TotalItemSize,Itemcount,StorageLimitStatus,LastLogonTime | where {($_.totalItemSize -gt 10)} | sort-object TotalItemSize | Expo

Re: PS Question

2011-11-15 Thread Wright, Seth - wrightst
$mbox = Get-Mailbox wrightst $mbox | select DisplayName,TotalItemSize,ItemCount,StorageLimitStatus,LastLogonTime,@{Name="Office"; Expression={ (Get-User $_.LegacyDN).Office }} DisplayName: Wright, Seth - wrightst TotalItemSize : 566.1 MB (593,627,788 bytes) ItemCount : 378

OAB download does not complete

2011-11-15 Thread Beahm, Keith
An increasing number of Outlook clients are reporting that their OAB sync task fails to complete. I have created a new OAB, set it as Organizational default, and set it as default on each DB. I have verified events 3100 3101 (start & stop OAB generation), and the folders are populating with ap

RE: process msexchangeadtopologyservice.exe topology discovery failed

2011-11-15 Thread Michael B. Smith
Go ahead and manually specify the AD site in the registry. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Jason Benway [mailto:benw...@jsjcorp.com] Sent: Tuesday, November 15, 2011 8:47 AM To: MS-Exchange Admin Issues Subject: process msexchangeadtopo

2003 to 2010 Public Folders

2011-11-15 Thread ExchList
OK following Mike's article (great job) I'm almost done migrating from 2003 to 2010 in my mirror lab. I just noticed that when some users logon they don't get the see the contents of the public folders; only the folder. I also noted that those who CAN NOT see the contents have their mailboxes on

RE: PS Question

2011-11-15 Thread PRamatowski
Awesome Seth, This did it for me, thanks! $mbox = Get-Mailbox -resultsize unlimited | get-mailboxstatistics $mbox | select DisplayName,TotalItemSize,ItemCount,StorageLimitStatus,LastLogonTime,@{Name="Office"; Expression={ (Get-User $_.LegacyDN).Office }} | Export-csv MBX_office.CSV -NoType ---

Re: PS Question

2011-11-15 Thread Wright, Seth - wrightst
I should have mentioned that the Name/Expression hashtable thing is called a calculated property, for those who have never seen them before. Read more about it here: http://technet.microsoft.com/en-us/library/ff730948.aspx --- Seth On Nov 15, 2011, at 4:22 PM, wrote: > Awesome Seth, >