<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Luka Manojlovic &#187; MS Exchange server 2007</title>
	<atom:link href="http://luka.manojlovic.net/category/e-mail-related/ms-exchange-server/ms-exchange-server-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://luka.manojlovic.net</link>
	<description>Luka&#039;s technical blog</description>
	<lastBuildDate>Sun, 18 Dec 2011 14:19:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SBS 2008 / Exchange 2007 remote.company.com and TLS&#8230;</title>
		<link>http://luka.manojlovic.net/2010/09/05/sbs-2008-exchange-2007-remote-company-com-and-tls/</link>
		<comments>http://luka.manojlovic.net/2010/09/05/sbs-2008-exchange-2007-remote-company-com-and-tls/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 12:18:02 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[MS Scripting]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=250</guid>
		<description><![CDATA[Everyone that has ever installed SBS 2008 has encountered the wizard that create certificate and remote workplace &#8211; by default called remote.company.com (yes, you can chose other prefixes but let say that I like remote becouse it is easy to remember for my users&#8230;).SBS wizards generates a certificate for this hostname and uses it for [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone that has ever installed SBS 2008 has encountered the wizard that create certificate and remote workplace &#8211; by default called <strong>remote.company.com</strong> (yes, you can chose other prefixes but let say that I like remote becouse it is easy to remember for my users&#8230;).<br />SBS wizards generates a certificate for this hostname and uses it for all services (Outlook web access, Active Sync stuff and also for SMTP receive and send connectors&#8230;).<br />The problem is when you want to rename your SMTP receive and send connectors to match the records in DNS. It is a best practice to have same SMTP greetings as the records in DNS so for example if you have a domain <strong>company.com</strong> and you have an host record <strong>A</strong> called <strong>mail.company.com</strong> and <strong>MX</strong> record pointed to <strong>mail.company.com</strong> it is correct and I suggest you to folow this rule to have <strong>SMTP greeting</strong> or fqdn for SMTP connectors to match<strong> mail.company.com.</strong></p>
<p>You can rename your connectors however you want by using Exchange management console but you will lose functionality of <strong>TLS </strong>in SMTP traffic &#8211; becouse the certificate <strong>remote.company.com</strong> does not match fqdn or smtp greeting of a connector that advertise <strong>mail.company.com. </strong>You will also get an error in Event log saying:</p>
<p>Microsoft Exchange could not find a certificate that contains the domain name mail.company.com in the personal store on the local computer&#8230;</p>
<p> Ok, what can we do now?</p>
<p>Well turn on Exchange Management Shell &#8211; that is Powershell with modules for Exchange 2007 management &#8211; you can find it in star menu&#8230; And first of all we want to see current Exchange certificates that are enabled for Exchange services by using cmdlet:</p>
<p>[PS] C:\Windows\System32&gt;<strong>Get-ExchangeCertificate </strong></p>
<p>and you wil receive something like this:</p>
<div>Thumbprint                                Services   Subject<br />&#8212;&#8212;&#8212;-                                &#8212;&#8212;&#8211;   &#8212;&#8212;-<br />45EEEB44DF4BFE2EB1B7A7592EA1DF5BF93F44B4  IP.WS      CN=<strong>remote.company.com<br /></strong>42F146B12BEF918A6A8FC730F5AA87AC4ACB1CEB  IP..S      CN=<strong>remote.company.com</strong><br />817F1311CB72FB70F962EC0FAD2D8FA857F114A4  &#8230;.S      CN=sbssrv01.company.local<br />4BAAC7906689AFF0129767CF492AAE058B5DF494  &#8230;.S      CN=Sites<br />8F1D9C5FEB6EF0C39F25175AFBDEA54FE9668EF9  &#8230;..      CN=xxxxxx-xxxxxxxx-CA<br />8E4F33523325500F38ECF41FCDFBBE684AFC6145  &#8230;..      CN=WMSvc-WIN-K7KGUV5MQ40</div>
<div> </div>
<div>Now we should create a new certificate that we will use for SMTP connectors by using cmdlet:</div>
<div> </div>
<div><strong>New-ExchangeCertificate -domainname mail.company.com -PrivateKeyExportable:1</strong></div>
<div> </div>
<div><strong>Warning!</strong> When you are asked if you want to overwrite certificates chose <strong>No!</strong></div>
<div><strong> </strong> </div>
<div>
<div>Confirm<br />Overwrite existing default SMTP certificate,<br />&#8217;45EEEB44DF4BFE2EB1B7A7592EA1DF5BF93F44B4&#8242; (expires 14.1.2012 22:37:04), with<br />certificate &#8217;59D62E7850EE4093AFF1EC73E2623D52058C2B35&#8242; (expires 27.1.2015<br />17:09:02)?<br />[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help<br />(default is &#8220;Y&#8221;): <strong>N</strong></div>
<div> </div>
<div>so we get output:</div>
<div>Thumbprint                                Services   Subject<br />&#8212;&#8212;&#8212;-                                &#8212;&#8212;&#8211;   &#8212;&#8212;-<br />59D62E7850EE4093AFF1EC73E2623D52058C2B35  &#8230;..      CN=<strong>mail.company.com</strong></div>
<div> </div>
<div>Great!  If we want to be shure that everything is working correctly and that Exchange SMTP service is using our new certificate we can use cmdlet:</div>
</div>
<div>
<p>[PS] C:\Windows\System32&gt;<strong>Get-ExchangeCertificate </strong></p>
<p>[PS] C:\Windows\System32&gt;</p>
<div>Thumbprint                                Services   Subject<br />&#8212;&#8212;&#8212;-                                &#8212;&#8212;&#8211;   &#8212;&#8212;-<br />59D62E7850EE4093AFF1EC73E2623D52058C2B35  &#8230;.<strong>S</strong>      CN=<strong>mail.company.com</strong><br />45EEEB44DF4BFE2EB1B7A7592EA1DF5BF93F44B4  IP.W<strong>S</strong>      CN=<strong>remote.company.com</strong></div>
<div>42F146B12BEF918A6A8FC730F5AA87AC4ACB1CEB  IP..<strong>S</strong>      CN=<strong>remote.company.com</strong></div>
<div>817F1311CB72FB70F962EC0FAD2D8FA857F114A4  &#8230;.S      CN=sbssrv01.company.local<br />4BAAC7906689AFF0129767CF492AAE058B5DF494  &#8230;.S      CN=Sites<br />8F1D9C5FEB6EF0C39F25175AFBDEA54FE9668EF9  &#8230;..      CN=xxxxxxxxxxx-xxxxxxxxxxxx01-CA<br />8E4F33523325500F38ECF41FCDFBBE684AFC6145  &#8230;..      CN=WMSvc-WIN-K7KGUV5MQ40</div>
<div>We can now see that SMTP connectors are using all certificates (S defnies SMTP service).</div>
<div>Ok&#8230; How can you test that TLS works?</div>
<div>You can try it by using telnet client and connect to your server:</div>
<div><strong>telnet mail.company.com 25</strong></div>
<div>
<div> </div>
<div>Exchange should respond something like:</div>
<div>220 <strong>mail.company.com</strong> Microsoft ESMTP MAIL Service ready at Wed, 27 Jan 2010 17:<br />12:09 +0100</div>
<div> </div>
<div>then you can write:</div>
<div><strong>helo test.blablabla.com</strong></div>
<div> </div>
<div>220 <strong>mail.company.com</strong> Microsoft ESMTP MAIL Service ready at Wed, 27 Jan 2010 17:<br />13:07 +0100<br />helo test.blablabla.si<br />250 <strong>mail.xxxxxxxxxxxxxxxx.si</strong> Hello [xxx.xxx.xxxx.xxx]</div>
<div>after that enter command:</div>
<div><strong>starttls</strong></div>
<p><strong> </strong></p>
</div>
<div>server should respond:
<div>220 2.0.0 SMTP server ready</div>
<div> </div>
<div>Server ready? Super! <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </div>
<div> </div>
<div>PS.</div>
<div>If you did miss something you will receive error from server saying:</div>
<div> </div>
<div>starttls<br />500 5.3.3 Unrecognized command</div>
<div> </div>
<div>If you get that? Read this tutorial again <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </div>
<div>PS. PS. You do not need to restart anything when you apply this commands&#8230; No need for restarting Exchange services&#8230;</div>
<div>Special thanks to <a href="http://blog.mreza.info/" target="_blank">Saso Erdeljanov</a> for some hints about this issue&#8230;</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2010/09/05/sbs-2008-exchange-2007-remote-company-com-and-tls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2007 / 2010 &#8211; remove headers</title>
		<link>http://luka.manojlovic.net/2010/05/24/exchange-2007-2010-remove-headers/</link>
		<comments>http://luka.manojlovic.net/2010/05/24/exchange-2007-2010-remove-headers/#comments</comments>
		<pubDate>Mon, 24 May 2010 21:57:47 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[remove headers]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=232</guid>
		<description><![CDATA[If you are using Windows server 2008 SBS or Exchange 2007 or Exchange 2010 you send with your e-mail also mail headers that (I think) you would not like to &#8220;share&#8221; with external world: Received: from mail.server.si (xxx.xxx.xxx.xxx) by mail.server2.si (172.31.200.2) with Microsoft SMTP Server (TLS) id 8.2.247.2; Wed, 19 May 2010 13:08:47 +0200Received: from SRVEXCH01.domain.local ([10.11.12.2]) [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using Windows server 2008 SBS or Exchange 2007 or Exchange 2010 you send with your e-mail also mail headers that (I think) you would not like to &#8220;share&#8221; with external world:</p>
<p>Received: from mail.server.si (xxx.xxx.xxx.xxx) by mail.server2.si<br /> (172.31.200.2) with Microsoft SMTP Server (TLS) id 8.2.247.2; Wed, 19 May<br /> 2010 13:08:47 +0200<br /><strong>Received: from SRVEXCH01.domain.local ([10.11.12.2]) by SRVEXCH01.domain.local<br /> ([10.11.12.2]) with mapi; Wed, 19 May 2010 13:08:02 +0200<br /></strong>From: xxxxx xxxxx xxxxx@xxxxx<br />To: =?iso-8859-2?Q?xxxxx_xxxxx=E6_=28xxxxx=xxxxx=2Exxxxx=29?=<br /> &lt;xxxxx@xxxxx&gt;<br />Return-Receipt-To: xxxxx@xxxxx<br />Date: Wed, 19 May 2010 13:08:00 +0200<br />Subject: xxxxx<br />Thread-Topic: xxxxx<br />Thread-Index: Acr3Q4r6dSBNnU37R9ypBLYy8PMzcA==<br />Message-ID: &lt;13204AAD07BCDD4EB69C3367FF1783A9124C065BB2@SRVEXCH01.domain.local&gt;<br />Accept-Language: sl-SI<br />Content-Language: en-US<br />X-MS-Has-Attach:<br />X-MS-TNEF-Correlator:<br />acceptlanguage: sl-SI<br />Content-Type: multipart/alternative;<br /> boundary=&#8221;_000_13204AAD07BCDD4EB69C3367FF1783A9124C065BB2_&#8221;<br />MIME-Version: 1.0<br />Return-Path: xxxxx@xxxxx<br />X-MS-Exchange-Organization-PRD: xxxxx.si<br />X-MS-Exchange-Organization-SenderIdResult: Pass<br />Received-SPF: Pass (xxxxx.xxxxx.xxxxx: domain of xxxxx@xxxxx<br /> designates xxx.xxx.xxx.xxx as permitted sender) receiver=xxxxx.xxxxx.local;<br /> client-ip=xxx.xxx.xxx.xxx; helo=mail.xxxxx.si;<br />X-MS-Exchange-Organization-SCL: 1<br />X-MS-Exchange-Organization-PCL: 2<br />X-MS-Exchange-Organization-Antispam-Report: DV:3.3.8917.498;SV:3.3.8919.449;SID:SenderIDStatus Pass;OrigIP:xxx.xxx.xxx.xxx</p>
<p>If you want to remove this stuff we need to create a Hub Transport Rule:<br />Open Microsoft Exchange Console<br />Navigate to:<br />Microsoft Exchange \ Organization Configuration \ Hub Transport \ Transport Rules</p>
<p>Right Click and select <strong>New Transport Rule</strong> and name it &#8220;<strong>Remove headers</strong>&#8221; click <strong>Next</strong>,</p>
<p>chose <strong>From users inside or outside the organization</strong> and select<strong> Inside </strong>click <strong>Next,</strong>chose <strong>Remove header </strong>and as message header just write: <strong>Received </strong>twice click Next&#8230;</p>
<p> </p>
<p>You are done&#8230; Headers will not be sent any more to users outside the organization&#8230;</p>
<p>Bye,<br />Luka (under influence of wonderful <a href="http://www.ntk.si" target="_blank">NT Konferenca 2010</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2010/05/24/exchange-2007-2010-remove-headers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2007 with Exchange 2007 on SBS 2008 username and password (re)prompt</title>
		<link>http://luka.manojlovic.net/2010/01/13/outlook-2007-with-exchange-2007-on-sbs-2008-username-and-password-reprompt/</link>
		<comments>http://luka.manojlovic.net/2010/01/13/outlook-2007-with-exchange-2007-on-sbs-2008-username-and-password-reprompt/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 11:53:59 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server 2007]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=217</guid>
		<description><![CDATA[Hi&#8230; This days I recieved some questions regarding the problem of Outlook 2007 repromting for username and password when connected to Exchange 2007 (mostly in SBS 2008 environments)&#8230; Saso has an explanation for this phenomenon http://exchange.si/archive/2010/01/12/pow-11-kb973917-and-repeated-login-prompts.aspx]]></description>
			<content:encoded><![CDATA[<p>Hi&#8230; This days I recieved some questions regarding the problem of Outlook 2007 repromting for username and password when connected to Exchange 2007 (mostly in SBS 2008 environments)&#8230;</p>
<p>Saso has an explanation for this phenomenon <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://exchange.si/archive/2010/01/12/pow-11-kb973917-and-repeated-login-prompts.aspx">http://exchange.si/archive/2010/01/12/pow-11-kb973917-and-repeated-login-prompts.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2010/01/13/outlook-2007-with-exchange-2007-on-sbs-2008-username-and-password-reprompt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blacklist providers to trust II</title>
		<link>http://luka.manojlovic.net/2009/08/24/blacklist-providers-to-trust-ii/</link>
		<comments>http://luka.manojlovic.net/2009/08/24/blacklist-providers-to-trust-ii/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:32:01 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[E-mail related]]></category>
		<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2003]]></category>
		<category><![CDATA[MS Exchange server 2007]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=183</guid>
		<description><![CDATA[Almost two years ago I have posted a comment regarding Blacklist providers that I use and I trust&#8230; Well I would like to update this post by adding or commenting that now I use only two providers that sucessfuly eliminate or reduce spam that is coming to my mail servers &#8230; I currently use: zen.spamhaus.org [...]]]></description>
			<content:encoded><![CDATA[<p>Almost two years ago I have posted a<a href="http://luka.manojlovic.net/2008/01/01/blacklist-providers-to-trust/" target="_blank"> comment regarding Blacklist providers </a>that I use and I trust&#8230; Well I would like to update this post by adding or commenting that now I use only two providers that sucessfuly eliminate or reduce spam that is coming to my mail servers &#8230;</p>
<p>I currently use:<br />
<strong>zen.spamhaus.org</strong> provided by <a href="http://www.spamhaus.org" target="_blank">http://www.spamhaus.org</a><strong><br />
bl.spamcop.net</strong> provided by <a href="http://www.spamcop.net" target="_blank">http://www.spamcop.net</a></p>
<p style="text-align: left;">As you should decide to use or not to use blocklist providers on your mail servers I am adding interesting article from august 2009 to better understand how this providers work: <a href="http://www.allspammedup.com/2009/08/understanding-blocklist-providers/" target="_blank">http://www.allspammedup.com/2009/08/understanding-blocklist-providers/</a></p>
<p style="text-align: left;">I wish you luck in fighting spam! <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2009/08/24/blacklist-providers-to-trust-ii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TestExchangeConnectivity.com is getting ready&#8230;</title>
		<link>http://luka.manojlovic.net/2009/06/22/testexchangeconnectivitycom-is-getting-ready/</link>
		<comments>http://luka.manojlovic.net/2009/06/22/testexchangeconnectivitycom-is-getting-ready/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 09:56:04 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2003]]></category>
		<category><![CDATA[MS Exchange server 2007]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=181</guid>
		<description><![CDATA[For all you with any problems or concerns regarding Microsoft Exchange connectivity&#8230; You can test your Exchange server services like ActiveSync, Exchange Web services or Outlook connectivity by using: https://www.testexchangeconnectivity.com/ - fresh and new EHLO team r0x! http://msexchangeteam.com/]]></description>
			<content:encoded><![CDATA[<p>For all you with any problems or concerns regarding Microsoft Exchange connectivity&#8230; You can test your Exchange server services like ActiveSync, Exchange Web services or Outlook connectivity by using: <a href="https://www.testexchangeconnectivity.com/">https://www.testexchangeconnectivity.com/</a> - fresh and new <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>EHLO team r0x! <a href="http://msexchangeteam.com/">http://msexchangeteam.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2009/06/22/testexchangeconnectivitycom-is-getting-ready/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>0X8004010F weekend &#8211; Windows server 2008, Exchange 2007 SP1</title>
		<link>http://luka.manojlovic.net/2008/12/15/0x8004010f-weekend-windows-server-2008-exchange-2007-sp1/</link>
		<comments>http://luka.manojlovic.net/2008/12/15/0x8004010f-weekend-windows-server-2008-exchange-2007-sp1/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 00:10:30 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[E-mail related]]></category>
		<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[MS Windows server]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[0X8004010F]]></category>
		<category><![CDATA[exchange 2007 OAB error]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=149</guid>
		<description><![CDATA[This weekend I was playing crawler&#8230; I know almost all internet sites describing the problems around 0X8004010F &#8211; damn error regarding Offline address book distribution&#8230; But nowhere I have encountered the problem describing this error code in combination with Windows Server 2008 and Exchange 2007 SP1 with rollup 5. Well&#8230; As I figured out it [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I was playing crawler&#8230; I know almost all internet sites describing the problems around <strong>0X8004010F</strong> &#8211; damn error regarding Offline address book distribution&#8230;</p>
<p>But nowhere I have encountered the problem describing this error code in combination with Windows Server 2008 and Exchange 2007 SP1 with rollup 5.</p>
<p>Well&#8230; As I figured out it apparently does not work &#8211; if you want OAB to be distributed by Web-based distribution&#8230;</p>
<p>You get this error in your Outlook 2007 SP1 clients (on Windows XP and on Windows Vista)</p>
<p>As I can see there is somekind of permission problem becoues OAB virtual directory points to:</p>
<p>C:\Program Files\Microsoft\Exchange Server\ClientAccess\OAB</p>
<p>This directory has NO NTFS permissions for Auhtenticated users&#8230; but in IIS there is on this folder a parameter: Pass-through authentication - but as I know it can not work becouse your credentials are not covered in NTFS permissions of that folder.</p>
<p>But it does not work even if you give NTFS permissions to authenticated users&#8230; (you are still prompted for username and password in Outlook&#8230;)</p>
<p>Maybe I am missing something but weekend is almost over and my users need to use Exchange and RPC over HTTP(s) feature in their Outlooks tomorow&#8230; What I did is that I disabled Web-based distribution of Offline address book and I left only Public folder distribution. It took a couple of minutes for autodiscover.xml to update and Outlooks to get new parameters about Offline address book distribution.</p>
<p>Everything works correctly now&#8230;</p>
<p>Comments / suggestions appriaciated&#8230;</p>
<p>PS.<br />
Hey all you Exchangegurus!<br />
I think you will find this link useful: <a href="https://www.testexchangeconnectivity.com/">https://www.testexchangeconnectivity.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/12/15/0x8004010f-weekend-windows-server-2008-exchange-2007-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows server 2008 AD with Exchange 2007 SP1</title>
		<link>http://luka.manojlovic.net/2008/12/07/windows-server-2008-ad-with-exchange-2007-sp1/</link>
		<comments>http://luka.manojlovic.net/2008/12/07/windows-server-2008-ad-with-exchange-2007-sp1/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 11:39:36 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[exchange transport won't start]]></category>
		<category><![CDATA[Windows server 2008 ad Exchange 2007]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=147</guid>
		<description><![CDATA[Yes! I managed to make it work&#8230; Exchange transport won&#8217;t start if you are installing Exchange 2007 SP1 on Windows server 2008 with Active directory on it even if you UNCHECK IPv6 on your network card properties&#8230; The installation won&#8217;t complete&#8230; You need to do it this way: 1. Uncheck Internet protocol version 6 (TCP/IPv6) [...]]]></description>
			<content:encoded><![CDATA[<p>Yes! I managed to make it work&#8230;<br />
Exchange transport won&#8217;t start if you are installing Exchange 2007 SP1 on Windows server 2008 with Active directory on it even if you UNCHECK IPv6 on your network card properties&#8230;<br />
The installation won&#8217;t complete&#8230; <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>You need to do it this way:</p>
<p>1. <strong>Uncheck</strong> Internet protocol version 6 (TCP/IPv6) in your network card properties</p>
<p>2. Delete <strong>localhost</strong> value for <strong>ipv6</strong> in file called <strong>HOSTS</strong> in <strong>C:\Windows\System32\drivers\etc</strong></p>
<p>::1             localhost</p>
<p>or comment it by using # at the start of line</p>
<p>3. Create/add a 32 bit DWORD with name <strong>DisabledComponents</strong> and value 0xFFFFFFFF to:<br />
HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters</p>
<p>My setup was Windows server 2008 standard as Hyper-V platform, inside Windows server 2008 standard with Active directory in functional level 2008 &#8211; everything updated and clean.</p>
<p>When I changed this three parameters exchange setup completed sucessfuly and now my testing Exchange 2007 is working! Wiiiii!!! <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/12/07/windows-server-2008-ad-with-exchange-2007-sp1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mailbox statistics using Powershell in Exchange 2007</title>
		<link>http://luka.manojlovic.net/2008/01/12/mailbox-statistics-using-powershell-in-exchange-2007/</link>
		<comments>http://luka.manojlovic.net/2008/01/12/mailbox-statistics-using-powershell-in-exchange-2007/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 15:01:37 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/01/12/mailbox-statistics-using-powershell-in-exchange-2007/</guid>
		<description><![CDATA[1. Sorted by Displayname (Display name, Mailbox size (MB), Item count, Last logon time, Last logoff time, Last loggedon user account) Get-MailboxStatistics -Database &#8220;mailbox database&#8221; &#124; Sort -Property DisplayName &#124; ft DisplayName,@{expression={$_.totalitemsize.value.ToMB()};label=&#8221;Mailbox Size(MB)&#8221;}, itemcount, lastlogontime,lastlogofftime,lastloggedonuseraccount 2. Sorted by Last logon time Get-MailboxStatistics -Database &#8220;mailbox database&#8221; &#124; Sort -Property lastlogontime &#124; ft DisplayName,@{expression={$_.totalitemsize.value.ToMB()};label=&#8221;Mailbox Size(MB)&#8221;}, itemcount, lastlogontime, [...]]]></description>
			<content:encoded><![CDATA[<p align="left">1. Sorted by Displayname (Display name, Mailbox size (MB), Item count, Last logon time, Last logoff time, Last loggedon user account)</p>
<p align="left">Get-MailboxStatistics -Database &#8220;mailbox database&#8221; | Sort -Property DisplayName | ft DisplayName,@{expression={$_.totalitemsize.value.ToMB()};label=&#8221;Mailbox Size(MB)&#8221;}, itemcount, lastlogontime,lastlogofftime,lastloggedonuseraccount</p>
<p align="left">2. Sorted by Last logon time<br />
Get-MailboxStatistics -Database &#8220;mailbox database&#8221; | Sort -Property lastlogontime | ft DisplayName,@{expression={$_.totalitemsize.value.ToMB()};label=&#8221;Mailbox Size(MB)&#8221;}, itemcount, lastlogontime, lastlogofftime</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/01/12/mailbox-statistics-using-powershell-in-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Remove disconnected mailboxes from the database using Powershell in Exchange 2007</title>
		<link>http://luka.manojlovic.net/2008/01/12/remove-disconnected-mailboxes-from-the-database-using-powershell-in-exchange-2007/</link>
		<comments>http://luka.manojlovic.net/2008/01/12/remove-disconnected-mailboxes-from-the-database-using-powershell-in-exchange-2007/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 14:56:32 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/01/12/remove-disconnected-mailboxes-from-the-database-using-powershell-in-exchange-2007/</guid>
		<description><![CDATA[Get-MailboxStatistics -database &#8220;SERVER\Mailbox Database&#8221; &#124; where {$_.disconnectdate -ne $null} &#124; foreach {Remove-mailbox -database $_.database -storemailboxidentity $_.mailboxguid}]]></description>
			<content:encoded><![CDATA[<p align="left">Get-MailboxStatistics -database &#8220;SERVER\Mailbox Database&#8221; | where {$_.disconnectdate -ne $null} | foreach {Remove-mailbox -database $_.database -storemailboxidentity $_.mailboxguid}</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/01/12/remove-disconnected-mailboxes-from-the-database-using-powershell-in-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create mail-enabled public folder using Powershell in Exchange 2007</title>
		<link>http://luka.manojlovic.net/2008/01/12/create-mail-enabled-public-folder-using-powershell-in-exchange-2007/</link>
		<comments>http://luka.manojlovic.net/2008/01/12/create-mail-enabled-public-folder-using-powershell-in-exchange-2007/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 14:54:14 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2007]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/01/12/create-mail-enabled-public-folder-using-powershell-in-exchange-2007/</guid>
		<description><![CDATA[New-PublicFolder -Name &#8220;test@test.com&#8221; -Path \TEST Enable-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; Set-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; -EmailAddressPolicyEnabled $false Set-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; -EmailAddresses &#8220;test@test.com&#8221;, &#8220;test@test.net&#8221;, &#8220;test@test.org&#8221; Set-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; -PrimarySmtpAddress test@test.comAdd-PublicFolderClientPermission -Identity &#8220;\TEST\test@test.com&#8221; -User Username -AccessRights EditorGet-PublicFolderClientPermission -Identity &#8220;\TEST\test@test.com&#8221; &#124; fl]]></description>
			<content:encoded><![CDATA[<p align="left">New-PublicFolder -Name &#8220;test@test.com&#8221; -Path \TEST</p>
<p align="left">Enable-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221;</p>
<p align="left">Set-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; -EmailAddressPolicyEnabled $false</p>
<p align="left">Set-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; -EmailAddresses &#8220;test@test.com&#8221;, &#8220;test@test.net&#8221;, &#8220;test@test.org&#8221;</p>
<p align="left">Set-MailPublicFolder -Identity &#8220;\TEST\test@test.com&#8221; -PrimarySmtpAddress <font color="#000000">test@test.com</font><font color="#000000">Add-PublicFolderClientPermission -Identity &#8220;\TEST\test@test.com&#8221; -User Username -AccessRights Editor</font><font color="#000000">Get-PublicFolderClientPermission -Identity &#8220;\TEST\test@test.com&#8221; | fl</font></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/01/12/create-mail-enabled-public-folder-using-powershell-in-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

