<?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>Bart Timmermans aka Hyper-B</title>
	<atom:link href="http://www.bart-timmermans.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bart-timmermans.nl</link>
	<description>Spamming about Information Technology (Exchange, PKI, SharePoint, Server Based Computing, SQL, Unified Communication and Virtualization)</description>
	<lastBuildDate>Tue, 17 Jan 2012 21:30:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Next generation file system ReFS hits Windows 8</title>
		<link>http://www.bart-timmermans.nl/next-generation-file-system-refs-hits-windows-8/</link>
		<comments>http://www.bart-timmermans.nl/next-generation-file-system-refs-hits-windows-8/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 21:30:19 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[ReFS]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=751</guid>
		<description><![CDATA[Source: Microsoft MSDN ReFS, has been designed from the ground up to meet a broad set of customer requirements, both today&#8217;s and tomorrow&#8217;s, for all the different ways that Windows is deployed. The key goals of ReFS are: Maintain a high degree of compatibility with a subset of NTFS features that are widely adopted while [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2012/01/windows-8_logo_2.jpg"><img alt="" class="alignnone size-medium wp-image-752" height="225" src="http://www.bart-timmermans.nl/wp-content/uploads/2012/01/windows-8_logo_2-300x225.jpg" title="windows-8_logo_2" width="300" /></a></p>
<p>Source: <a target="_blank" href="http://blogs.msdn.com/b/b8/archive/2012/01/16/building-the-next-generation-file-system-for-windows-refs.aspx" target="_blank">Microsoft MSDN</a></p>
<p>ReFS, has been designed from the ground up to meet a broad set of customer requirements, both today&rsquo;s and tomorrow&rsquo;s, for all the different ways that Windows is deployed.</p>
<p>The key goals of ReFS are:</p>
<ul>
<li>Maintain a high degree of compatibility with a subset of NTFS features that are widely adopted while deprecating others that provide limited value at the cost of system complexity and footprint.</li>
<li>Verify and auto-correct data. Data can get corrupted due to a number of reasons and therefore must be verified and, when possible, corrected automatically. Metadata must not be written in place to avoid the possibility of &ldquo;torn writes,&rdquo; which we will talk about in more detail below.</li>
<li>Optimize for extreme scale. Use scalable structures for everything. Don&rsquo;t assume that disk-checking algorithms, in particular, can scale to the size of the entire file system.</li>
<li>Never take the file system offline. Assume that in the event of corruptions, it is advantageous to isolate the fault while allowing access to the rest of the volume. This is done while salvaging the maximum amount of data possible, all done live.</li>
<li>Provide a full end-to-end resiliency architecture when used in conjunction with the Storage Spaces feature, which was co-designed and built in conjunction with ReFS.</li>
</ul>
<p>The key features of ReFS are as follows (note that some of these features are provided in conjunction with Storage Spaces).</p>
<ul>
<li>Metadata integrity with checksums</li>
<li>Integrity streams providing optional user data integrity</li>
<li>Allocate on write transactional model for robust disk updates (also known as copy on write)</li>
<li>Large volume, file and directory sizes</li>
<li>Storage pooling and virtualization makes file system creation and management easy</li>
<li>Data striping for performance (bandwidth can be managed) and redundancy for fault tolerance</li>
<li>Disk scrubbing for protection against latent disk errors</li>
<li>Resiliency to corruptions with &quot;salvage&quot; for maximum volume availability in all cases</li>
<li>Shared storage pools across machines for additional failure tolerance and load balancing</li>
</ul>
<p>In addition, ReFS inherits the features and semantics from NTFS including BitLocker encryption, access-control lists for security, USN journal, change notifications, symbolic links, junction points, mount points, reparse points, volume snapshots, file IDs, and oplocks.</p>
<p>And of course, data stored on ReFS is accessible through the same file access APIs on clients that are used on any operating system that can access today&rsquo;s NTFS volumes.</p>
<h3>Key design attributes and features</h3>
<p>Our design attributes are closely related to our goals. As we go through these attributes, keep in mind the history of producing file systems used by hundreds of millions of devices scaling from the smallest footprint machines to the largest data centers, from the smallest storage format to the largest multi-spindle format, from solid state storage to the largest drives and storage systems available. Yet at the same time, Windows file systems are accessed by the widest array of application and system software anywhere. ReFS takes that learning and builds on it. We didn&rsquo;t start from scratch, but reimagined it where it made sense and built on the right parts of NTFS where that made sense. Above all, we are delivering this in a pragmatic manner consistent with the delivery of a major file system&mdash;something only Microsoft has done at this scale.</p>
<h4>Code reuse and compatibility</h4>
<p>When we look at the file system API, this is the area where compatibility is the most critical and technically, the most challenging. Rewriting the code that implements file system semantics would not lead to the right level of compatibility and the issues introduced would be highly dependent on application code, call timing, and hardware. Therefore in building ReFS, we reused the code responsible for implementing the Windows file system semantics. This code implements the file system interface (read, write, open, close, change notification, etc.), maintains in-memory file and volume state, enforces security, and maintains memory caching and synchronization for file data. This reuse ensures a high degree of compatibility with the features of NTFS that we&rsquo;re carrying forward.</p>
<p>Underneath this reused portion, the NTFS version of the code-base uses a newly architected engine that implements on-disk structures such as the Master File Table (MFT) to represent files and directories. ReFS combines this reused code with a brand-new engine, where a significant portion of the innovation behind ReFS lies. Graphically, it looks like this:</p>
<p><img alt="NTFS.SYS = NTFS upper layer API/semantics engine / NTFS on-disk store engine; ReFS.SYS = Upper layer engine inherited from NTFS / New on-disk store engine" border="0" height="291" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-29-43-metablogapi/8015.NTFS_2D00_and_2D00_ReFS_2D00_file_2D00_systems_5F00_64354781.jpg" style="background-image: none; display: block; float: none; margin-left: auto; margin-right: auto" title="NTFS and ReFS file systems" width="499" /></p>
<p>Read more at the source: <a target="_blank" href="http://blogs.msdn.com/b/b8/archive/2012/01/16/building-the-next-generation-file-system-for-windows-refs.aspx" target="_blank">Microsoft MSDN</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/next-generation-file-system-refs-hits-windows-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Powershell: How to import accepted domains from CSV file</title>
		<link>http://www.bart-timmermans.nl/exchange-powershell-how-to-import-accepted-domains-from-csv-file/</link>
		<comments>http://www.bart-timmermans.nl/exchange-powershell-how-to-import-accepted-domains-from-csv-file/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 21:38:34 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Exchange Server 2007]]></category>
		<category><![CDATA[Exchange Server 2010]]></category>
		<category><![CDATA[Exhange Server]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=724</guid>
		<description><![CDATA[During migration projects a lot of customers asks me how to import all accepted domains the easy way. The script I provide below is very basic but it will save you a lot of time. But first create a CSV file with on the first line AcceptedDomains. Insert all your accepted domains on seperate lines [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411.png"><img alt="" class="alignnone size-medium wp-image-509" height="143" src="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411-300x143.png" title="exchange-2010-logo-7333411" width="300" /></a></p>
<p>During migration projects a lot of customers asks me how to import all accepted domains the easy way. The script I provide below is very basic but it will save you a lot of time.</p>
<p>But first create a CSV file with on the first line AcceptedDomains. Insert all your accepted domains on seperate lines starting from the second line.</p>
<p><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$File</font></font></font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><font color="#ff0000" face="Courier New" size="2"><font color="#ff0000" face="Courier New" size="2"><font color="#ff0000" face="Courier New" size="2">=</font></font></font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><b><font color="#5f9ea0" face="Courier New" size="2"><font color="#5f9ea0" face="Courier New" size="2"><font color="#5f9ea0" face="Courier New" size="2">Read-Host</font></font></font></b><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><font color="#800000" face="Courier New" size="2"><font color="#800000" face="Courier New" size="2"><font color="#800000" face="Courier New" size="2">&quot;Please enter location and filename of the CSV file (example: D:\Temp\AcceptedDomain.CSV)&quot;</font></font></font></p>
<p><font color="#008000" face="Courier New" size="2"><font color="#008000" face="Courier New" size="2"><font color="#008000" face="Courier New" size="2"># Reading of all lines within the specified CSV file.</font></font></font></p>
<p><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$list <font color="#ff0000">=</font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><b><font color="#5f9ea0" face="Courier New" size="2"><font color="#5f9ea0" face="Courier New" size="2"><font color="#5f9ea0" face="Courier New" size="2">Import-Csv</font></font></font></b></font></font></font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$File</font></font></font></p>
<p><font color="#0000ff" face="Courier New" size="2"><font color="#0000ff" face="Courier New" size="2"><font color="#0000ff" face="Courier New" size="2">foreach</font></font></font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2">(</font></font><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$entry</font></font></font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><font color="#0000ff" face="Courier New" size="2"><font color="#0000ff" face="Courier New" size="2"><font color="#0000ff" face="Courier New" size="2">in</font></font></font><font face="Courier New" size="2"><font color="#000000" face="Courier New" size="2"> </font></font><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$list</font></font></font><font face="Courier New" size="2"><font face="Courier New" size="2"><font color="#000000">) {</font></font></font></p>
<p><font color="#008000" face="Courier New" size="2"><font color="#008000" face="Courier New" size="2"><font color="#008000" face="Courier New" size="2"># Reading the AcceptedDomain variable from the CSV file.</font></font></font></p>
<p><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$AcceptedDomain</font></font></font><font face="Courier New" size="2"><font face="Courier New" size="2"> </font></font><font color="#ff0000" face="Courier New" size="2"><font color="#ff0000" face="Courier New" size="2"><font color="#ff0000" face="Courier New" size="2">=</font></font></font><font face="Courier New" size="2"><font face="Courier New" size="2"> </font></font><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$entry</font></font></font><font face="Courier New" size="2"><font face="Courier New" size="2">.AcceptedDomain</font></font></p>
<p><font color="#008000" face="Courier New" size="2"><font color="#008000" face="Courier New" size="2"><font color="#008000" face="Courier New" size="2"># Running the powershell command for creation of all Accepted Domains.</font></font></font></p>
<p><font face="Courier New" size="2"><font face="Courier New" size="2">New-AcceptedDomain -Name </font></font><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$AcceptedDomain</font></font></font><font face="Courier New" size="2"><font face="Courier New" size="2"> -DomainName </font></font><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2"><font color="#800080" face="Courier New" size="2">$AcceptedDomain</font></font></font></p>
<p><font face="Courier New" size="2"><font face="Courier New" size="2">}</font></font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/exchange-powershell-how-to-import-accepted-domains-from-csv-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Root CA on Windows Server 2008 R2 core edition Part 3</title>
		<link>http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part-3/</link>
		<comments>http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part-3/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 23:03:00 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Bitlocker]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[Certificate Authority]]></category>
		<category><![CDATA[Certificates]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PKI]]></category>
		<category><![CDATA[Root CA]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[ADCS]]></category>
		<category><![CDATA[Core]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=645</guid>
		<description><![CDATA[This is the third part (Part 1, Part 2) of the&#160;how-to guide on&#160;installing and configuring an offline Root Certificate Authority on a Windows Server 2008 R2 core edtion. Within this part we are going to install and configure Active Directory Certificate Services (ADCS) on the Root CA. Also we are going to backup the root [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2009/10/banner-r2_2-744204.jpg"><img alt="" class="alignnone size-full wp-image-200" height="94" src="http://www.bart-timmermans.nl/wp-content/uploads/2009/10/banner-r2_2-744204.jpg" title="banner-r2_2-744204" width="299" /></a></p>
<p>This is the third part (<a href="http://www.bart-timmermans.nl/how-to-create-a-root-ca-on-windows-server-2008-r2-core-edition/"><font color="#2970a6">Part 1</font></a>, <a href="http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part2/">Part 2</a>) of the&nbsp;how-to guide on&nbsp;installing and configuring an offline Root <a href="http://www.bart-timmermans.nl/category/certificate-authority/" title="Certificate Authority"><font color="#2970a6">Certificate Authority</font></a> on a <a href="http://www.bart-timmermans.nl/category/windows-server-2008/" title="Windows Server 2008"><font color="#2970a6">Windows Server 2008</font></a> R2 core edtion.</p>
<p>Within this part we are going to install and configure Active Directory Certificate Services (ADCS) on the Root CA. Also we are going to backup the root certificate with private key to external storage and encrypt this drive Bitlocker to go.</p>
<p><u><strong>Prerequisites</strong></u></p>
<p>The following must be available before using this guide:</p>
<ul>
<li>Part 1 and Part 2 of the installation guide must be completed;</li>
<li>Root access to the Root CA server (ILO, VMware, vSphere console);</li>
<li>SetupCA.vbs must be downloaded (<a target="_blank" href="http://blogs.technet.com/b/pki/archive/2009/09/18/automated-ca-installs-using-vb-script-on-windows-server-2008-and-2008r2.aspx">click here</a>) and stored on the Root CA (C:\Temp)</li>
<li>One or two USB drives (dedicated for the backup of the root certificate and private key).</li>
</ul>
<p><u><strong>Installation steps</strong></u></p>
<p><span id="more-645"></span></p>
<p>1. Open the Root CA and run the following command to install Certificate Services: <strong>start /w ocsetup.exe CertificateServices /norestart /quiet</strong></p>
<p><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/5-Install-ADCS.png"><img alt="" class="alignnone size-full wp-image-655" height="57" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/5-Install-ADCS.png" title="5 Install ADCS" width="525" /></a></strong></p>
<p>2. Check if the installation succeeded by running the following command: <strong>Dism /online /get-features /Format:Table</strong></p>
<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/7-Check-ADCS-installation-2.png"><img alt="" class="alignnone size-full wp-image-656" height="184" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/7-Check-ADCS-installation-2.png" title="7 Check ADCS installation 2" width="528" /></a></p>
<p>3. Configure Active Directory Certificate Services by running the following command: <strong>Cscript /nologo C:\Temp\SetupCA.vbs /is /sn&nbsp;</strong><em>&lt;RootCA netbios name&gt;</em><strong> &nbsp;/sk 4096 /sp &quot;RSA#Microsoft Software Key Storage Provider&quot; /sa SHA256</strong></p>
<p><span style="color: #f00"><strong>Note: Change &lt;RootCA netbios name&gt; to the netbios name of your Root CA server (in my case RootCA).</strong></span></p>
<p><span style="color: #000">4. After the completion of step 3 type the following command to check if the configuration succeeded: <strong>type _SetupCA.log</strong></span></p>
<p><span style="color: #000"><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/10-Check-ADCS-config-2.png"><img alt="" class="alignnone size-full wp-image-657" height="131" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/10-Check-ADCS-config-2.png" title="10 Check ADCS config 2" width="510" /></a></strong></span></p>
<p><span style="color: #000">5. Now we are going to stop the Certificate Services service by running the following command: <strong>net stop CertSvc</strong></span></p>
<p><span style="color: #000"><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/12-Net-stop-Certsvc.png"><img alt="" class="alignnone size-full wp-image-658" height="64" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/12-Net-stop-Certsvc.png" title="12 Net stop Certsvc" width="514" /></a></strong></span></p>
<p>6. Now we are going to change the the validity period of the root certificate to 10 years by running the following command: <strong>Reg Add HKLM\SYSTEM\CurrentControlSet\Services\CertSvc\Configuration\RootCA /V ValidityPeriodUnits /t REG_DWORD /d 10 /f</strong></p>
<p><strong><span style="color: #f00">Note: Change Configuration\RootCA to Configuration\NetbiosNameOfYourServer</span></strong></p>
<p><strong><span style="color: #f00"><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/13-Add-regkey-validity.png"><img alt="" class="alignnone size-full wp-image-659" height="54" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/13-Add-regkey-validity.png" title="13 Add regkey validity" width="515" /></a></span></strong></p>
<p>7. Now start the Certificate Services service by running the following command: <strong>net start CertSvc</strong></p>
<p><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/14-Net-start-CertSvc.png"><img alt="" class="alignnone size-full wp-image-660" height="67" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/14-Net-start-CertSvc.png" title="14 Net start CertSvc" width="515" /></a></strong></p>
<p>8. Now insert an formatted USB drive to the computer (if using VMware please allow USB drives to connect directly to the Root CA).</p>
<p>9. Now run the following command to backup the certificate: <strong><font size="2">certutil &ndash;backupKey </font></strong><em><font size="2">&lt;drive letter of the USB drive&gt;</font></em></p>
<p><font size="2">10. You will need to provide a password for the P12 backup file. The password most be stored at a save location and managed by an security officer.</font></p>
<p><font size="2">11. Now we are going to encrypt the drive with Bitlocker to go by running the following command: <strong>Manage-bde -on</strong> <em>&lt;drive letter of the USB drive&gt; </em><strong>-pw</strong><em> &lt;very complex password&gt;</em></font></p>
<p><font size="2">12. When all intermediate or issuing CAs are deployed this server must be shutdown. </font></p>
<ul>
<li><font size="2"><strong>Virtual server</strong>: Save the virtual harddrive of the VM to two USB drives (one for backup) and delete the server from the physical host. The USB drives must be stored in seperate secured locations (vault).</font></li>
<li><font size="2"><strong>Physical server</strong>: Store the harddrives in seperate secured locations (vault).</font></li>
</ul>
<p><font size="2">In total we have the following security measures:</font></p>
<ul>
<li><font size="2">Password of the administrator account is complex.</font></li>
<li><font size="2">Drive of the Root CA is encrypted with Bitlocker.</font></li>
<li><font size="2">Startup disk&nbsp;of the Root CA is stored in a secure location and managed by an security officer.</font></li>
<li><font size="2">Backup of the private key of the root certificate is stored on a encrypted password protected USB disk and managed by an security officer.</font></li>
<li><font size="2">The Root CA is shutdown and all disks are stored in seperated secured locations.</font></li>
</ul>
<p><font size="2">To provide an extra level of security (and redundancy) divide all passwords and physical drives to two security officers. When the Root CA must be started two security officers are needed to start the server.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Root CA on Windows Server 2008 R2 core edition Part 2</title>
		<link>http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part2/</link>
		<comments>http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part2/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 21:36:21 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Bitlocker]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[Certificate Authority]]></category>
		<category><![CDATA[Certificates]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PKI]]></category>
		<category><![CDATA[Root CA]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ADCS]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=618</guid>
		<description><![CDATA[&#160; This is the second part (Part 1) of the&#160;how-to guide on&#160;installing and configuring an offline Root Certificate Authority on a Windows Server 2008 R2 core edtion. Within this part we are going to encrypt the OS drive with BitLocker.&#160;By encrypting the drive it will be almost impossible to steal the private key of the [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;<a href="http://www.bart-timmermans.nl/wp-content/uploads/2009/10/banner-r2_2-744204.jpg"><img alt="" class="alignnone size-full wp-image-200" height="94" src="http://www.bart-timmermans.nl/wp-content/uploads/2009/10/banner-r2_2-744204.jpg" title="banner-r2_2-744204" width="299" /></a></p>
<p>This is the second part (<a href="http://www.bart-timmermans.nl/how-to-create-a-root-ca-on-windows-server-2008-r2-core-edition/">Part 1</a>) of the&nbsp;how-to guide on&nbsp;installing and configuring an offline Root Certificate Authority on a Windows Server 2008 R2 core edtion.</p>
<p>Within this part we are going to encrypt the OS drive with BitLocker.&nbsp;By encrypting the drive it will be almost impossible to steal the private key of the root certificate. Within this guide we are going to use a virtual machine on VMware (Hyper-V or XenServer are also supported). Because our virtual machine does not have a TPM (Trusted Platform Module) we are using a virtual floppy which will be needed everytime the server will be powered on.</p>
<p>This guide can&nbsp;also be used on all&nbsp;Windows&nbsp;Server 2008&nbsp;R2 core servers.&nbsp;</p>
<p><u><strong>Prerequisites</strong></u></p>
<p>The following must be available before using this guide:</p>
<ul>
<li>Root access to the server (ILO, VMware, vSphere console);</li>
<li>Windows Server 2008 R2 core edition already installed;</li>
<li>A server with Windows Server 2008 R2 <strong>full</strong> and the <strong>Bitlocker feature installed</strong>.</li>
</ul>
<p><u><strong>Installation steps</strong></u></p>
<p><span id="more-618"></span></p>
<p><u><strong>Part 2: Encrypting the drive with Bitlocker</strong></u></p>
<p>1. Install the Bitlocker feature by running the following command: <strong>Dism /online /enable-feature /featurename:BitLocker</strong></p>
<p><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/15-Install-Bitlocker.png"><img alt="" class="alignnone size-full wp-image-608" height="91" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/15-Install-Bitlocker.png" title="15 Install Bitlocker" width="449" /></a></strong></p>
<p>2. Press <strong>&quot;Y</strong>&quot; to restart the server.</p>
<p>3. When restarted logon to the RootCA and run the following command: <strong>netsh advfirewall set rule group=&quot;Remote Service Management&quot; new enable=yes</strong></p>
<p>4.&nbsp;Now logon to a Windows Server 2008 full version and copy three files (<strong>bdehdcfg.exe,bdehdcfglib.dll and reagent.dll&nbsp;</strong>) from the %WinDir%\System32 directory to the same directory on the Root CA.</p>
<p>5. On the same full edition server run the following command: <strong>cmdkey /add</strong><em>:&lt;Hostname of&nbsp;Root CA&gt;</em><strong> &nbsp;/User</strong><em>:&lt;Computername\Administrator&gt;</em><strong> /pass:</strong><em>&lt;password&gt;</em></p>
<p>(in my case it was: cmdkey /add:RootCA /User:RootCA\Administrator /pass:myComplexPassw0rd)</p>
<p>6. Now run the following command on the same server: <strong>mmc</strong></p>
<p>7. Click on <strong>File -&gt; Add/Remove snap-in -&gt; Group Policy Object editor -&gt; Add -&gt; Browse -&gt; Another Computer -&gt; Hostname of the server (RootCA) -&gt; OK -&gt; Finish</strong></p>
<p>8. Navigate to <strong>Computer Configuration\Policies\Administrative Templates\Windows Components\BitLocker Drive Encryption\Operating System Drives\Require Additional Authentication At Startup</strong></p>
<p>9. Select <strong>Enable </strong>and make sure that <strong>Allow Bitlocker without a compatible TPM </strong>is<strong> enabled.</strong></p>
<p><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/21-Bitlocker-GPO.png"><img alt="" class="alignnone size-full wp-image-610" height="212" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/21-Bitlocker-GPO.png" title="21 Bitlocker GPO" width="487" /></a></strong></p>
<p>10. You can now log out on the Win2K8 R2 full server.</p>
<p>11. Logon to the RootCA server and run the following command: <strong>GPupdate </strong>(to make sure that the settings are applied)</p>
<p>12. Run the following command on the Root CA to create the Bitlocker partition S: <strong>bdehdcfg -target c: shrink -newdriveletter s: -size 300</strong></p>
<p><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/15-Bitlocker-disk.png"><img alt="" class="alignnone size-full wp-image-609" height="106" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/15-Bitlocker-disk.png" title="15 Bitlocker disk" width="448" /></a></strong></p>
<p>13. Now insert an formatted (FAT32) USB (physical machine) or an virtual floppy disk (virtual machine) to the server.</p>
<p>14.&nbsp;To enable bitlocker on the OS partition run the following command: <strong>Manage-BDE -on C: -StartupKey A:</strong>&nbsp;<em>(A: was the location of my virtual floppy disk)</em></p>
<p><em><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/17-Enable-Bitlocker1.png"><img alt="" class="alignnone size-full wp-image-626" height="242" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/17-Enable-Bitlocker1.png" title="17 Enable Bitlocker" width="506" /></a></em></p>
<p>15. Now restart the server (with the virtual floppy or usb) by running the following command: <strong>shutdown -r -t 0</strong></p>
<p><span style="color: #f00"><strong>Note: Make sure to boot from you harddrive.</strong></span></p>
<p><span _fck_bookmark="1" style="display: none">&nbsp;</span><span style="color: #000">16. When the server is restarted logon to the computer and run the following command to check the status of BitLocker: <strong>Manage-BDE -status</strong></span></p>
<p><span style="color: #000"><strong><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/18-Encrypting-drive.png"><img alt="" class="alignnone size-full wp-image-627" height="219" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/18-Encrypting-drive.png" title="18 Encrypting drive" width="494" /></a></strong></span></p>
<p><span style="color: #000">17. Now wait for about half an hour (depends on your disk size) and check the status again with the same command as step 16.</span></p>
<p><span style="color: #000"><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/19-Encryption-ready.png"><img alt="" class="alignnone size-full wp-image-628" height="175" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/19-Encryption-ready.png" title="19 Encryption ready" width="484" /></a></span></p>
<p><span style="color: #000">18. To check if the server can be restarted without the BitLock startup key please reboot the server without the virtual floppy or usb disk mounted.</span></p>
<p><span style="color: #000"><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/20-Bitlocker-test.png"><img alt="" class="alignnone size-full wp-image-629" height="314" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/20-Bitlocker-test.png" title="20 Bitlocker test" width="482" /></a></span></p>
<p>&nbsp;</p>
<p><span style="color: #000">End of Part 2. Next part: Configuring Certificate Services on the Root CA.</span></p>
<p><span _fck_bookmark="1" style="display: none">&nbsp;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Root CA on Windows Server 2008 R2 core edition Part 1</title>
		<link>http://www.bart-timmermans.nl/how-to-create-a-root-ca-on-windows-server-2008-r2-core-edition/</link>
		<comments>http://www.bart-timmermans.nl/how-to-create-a-root-ca-on-windows-server-2008-r2-core-edition/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 20:53:11 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Bitlocker]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[Certificate Authority]]></category>
		<category><![CDATA[Certificates]]></category>
		<category><![CDATA[PKI]]></category>
		<category><![CDATA[Root CA]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[ADCS]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Root]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=587</guid>
		<description><![CDATA[This guide explains how to install and configure an offline Root Certificate Authority on a Windows Server 2008 R2 core edtion. This guide is splitted in three seperate parts: Part 1: Introduction and pre-installation tasks Part 2: Encrypting the drive of the Root CA using BitLocker Part 3: Installing Active Directory Certificate Services on the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2009/10/banner-r2_2-744204.jpg"><img alt="" class="alignnone size-full wp-image-200" height="94" src="http://www.bart-timmermans.nl/wp-content/uploads/2009/10/banner-r2_2-744204.jpg" title="banner-r2_2-744204" width="299" /></a></p>
<p>This guide explains how to install and configure an offline Root Certificate Authority on a Windows Server 2008 R2 core edtion.</p>
<p>This guide is splitted in three seperate parts:</p>
<ul>
<li>Part 1: Introduction and pre-installation tasks</li>
<li><a href="http://www.bart-timmermans.nl/rootcap2/">Part 2: Encrypting the drive of the Root CA using BitLocker</a></li>
<li><a href="http://www.bart-timmermans.nl/create-a-root-ca-on-windows-server-2008-r2-core-edition-part-3/#more-645">Part 3: Installing Active Directory Certificate Services on the Root CA</a></li>
</ul>
<p>Main reason to configure the Root CA on a core edition is to lower the attack surface. The attack surface should be as low as possible to prevent hackers from stealing the private key of the root certificate. Therefore most of the time the Root CA will be shutdown and disconnected from the network. More about security hardening&nbsp;on an Root&nbsp;CA in a later article.</p>
<p><u><strong>Prerequisites</strong></u></p>
<p>The following must be available before using this guide:</p>
<ul>
<li>A dedicated physical or virtual machine;</li>
<li>Root access to the server (ILO, VMware, vSphere console);</li>
<li>Windows Server 2008 R2 core edition already installed;</li>
<li>Hostname and network settings already configured;</li>
<li><strong>Very</strong> <strong>complex</strong> password set for the administrator account;</li>
<li>Firewall must be on with <strong>no exceptions;</strong></li>
<li>Access to Windows update, WSUS, SCCM or other patching mechanism.</li>
</ul>
<p><u><strong>Installation steps</strong></u></p>
<p><span id="more-587"></span></p>
<p><strong>Step1: Install all updates (securing the server)</strong></p>
<p>1. Open up the command prompt on the Root CA server.</p>
<p>2. Run the following command to open up the server configuration: <strong>sconfig</strong></p>
<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/1-Updates-61.png"><img alt="" class="alignnone size-full wp-image-593" height="224" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/1-Updates-61.png" title="1 Updates 6" width="449" /></a></p>
<p>3. Press &quot;<strong>6</strong>&quot; to download and install Windows Updates.</p>
<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/2-Updates-All-updates1.png"><img alt="" class="alignnone size-full wp-image-598" height="221" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/2-Updates-All-updates1.png" title="2 Updates All updates" width="447" /></a></p>
<p>4. Press &quot;<strong>A</strong>&quot; to search for all available updates.</p>
<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/3-Updates-Select-updates.png"><img alt="" class="alignnone size-full wp-image-599" height="222" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/3-Updates-Select-updates.png" title="3 Updates Select updates" width="441" /></a></p>
<p>5. Press &quot;<strong>A</strong>&quot; to select all updates.</p>
<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/4-Updates-Install-succeeded.png"><img alt="" class="alignnone size-full wp-image-600" height="220" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/03/4-Updates-Install-succeeded.png" title="4 Updates Install succeeded" width="442" /></a></p>
<p>6. Click <strong>Yes</strong> to restart te server.</p>
<hr />
<p>This is the end of part 1. <a href="http://www.bart-timmermans.nl/rootcap2/">Next part we are going to encrypt the drive of the Root CA with BitLocker.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/how-to-create-a-root-ca-on-windows-server-2008-r2-core-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft releases SP2 for Exchange Server 2010</title>
		<link>http://www.bart-timmermans.nl/microsoft-releases-sp2-for-exchange-server-2010/</link>
		<comments>http://www.bart-timmermans.nl/microsoft-releases-sp2-for-exchange-server-2010/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 22:52:51 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Exchange Server 2010]]></category>
		<category><![CDATA[Exhange Server]]></category>
		<category><![CDATA[Hotfixes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[SP]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=743</guid>
		<description><![CDATA[Source: Microsoft Microsoft Exchange Server 2010 SP2 helps IT Professionals achieve new levels of reliability with greater flexibility, enhanced user experiences, and increased protection for business communications. Flexible and reliable &#8211; Exchange Server 2010 SP2 gives you the flexibility to tailor your deployment based on your company&#39;s unique needs and a simplified way to keep [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411.png"><img alt="" class="alignnone size-medium wp-image-509" height="143" src="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411-300x143.png" title="exchange-2010-logo-7333411" width="300" /></a></p>
<p>Source: <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=28190&amp;WT.mc_id=rss_alldownloads_all">Microsoft</a></p>
<p>Microsoft Exchange Server 2010 SP2 helps IT Professionals achieve new levels of reliability with greater flexibility, enhanced user experiences, and increased protection for business communications.</p>
<ul>
<li><b>Flexible and reliable</b> &#8211; Exchange Server 2010 SP2 gives you the flexibility to tailor your deployment based on your company&#39;s unique needs and a simplified way to keep e-mail continuously available for your users.</li>
<li><b>Anywhere access</b> &#8211; Exchange Server 2010 SP2 helps your users get more done by giving them the freedom to securely access all their communications &#8211; e-mail, voice mail, instant messaging, and more &#8211; from virtually any platform, Web browser, or device.</li>
<li><b>Protection and compliance</b> &#8211; Exchange Server 2010 SP2 delivers integrated information loss prevention, and compliance tools aimed at helping you simplify the process of protecting your company&#39;s communications and meeting regulatory requirements.</li>
</ul>
<p>
	You must accept the license terms for the software before you are authorized to use it. There is no product support for the trial edition of the software. You are welcome to participate in the forums to share your trial experiences with others and to ask for advice.</p>
<p><a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=28190&amp;WT.mc_id=rss_alldownloads_all">Download it here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/microsoft-releases-sp2-for-exchange-server-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010: Remotely create a mailbox</title>
		<link>http://www.bart-timmermans.nl/exchange-2010-remotely-create-a-mailbox/</link>
		<comments>http://www.bart-timmermans.nl/exchange-2010-remotely-create-a-mailbox/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 00:05:53 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Exchange Server 2010]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=575</guid>
		<description><![CDATA[I have created an script which will remotely enables a users mailbox. # This powershell script creates a remote mailbox. # Created by Bart Timmermans $Server = Read-Host &#34;(Please enter the hostname of your Exchange 2010 Server)&#34; $User = Read-Host &#34;Please enter the username (domain\user)&#34; $ServerFull = &#34;HTTP://&#34; + $Server + &#34;/Powershell&#34; # Start session [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411.png"><img alt="" class="alignnone size-medium wp-image-509" height="143" src="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411-300x143.png" title="exchange-2010-logo-7333411" width="300" /></a></p>
<p>I have created an script which will remotely enables a users mailbox.</p>
<p><span style="color: #00ff00"># This powershell script creates a remote mailbox.<br />
	# Created by Bart Timmermans<br />
	</span><span style="color: #4b0082">$Server</span> = Read-Host &quot;(Please enter the hostname of your Exchange 2010 Server)&quot;<br />
	<span style="color: #4b0082">$User </span>= Read-Host &quot;Please enter the username (domain\user)&quot;<br />
	<span style="color: #4b0082">$ServerFull</span> = &quot;HTTP://&quot; +<span style="color: #4b0082"> $Server </span>+ &quot;/Powershell&quot;</p>
<p><span style="color: #00ff00"># Start session to remote Exchange 2010 server.<br />
	</span><span style="color: #4b0082">$Session</span> = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri <span style="color: #4b0082">$ServerFull </span>-Authentication Kerberos<br />
	Import-PSSession <span style="color: #4b0082">$Session</span></p>
<p><span style="color: #00ff00"># Create new mailbox<br />
	</span>Enable-Mailbox -identity <span style="color: #4b0082">$User</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/exchange-2010-remotely-create-a-mailbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Auto Draft</title>
		<link>http://www.bart-timmermans.nl/</link>
		<comments>http://www.bart-timmermans.nl/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
		
		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=754</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft releases rollup 4 for Exchange Server 2010 SP1</title>
		<link>http://www.bart-timmermans.nl/microsoft-releases-rollup-4-for-exchange-server-2010-sp1/</link>
		<comments>http://www.bart-timmermans.nl/microsoft-releases-rollup-4-for-exchange-server-2010-sp1/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 20:58:46 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Exchange Server 2010]]></category>
		<category><![CDATA[Exhange Server]]></category>
		<category><![CDATA[Hotfixes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Service pack]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=722</guid>
		<description><![CDATA[Source: Microsoft Exchange blog Earlier today the Exchange CXP team released Update Rollup 4 for Exchange Server 2010 SP1 to the Download Center. This update contains a number of customer-reported and internally found issues since the release of RU1. See &#39;KB 2509910: Description of Update Rollup 4 for Exchange Server 2010 Service Pack 1&#39; for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411.png"><img alt="" class="alignnone size-medium wp-image-509" height="143" src="http://www.bart-timmermans.nl/wp-content/uploads/2010/04/exchange-2010-logo-7333411-300x143.png" title="exchange-2010-logo-7333411" width="300" /></a></p>
<p>Source: <a target="_blank" href="http://blogs.technet.com/b/exchange/archive/2011/06/22/released-update-rollup-4-for-exchange-2010-sp1.aspx">Microsoft Exchange blog</a></p>
<p>Earlier today the Exchange <acronym title="Customer Experience">CXP</acronym> team released <a target="_blank" class="bold" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0b55e26a-e969-4692-a0f3-36680bd49b01" title="Download 'Update Rollup 4 for Exchange 2010 SP1' from the Download Center">Update Rollup 4 for Exchange Server 2010 SP1</a> to the Download Center.</p>
<p>This update contains a number of customer-reported and internally found issues since the release of RU1. See &#39;<a target="_blank" class="kblink" href="http://support.microsoft.com/kb/2509910">KB 2509910</a>: Description of Update Rollup 4 for Exchange Server 2010 Service Pack 1&#39; for more details. In particular we would like to specifically call out the following fixes which are included in this release:</p>
<ul class="nobullet">
<li><a target="_blank" class="kblink" href="http://support.microsoft.com/kb/2519359">2519359</a> Unable to Create a &#39;Reply With&#39; Rule on Public Folders Even With Owner and Send As Permissions</li>
<li><a target="_blank" class="kblink" href="http://support.microsoft.com/kb/2394554">2394554</a> Generating DSN fails if original mail uses non-support encoding charset.</li>
<li><a target="_blank" class="kblink" href="http://support.microsoft.com/kb/2490134">2490134</a> Outlook 2007 does not deliver &quot;Delayed Delivery&quot; Messages against an Exchange 2010 Server in Online mode with any additional Transport loaded in the Outlook Profile</li>
</ul>
<p class="note">Some of the above KnowledgeBase articles are not replicated/live at the time of writing this post. Please check back later in the day if you can&#39;t reach them.</p>
<p>Update Rollup 5 for Exchange Server 2010 Service Pack 1 is currently scheduled to release in August 2011.</p>
<h3>General Notes</h3>
<p><span class="bold">Note for Exchange 2010 Customers using the Arabic and Hebrew language version</span>: We introduced two new languages with the release of Service Pack 1, Arabic and Hebrew. At present we are working through the process of modifying our installers to incorporate these two languages. Customers running either of the two language versions affected are advised to download and install the English language version of the rollup which contains all of the same fixes.</p>
<p><a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=26554">Download&nbsp;it here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/microsoft-releases-rollup-4-for-exchange-server-2010-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft releases beta for Microsoft Orchestrator 2012</title>
		<link>http://www.bart-timmermans.nl/microsoft-releases-beta-for-microsoft-orchestrator-2012/</link>
		<comments>http://www.bart-timmermans.nl/microsoft-releases-beta-for-microsoft-orchestrator-2012/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 21:00:44 +0000</pubDate>
		<dc:creator>Bart Timmermans</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Opalis]]></category>
		<category><![CDATA[Orchestrator]]></category>
		<category><![CDATA[Orchestrator 2012]]></category>
		<category><![CDATA[System Center]]></category>

		<guid isPermaLink="false">http://www.bart-timmermans.nl/?p=719</guid>
		<description><![CDATA[Source: Microsoft The System Center Orchestrator Beta product provides the capability of automation of workflows (Runbooks) across other System Center and 3rd party products. These runbooks are created in the Runbook Designer, deployed via the Deployment Manager and run and monitored locally or remotely via the Orchestrator Console. Feature Bullet Summary: &#160; Management Server Orchestrator [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bart-timmermans.nl/wp-content/uploads/2011/06/Orchestrator_2012.jpg"><img alt="" class="alignnone size-medium wp-image-720" height="85" src="http://www.bart-timmermans.nl/wp-content/uploads/2011/06/Orchestrator_2012-300x85.jpg" title="Orchestrator_2012" width="300" /></a></p>
<p>Source: <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3a+MicrosoftDownloadCenter+(Microsoft+Download+Center)&amp;id=26503">Microsoft</a></p>
<p>The System Center Orchestrator Beta product provides the capability of automation of workflows (Runbooks) across other System Center and 3rd party products. These runbooks are created in the Runbook Designer, deployed via the Deployment Manager and run and monitored locally or remotely via the Orchestrator Console. </p>
<p>	<b>Feature Bullet Summary: </b><br />
	&nbsp;</p>
<ul>
<li>Management Server</li>
<li>Orchestrator Console</li>
<li>Runbook Designer</li>
<li>Deployment Manager</li>
<li>Web service for reporting</li>
</ul>
<p><a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3a+MicrosoftDownloadCenter+(Microsoft+Download+Center)&amp;id=26503">Download the beta here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bart-timmermans.nl/microsoft-releases-beta-for-microsoft-orchestrator-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.425 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 21:20:56 -->

