Sunday, February 28, 2010

View Disconnected Mailbox on Exchange 2007 by using PowerShell

Execute the command below on PwerShell.

Get-MailboxStatistics -Server | where { $_.DisconnectDate -ne $null } | select DisplayName,DisconnectDate
Read more...

How To Enable Disconnected Mailbox On Exchange 2007

Follow the links below;

http://www.msexchange.org/tutorials/Managing-mailboxes-Exchange-Server-2007-Part2
.html
Read more...

Friday, February 19, 2010

Symantec Agent is not running or running an incompatible version

If you are living DHCP address switching problem between Quarantine and Default scope address and using DHCP pluggin for NAC solution check the following steps below;

1) Firstly Control your DHCP User Class Properties ; Be sure you have correctly configured your scope options.





Under Static Route Option you should type the releaated host ip address twice or if host is one other subnet type gateway and host ip address.

2) Under User Class Check if your DHCP lease time is not too long.





http://service1.symantec.com/SUPPORT/ent-security.nsf/docid/2007378141105298

3) Check the solution in the links below;
http://www.symantec.com/connect/forums/snac-dhcpplugin-always-get-quarantined-ip-address

http://service1.symantec.com/SUPPORT/ent-security.nsf/ppfdocs/2008020608273348?Open&dtype=corp&src=&seg=&om=1&om_out=prod

http://service1.symantec.com/SUPPORT/ent-security.nsf/docid/2007091212133148


4) Lastly , as my experience DHCP Server and SEPM should be installed on different servers.

Read more...

Friday, February 12, 2010

IMCAEX The recipient's e-mail address was not found in the recipient's e-mail system.

Check If your User have LegacyExchangeDN Attribute by using ADSIEDIT tool.





IF The Attribute has not been set then execute the Powershell command below;

Get-MailContact -OrganizationalUnit "OUNAME" -resultsize unlimited Where-Object { $_.legacyexchangedn -eq "" } Set-MailContact
Get-MailUser -OrganizationalUnit "OUNAME" -resultsize unlimited Where-Object { $_.legacyexchangedn -eq "" } Set-MailUser
Get-DistributionGroup -OrganizationalUnit "OUNAME" -resultsize unlimited Where-Object { $_.legacyexchangedn -eq "" } Set-DistributionGroup
Get-AddressList Set-AddressList
Get-AddressList Update-AddressList

Note: Instead OUNAME type your Organizational Unit name where your users resides.
Read more...
 
span.fullpost {display:none;}