<?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>Gretech.be &#187; certificate services</title>
	<atom:link href="http://gretech.be/blog/index.php/tag/certificate-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://gretech.be/blog</link>
	<description>Just another WordPress weblog...</description>
	<lastBuildDate>Sat, 20 Nov 2010 16:58:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing Exchange Certificate using AD Certificate Services (GUI) on Exchange 2010</title>
		<link>http://gretech.be/blog/index.php/2010/04/24/installing-exchange-certificate-using-ad-certificate-services-gui-on-exchange-2010/</link>
		<comments>http://gretech.be/blog/index.php/2010/04/24/installing-exchange-certificate-using-ad-certificate-services-gui-on-exchange-2010/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 21:55:05 +0000</pubDate>
		<dc:creator>GregoryBE</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[certificate services]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[outlook everywhere]]></category>
		<category><![CDATA[self signed]]></category>

		<guid isPermaLink="false">http://gretech.be/blog/?p=49</guid>
		<description><![CDATA[Guide to avoid all Invalid Certificate popups for Exchange 2010 with a self-signed certificate.]]></description>
			<content:encoded><![CDATA[<p>Installing all the necessary Roles &amp; Features</p>
<ol>
<li>Role: Active Directory Certificate Services<br />
(Certification Authority &amp; Certification Authority Web Enrollment)<br />
(if asked for an expire date, put it on 2060 or so)</li>
</ol>
<p>Summary:<br />
First we create a certificate server for the domain, after that we export a certificate request from Exchange, we import it in the created Certificate Authority server using the web interface, then save the .cer fileÂ  and import that one in Exchange again. After all that, do not forget to import the Certificate Authority certificate on the client pcs to avoid security warnings.</p>
<p>Step 1: <strong>Creating exchange certificate and exporting the request</strong>:</p>
<p>Follow this tutorial:<br />
<a href="http://www.mmmug.co.uk/blogs/nweb/archive/2009/04/21/27774.aspx" target="_blank">http://blogs.microsoft.co.il/blogs/eldadc/archive/2009/07/15/how-to-configure-exchange-2010-certificate.aspx</a><br />
- On the <em>Organization and Location </em>page, save the .req file for e.g. C:\Exch_req.req.<br />
When asked to send the request to a certificate authority, goto step 2. After step 2 continue the above tutorial.</p>
<p>Step 2: <strong>Submit Certificate request to your Certificate server</strong></p>
<ol>
<li>In IE on your Certificate Server, surf to <em><a href="https://127.0.0.1/certsrv" target="_blank">https://127.0.0.1/certsrv</a> </em>(first make sure 127.0.0.1 is a trusted website)<em><br />
</em></li>
<li>Click <strong>Request a certificate</strong></li>
<li><strong>Advanced certificate request</strong></li>
<li><strong>Submit a certificate request by using a base-64-encoded CMC or PKCS #10  file, or submit a renewal request by using a base-64-encoded PKCS #7  file</strong></li>
<li>Open <em>C:\Exch_req.req</em> with notepad, and <strong>copy the thumbprint</strong> (the string between theÂ  start and end message)</li>
<li><strong>Paste </strong>this thumbprint in the <em>Saved Request:</em> field</li>
<li>Change the <em>Certificate Template</em> to <strong>Web Server</strong></li>
<li>Click Submit</li>
<li>Download the Base64 version, .cer and .p7b version, save them to C:\exch-sert.cer and C:\exch-sert.p7b</li>
<li>Continue the tutorial from step 1.</li>
</ol>
<p>Step 3: <strong>Get your CA certificate and create installation web page for clients </strong>(so clients accept all certificates from this CA)</p>
<ol>
<li>Again goto <strong>https://127.0.0.1/certsrv/</strong></li>
<li>Click <strong>Download a CA certificate, certificate chain, or CRL</strong>, and click <strong>Yes </strong>in the Web Access Confirmation dialog</li>
<li>Select <strong>Base 64</strong></li>
<li>Click <strong>Download CA certificate</strong> and save it to <strong>C:\CA-cert.cer</strong></li>
<li>Create an edit C:\Inetpub\Wwwroot\Rootinstall.asp</li>
<li>Open: <a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B297681&amp;x=6&amp;y=7" target="_blank">http://support.microsoft.com/?scid=kb%3Ben-us%3B297681&amp;x=6&amp;y=7</a> and goto step 3, copy that text in the file.</li>
<li>Replace<br />
<em>Set MyFile = fs.OpenTextFile("c:\certificates\base64.cer", 1)</em><br />
by<br />
<em>Set MyFile = fs.OpenTextFile("<strong>C:\CA-cert.cer</strong>", 1)</em></li>
<li>Browse to the Rootinstall.asp file from a client browser. If your root certificate is not already in the store, you are prompted to install it.</li>
</ol>
<p><em><span style="text-decoration: underline;"><strong>Vista / Windows 7</strong></span></em>: The Rootinstall.asp page doesn't seem to work in Vista and 7, Clients have to install the certificate manual.<br />
To allow clients to download the above created .cer file, open the <strong>Server Manager </strong>and open <strong>IIS7</strong>,</p>
<p><em>First </em>add the mime type: (IIS &gt; Mime Types, add extension:<strong><em> </em></strong><strong><em>.cer, </em></strong>type:<strong><em> </em>application/pkix-cert</strong>)</p>
<p><a href="http://gretech.be/blog/wp-content/uploads/2010/04/IIS7_CERmime.jpg"><img class="aligncenter size-full wp-image-139" title="IIS7_CERmime" src="http://gretech.be/blog/wp-content/uploads/2010/04/IIS7_CERmime.jpg" alt="" width="543" height="294" /></a><em>Second</em>, rename the .cer mapping to .cer1 to allow the file to be downloaded by the clients.</p>
<p><a href="http://gretech.be/blog/wp-content/uploads/2010/04/IIS7_HandlerMappings.jpg"><img class="aligncenter size-full wp-image-138" title="IIS7_HandlerMappings" src="http://gretech.be/blog/wp-content/uploads/2010/04/IIS7_HandlerMappings.jpg" alt="" width="853" height="583" /></a></p>
<p>Links<br />
<a href="http://it.thelibrarie.com/weblog/?p=55" target="_blank">http://it.thelibrarie.com/weblog/?p=55</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;"><em>Get-ExchangeServer | fl name,edition,admindisplayversion</em></div>
]]></content:encoded>
			<wfw:commentRss>http://gretech.be/blog/index.php/2010/04/24/installing-exchange-certificate-using-ad-certificate-services-gui-on-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->