Archive

Archive for the ‘Exchange Server’ Category

Microsoft Exchange 2007 / 2010 – Statistics using Exchange Management Shell (EMS)

March 14th, 2010 christian No comments
Using Microsoft Exchange 2007 / 2010 Management Shell (PowerShell with extensions), you can pull out some very exciting statistics. That was never that easy in the pre Exchange 2007 era. Logo_ExchangeSvr

Read more…

Exchange 2010: A previous version of Exchange Server..

November 18th, 2009 christian No comments
Receiving the message ‘a previous version of exchange server is already installed on this machine’ when trying to install Microsoft Exchange Server 2010? Logo_MsExchange2010

Read more…

Categories: Exchange Server, Microsoft Tags:

Exchange 2007 – Enumerate all public folders and their email addresses using Exchange Management Shell (EMS)

September 30th, 2009 christian No comments

Ever wanted to enumerate all Public Folders and their email addresses? here’s a way to do this using Microsoft Exchange Management Shell (EMS)

Get-Mailpublicfolder | select name , alias ,EmailAddresses | foreach {
"Name: "+$_.name
"Alias: "+$_.alias
 
$_.EmailAddresses | foreach {
if($_.SmtpAddress){
if($_.IsPrimaryAddress){
"Primary SmtpAddress: $($_.SmtpAddress)"
} else {
"SmtpAddress: $($_.SmtpAddress)"
}
}
}
 
write-output ""
}

or redirect the output into a file for analysis, whatever..

Get-Mailpublicfolder | select name , alias ,EmailAddresses | foreach {
"Name: "+$_.name
"Alias: "+$_.alias
 
$_.EmailAddresses | foreach {
if($_.SmtpAddress){
if($_.IsPrimaryAddress){
"Primary SmtpAddress: $($_.SmtpAddress)"
} else {
"SmtpAddress: $($_.SmtpAddress)"
}
}
}
 
write-output ""
} | out-file -filepath c:\publicFolders.txt -encoding ASCII
Categories: Exchange Server, Microsoft Tags:

Exchange 2007 – Get Email Addresses for each Mailbox using Exchange Management Shell (EMS)

September 30th, 2009 christian No comments

Ever needed to export the list of mailbox of your Microsoft Exchange 2007 with all alias and all the smtp addresses? Try this with this command:

Get-Mailbox | select name , alias ,EmailAddresses | foreach {
"Name: "+$_.name
"Alias: "+$_.alias
 
$_.EmailAddresses | foreach {
if($_.SmtpAddress){
if($_.IsPrimaryAddress){
"Primary SmtpAddress: $($_.SmtpAddress)"
} else {
"SmtpAddress: $($_.SmtpAddress)"
}
}
}
 
write-output ""
} > c:\smtp.txt

or use the out-file cmdlet..

######### Using Out-File Cmdlet ############
 
Get-Mailbox | select name , alias ,EmailAddresses | foreach {
"Name: "+$_.name
"Alias: "+$_.alias
 
$_.EmailAddresses | foreach {
if($_.SmtpAddress){
if($_.IsPrimaryAddress){
"Primary SmtpAddress: $($_.SmtpAddress)"
} else {
"SmtpAddress: $($_.SmtpAddress)"
}
}
}
write-output ""
} | out-file -filepath c:\smtp.txt -encoding ASCII
Categories: Exchange Server, Microsoft Tags:

Remove / Uninstall Exchange – This server is the Recipient Update Server RUS for the domain

August 22nd, 2009 christian No comments

When you try to uninstall or remove Microsoft Exchange 2003, you’re getting the error message:

Microsoft Exchange Installation Wizard

The component Microsoft Exchange Messaging and Collaboriation Server cannot be assigned the action “Remove” because:

- This server is the Recipient Update Server for the domain “someDomain.tld”. You cannot uninstall this server until you select a different Recipient Update Server for this domain.

Exchange_2003_removal_RUS_assigned

Exchange_2003_removal_RUS_assigned

Read more…

Categories: Exchange Server, Microsoft Tags:

Microsoft Exchange Server 2007 – 530 5.7.1 Client was not authenticated – Solution

August 20th, 2009 christian 1 comment

If you install Microsoft Exchange Server out of the box and you get the following error message when trying to receive an email:

This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:
 test@christiano.ch
SMTP error from remote mail server after MAIL FROM:<sunny@christiano.ch> SIZE=6841:
host xyz.christiano.ch [194.123.18.170]: 530 5.7.1 Client was not authenticated

Read more…

Categories: Exchange Server, Microsoft Tags:

Missing Microsoft Exchange 2007 Anti Spam Agents? Here’s the how to: Install anti-spam agents on Hub Transport server

August 20th, 2009 christian No comments

If you’re using Exchange Server 2007 in a topology with an Edge Transport server, the anti-spam agents – Connection Filtering, Content Filter, Sender ID, Sender Filter, Recipient Filter, and Protocol Analysis – are installed on the Edge server. You do not need these agents installed on the Hub server(s).

In environments without an Edge server role, these need to be installed manually on the Hub Transport server(s).

Read more…

Categories: Exchange Server, Microsoft Tags:

Microsoft Exchange 2007 Catch all Transport Agent

August 20th, 2009 christian No comments

This is a little tutorial about how to install a Microsoft Exchange Catch All Agent / Mailbox. ‘Catch all’ is the ability of an SMTP server to redirect messages to non-existing recipients to a specific address. For example, your domain is like @christiano.ch. Someone sends an email to sunny@christiano.ch and you don’t have a mailbox with the corresponding email address, the email can’t be delivered. The sender get’s a notification (NDR – Non Delivery Receipt,  STMP RFC Error Code 550) similiar to this one:

Read more…

Categories: Exchange Server, Microsoft Tags:

Tutorial about installing Microsoft Forefront Security for Exchange Server 2007

August 18th, 2009 christian No comments

Microsoft Forefront Security for Exchange Server integrates multiple scan engines from industry-leading security firms into a comprehensive, layered solution, helping businesses protect their Microsoft Exchange Server messaging environments from viruses, worms, spam, and inappropriate content. In this post i documented the installation of Microsoft Forefront Security for Exchange 2007 in the form of a tutorial.

Read more…

Installing Microsoft Exchange 2007 SP1 on Windows Server 2008 x64

August 6th, 2009 christian 2 comments

Yep, today is a geeky freaky day. I’ll install an Exchange 2007 SP1 on a Microsoft Windows Server 2008 x64 Datacenter. Unfortunately the whole Microsoft Exchange Server will be installed on one single server.
From the security perspective this setup is not recommended, anyway, that’s the way to go..

Starting position is: a Server with Microsoft Windows 2008 x64 Datacenter Edition (Installing it on a Standard and Enterprise Edition does not make a difference)..

First Step is, join a the Server to an existing Domain. Exchange Server Setup won’t let you install Exchange Server on a Machine which is not member of a domain.

Whenever you start Setup.exe run it elevated (Run as administrator)

Read more…

WordPress SEO fine-tune by Meta SEO Pack from Poradnik Webmastera