Tag Archive: exchange


I came across the following error while trying to add a mail enabled group to a Public Folder:

1st I tried changing the group from distribution to security, but, I still got the same error.

Then I found this post. Turns out the GUI doesn’t completely change the object. You need to run the following command from the Exchange Management Shell (Exchange 2007 for me):

Set-Distributiongroup–identity

In my case it was:

Set-DistributionGroup -identity AmbCare

You can read the linked post for the command for Exchange 2010.

IMF Updates Keep Prompting for Installation

With the recent update to the IMF signatures for Exchange 2003 I got caught in a never ending circle of installation prompts. The new update would install, then last months update would ask to install and so on and so on. After realizing what was going on I went in search of answers. The 1st thing to try was to reset the Windows Update Cache. It can be done by plopping the code below in to a bat file and running it on the offending server.

net stop bits
net stop wuauserv
regsvr32 /u wuaueng.dll /s
del /f /s /q %windir%\SoftwareDistribution\*.*
del /f /s /q %windir%\windowsupdate.log
regsvr32 wuaueng.dll /s
net start bits
net start wuauserv
wuauclt.exe /resetauthorization /detectnow

This did not solve the issue for me. I turned out that my WSUS server did not mark the old IMF update as declined. Once the old update’s status was changed to declined the update cycle was stopped dead in its tracks.

SPF for Exchange

If you run a MS Exchange server it is a good idea to implement SPF to help protect yourself against spammers spoofing your domain.

You can use this tool to create your SPF code and then this tutorial to add the entry into your DNS server.  Consider this another tool in the fight against spam.

Powered by WordPress | Theme: Motion by 85ideas | © 2006–2012 Dave Hildebrand | 67 queries in 5.805 seconds.