How to Change SIP Listening Port on Exchange Unified Messaging Server
While we were working on Unified Messaging configuration and troubleshooting , a question was raised that if Exchange team can change the default SIP listening port for the server ?? Answer is yes we...
View ArticleMailBox Report -Exchange 2007
Very well formated report in HTML format email to your email address: Taken from some other site but successfully tested. just change email address to your email address & ip address to ipaddress...
View ArticleRedirect http to https –OWA
Add the below code to index.html in IIS. <html> <head> <title>HTML Redirection to https:</title> <META HTTP-EQUIV=”Refresh” CONTENT=”1; URL=https://exchange/owa“>...
View ArticleFiltering Message Tracking Log
Filtering message tracking log on the basis of sender & recipient can be easily achieved thru powershell: For example: you want to find mails where sender or recipents are from specific domain: Run...
View ArticleRemoving a message from all mailboxes
Sometime situation arises that you have to remove a message from all mailboxes as it has been accidently send & is not intended for all. Get-mailbox -database ‘Database’ | export-mailbox...
View ArticleExchange 2007 Creating new mail.que database
Exchange 2007 Creating new mail.que database: On HUB Servers: 1. Use get-queue command in shell or queue viewer to check that ques are empty. 2. Enter net pause MSExchangeTransport command. To stop the...
View ArticleMessage Tracking Event ids
Message Tracking Event ids EventID Description DEFER Message delivery delayed DELIVER Message delivered to a mailbox DSN A delivery status notification was generated. Messages quarantined by the...
View ArticleExchange 2007–>Bulk Create Mailbox
Create a CSV file with columns as below: Database Password Name OU Alias fqdn ##Create password as secure string $data = import-csv $args[0] ## Create a function to convert password into a secure...
View ArticleNew-ExchangeCertificate Cmdlet Syntax
Create a SSL certification request thru Exchange management Shell using the New-ExchangeCertificate cmd let For those of you that don’t remember the syntax of the cmdlet. below link will be of great...
View ArticleBacking up & Restoring exchange certificates
There are two ways to backup your OWA certificates. 1. Thru certificates MMC Snapin Open mmc & add certificates snapin as Local machine. Click on the certificate that you want to backup &...
View ArticleExchange 2007 Catch all from Hub Transport
One of our client has forwarded a requirement that they want to decomission their old domain but want that they want to catch mails from that domain to a single mailbox on outside client network. We...
View ArticleOutlook 2003 Count Folders
To count the number of mails in outlook folder wise , the below script can help you First go to tools –> macro –>security –>set it to low Then go to tools –> macro –>visuval basic editor...
View ArticleWhat is Grey Listing
Greylisting is quickly emerging as the new weapon that can be effectively used to fight against spam. Greylisting is somewhat related to whitelisting and blacklisting, but instead of specifying who is...
View ArticleMS Exchange 2007- Adding email addresses thru powershell
For all those guys who are beginers in powershell , here is a cool tip: Fist get the mail box thru Get-mailbox command $mailbox = get-mailbox vikas Second get in to multivalued attribute & add one...
View ArticleMS Exchange getting members of Dynamic Groups
Here is the simple powershell cmdlet for getting members of Dynamic groups: # get Group first from get command $a = Get-DynamicDistributionGroup “+All-BT” #expand groupmembership Get-Recipient...
View ArticleExchange 2007 & Exchange 2010 Differences
These are the major changes that can be seen in new Exchange version:(that I can remember ) 1. No SIS in exchange 2010(Single instance storage) 2. RBAC(Role based access control List. 3. Exchange web...
View ArticleRemoving public folder store from Exchange 2003 front end server
As a best practice we should remove public folder store from exchange front end server. I have tried the arcticle on Microsft site that states that just right click the store—> click move all...
View ArticleMove-Mailbox in bulk Script
Hi All, Want to share three scripts that can be used to move mailboxes each has its on benefits. Two of them have been written by me & one I have found on internet & customized it. 1. Simple...
View ArticleAutodiscover configuration without certificate requirement
Hi All, Microsoft has introduced one more way for configuring autodiscover that does’nt require a complex configuration & certificate for autodiscover. Outlook 2007 SP1 & aove query for...
View ArticleNo more Signature Tools required For Exchange 2010
Hi All, Exchange 2010 has the capability based on transport rules to add AD attributes such as: DisplayName, FirstName, LastName, Department, and Company to the Disclaimer. You can configure Transport...
View Article