Managing dedicated Rooms
Deleting mails/meetings in a mailbox
Good Permission for Microsoft Exchange 2007
Blackberry permissions for Exchange 2007
After installing and configuring the Blackberry Enterprise Server application you will need to run the following Exchange 2007 PowerShell commands to grant the Blackberry service account (besadmin) access to the Exchange mailboxes.
Granting access for a single mailbox
In this example we are giving the besadmin account the access required to handle the email for the john.doe@domain.com mailbox-
Migrating to Microsoft Exchange 2010
Since the launch of Microsoft Exchange 2010, organizations looking to update their infrastructure with more energy and cost-efficient servers are rapidly adopting the messaging platform, making it the dominant selection in the messaging and collaboration marketplace.
Exchange 2007 console tips and tricks
Exchange Server 2007 introduced a new GUI management console (Exchange Management Console) to replace the Exchange System Manager (ESM) of previous versions. This earlier blog post The new Exchange 2007 Management Console overview gives an overview of the console. In this blog post I’ll show some tips and tricks of the console.
Exchange Server 2007 Deployment: 10 Tips When Installing
(From : http://technet.microsoft.com/en-us/library/aa996011(v=exchg.65).aspx)
Topic Last Modified: 2006-10-20
With Microsoft Exchange Server 2007, deployment is easier than it’s ever been. Take a look at some of the major improvements to Exchange 2007 Setup:
- The Setup wizard has a new look! It is easy to use and effortlessly guides you through the installation.
Validate an email address
Validating an e-mail address could be really usefull. Here is a really good thing to do before sending that address to a creation/modification script :
Function ValidMail ([string]$Mail ) {
$regexp=”^([a-zA-Z0-9_-.]+)@(([[0-9]{1,3}” +
“.[0-9]{1,3}.[0-9]{1,3}.)|(([a-zA-Z0-9-]+” +
“.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(]?)$”if ($Mail -match $regexp) {
$return=$True
}
Else {
$return=$False
}
Return $return
}
PowerShell Snapins
Snapins in Powershell are like toolboxes, including many commands, specific to a tool, a software, etc..
The two most important (most famous) :
Microsoft.Exchange.Management.PowerShell.Admin
VMware.VimAutomation.Core
Here is the command to add a snapin :
Add-PSSnapin
A really easy way to add all installed snapins :
You must be logged in to post a comment.