Archive for August, 2010

Microsoft Exchange Online–User Group Meeting September 09

Philadelphia Area Exchange Server User Group is hosting a meeting on September 9, dedicated to Microsoft Exchange Online!

Many have been asking what does Microsoft Online offer? What does it mean? How do I upgrade my skills for new type of computing that is gaining popularity rapidly.

Well, we are answering the questions by dedicating this meeting specifically to Microsoft Exchange Online offering. We will discuss details, answer questions and demo BPOS-S deployment live!

While, we are deviating from our standard meeting schedule (second Tuesday of the month), we are sure you will enjoy the content being covered and greatly benefit from it.

We highly recommend you attend in person if possible. You can find more details and RSVP here.

Remote users can join using Live Meeting at URL http://bit.ly/phillyexugmonthly. If you do not have Live Meeting client installed, you can install it from http://bit.ly/livemeetingclient.

We look forward to your valued participation in this very exciting meeting.

Originally posted at http://blogs.technet.com/bshukla

Share

Script to change Address Book Service throttling on Exchange 2010

If you are deploying BlackBerry in Exchange 2010 environment, one of the requirements is to change throttling limits on Address Book Service from default 50 to 100,000. While I reserve my judgment to what number is right, you will have to change it to some number above 50 for sure.

If you have many CAS servers where you have to change this, it quickly becomes painful because you have to change config file and restart services.

Well, sweat no more if you are in this situation. Use my script instead.

You can download the script here: Set-ThrottlingLimit.ps1

I will avoid posting entire code here but below are some examples of how you can run it:

The following example will query specified server for current value of MaxSessionsPerUser:

 

Set-ThrottlingLimit -Server Server1

 

The following example will set MaxSessionsPerUser to 5000 and restart services MSEXchangeRPC and MSExchangeAB without confirmation:

 

Set-ThrottlingLimit -Server Server1 -MaxSessionsPerUser "5000" -force $true

 

The following example will set MaxSessionsPerUser to 5000 and restart services MSEXchangeRPC and MSExchangeAB after confirmation from user:

 

Set-ThrottlingLimit -Server Server1 -MaxSessionsPerUser "5000"

 

Questions and Comments are always welcome.

Originally posted at http://blogs.technet.com/bshukla

Share