<?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>Ward Vissers &#187; Powershell</title>
	<atom:link href="http://www.wardvissers.nl/tag/powershell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wardvissers.nl</link>
	<description>Things About Microsoft &#38; Exchange &#38; VMware</description>
	<lastBuildDate>Wed, 01 Feb 2012 19:42:56 +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>Home folders renamed to My Documents</title>
		<link>http://www.wardvissers.nl/2010/12/07/home-folders-renamed-to-my-documents/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=home-folders-renamed-to-my-documents</link>
		<comments>http://www.wardvissers.nl/2010/12/07/home-folders-renamed-to-my-documents/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 21:39:15 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/12/07/home-folders-renamed-to-my-documents/</guid>
		<description><![CDATA[When you redirect users home folders to network share the folders are show as My Documents folder. This is a bug in Windows 7&#160; http://support.microsoft.com/kb/947222 Solution: Do not grant the Read permission to the administrator for the Desktop.ini files on &#8230; <a href="http://www.wardvissers.nl/2010/12/07/home-folders-renamed-to-my-documents/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When you redirect users home folders to network share the folders are show as My Documents folder.   </p>
<p>This is a bug in <a href="http://www.wardvissers.nl/tag/windows-7/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 7">Windows 7</a>&#160; <br /><a title="http://support.microsoft.com/kb/947222" href="http://support.microsoft.com/kb/947222">http://support.microsoft.com/kb/947222</a>    </p>
<p>Solution:</p>
<p>Do not grant the Read permission to the administrator for the Desktop.ini files on the server. To do this, follow these steps:</p>
<p><b>Note</b> If more than one Desktop.ini file exists, follow these steps for all the Desktop.ini files. </p>
<ol>
<li>Right-click the <strong>Desktop.ini</strong> file, click <strong>Properties</strong>, and then click the <strong>Security</strong> tab. </li>
<li>In the <strong>Group or user names</strong> pane, click <strong>Administrators</strong>. </li>
<li>Click to select the <strong>Deny</strong> check box for the <strong>Read</strong> permission. </li>
<li>Click <strong>OK</strong>.</li>
</ol>
<p>If you have 1000+ home folders this is not great thing to do <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-sadsmile" alt="Sad smile" src="http://www.wardvissers.nl/wp-content/uploads/1f5da53e9c34_13309/wlEmoticon-sadsmile.png" /></p>
<p><a href="http://blog.salamandersoft.co.uk/index.php/2010/09/how-to-stop-home-folders-being-renamed-documents-in-the-network-share/" target="_blank">Richard Willis</a> created a nice <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> script that will do it for you <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-openmouthedsmile" alt="Open-mouthed smile" src="http://www.wardvissers.nl/wp-content/uploads/1f5da53e9c34_13309/wlEmoticon-openmouthedsmile.png" />    <br />You need only change the <strong>groupName </strong>to the group that you will give deny read permissions.    <br />Save the script in de home folder where all the “My Documents” are and run the script.</p>
<p>The Script:   <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>$folders = Get-ChildItem | where-object {$_.psiscontainer};   <br />foreach ($folder in $folders)    <br />{    <br />$desktopIni = Get-ChildItem $folder -Filter desktop.ini -Force    <br />if ($desktopIni -ne $null)    <br />{    <br />$Acl = Get-Acl $desktopIni.FullName    <br />$Ar = New-Object system.security.accesscontrol.filesystemaccessrule `    <br />(&quot;groupName&quot;,&quot;Read&quot;,&quot;Deny&quot;)    <br />$Acl.SetAccessRule($Ar)    <br />Set-Acl $desktopIni.FullName $Acl    <br />}    <br />}</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Home+folders+renamed+to+My+Documents+http%3A%2F%2Ftinyurl.com%2F3a8zjgy" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/12/07/home-folders-renamed-to-my-documents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>After installing Rollup 1 for Exchange 2007 SP3 IMAP is now serving most text/plain parts as text/html</title>
		<link>http://www.wardvissers.nl/2010/11/25/after-installing-rollup-1-for-exchange-2007-sp3-imap-is-now-serving-most-textplain-parts-as-texthtml/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=after-installing-rollup-1-for-exchange-2007-sp3-imap-is-now-serving-most-textplain-parts-as-texthtml</link>
		<comments>http://www.wardvissers.nl/2010/11/25/after-installing-rollup-1-for-exchange-2007-sp3-imap-is-now-serving-most-textplain-parts-as-texthtml/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 20:52:47 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/11/25/after-installing-rollup-1-for-exchange-2007-sp3-imap-is-now-serving-most-textplain-parts-as-texthtml/</guid>
		<description><![CDATA[After installing Rollup 1 for Exchange 2007 SP3 IMAP is now serving most text/plain parts as text/html instead. I had some issue with a simple mail import tool that now imported all mail with html codes. Before the rollup 1 &#8230; <a href="http://www.wardvissers.nl/2010/11/25/after-installing-rollup-1-for-exchange-2007-sp3-imap-is-now-serving-most-textplain-parts-as-texthtml/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After installing Rollup 1 for <a href="http://www.wardvissers.nl/tag/exchange-2007/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2007">Exchange 2007</a> SP3 IMAP is now serving most text/plain parts as text/html instead. I had some issue with a simple mail import tool that now imported all mail with html codes.</p>
<p>Before the rollup 1 they were previously multipart/alternative messages with both text/plain and text/html subparts. </p>
<p><strong>Solution:<br /></strong>You can set in through in the GUI or using <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> to set the value to 0 text only</p>
<p><strong>ImapMessagesRetrievalMimeFormat:<br /></strong>0:Text Only<br />1:HTML Only<br />2:HTML and Alternative Text<br />3:Enriched Text Only<br />4:Enriched Text and Alternative Text<br />5:Best Body Format
<p><strong><a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Management Console:</strong></p>
<p><a></a>
<ol>
<li>
<p>In the console tree, expand <strong>Server Configuration</strong>, and then click <strong>Client Access</strong>.</p>
<li>
<p>In the work pane, click the <strong>POP3 and IMAP4</strong> tab.</p>
<li>
<p>In the work pane, select <strong>IMAP4</strong> and then, in the result pane, click <strong>Properties</strong>.</p>
<li>
<p>On the <strong>IMAP4 Properties</strong> page, click the <strong>Retrieval Settings</strong> tab.</p>
<li>
<p>In the <strong>Message Retrieval</strong> pane, select a message format from the drop-down list under <strong>Message MIME format</strong>. I choies for 0</p>
<li>
<p>Click <strong>Apply</strong>, and then click <strong>OK</strong> to save your changes.</p>
</li>
</ol>
<p><strong>Powershell:</strong></p>
<p>Set-CASMailbox -Identity yourcasserverhere -PopMessagesRetrievalMimeFormat 0</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=After+installing+Rollup+1+for+Exchange+2007+SP3+IMAP+is+now+serving+most+text%2Fplain+parts+as+text%2Fhtml+http%3A%2F%2Ftinyurl.com%2F32yaoed" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/11/25/after-installing-rollup-1-for-exchange-2007-sp3-imap-is-now-serving-most-textplain-parts-as-texthtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Getting an overview of all ActiveSync devices in the Exchange-organization</title>
		<link>http://www.wardvissers.nl/2010/11/05/exchange-2010-getting-an-overview-of-all-activesync-devices-in-the-exchange-organization/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-getting-an-overview-of-all-activesync-devices-in-the-exchange-organization</link>
		<comments>http://www.wardvissers.nl/2010/11/05/exchange-2010-getting-an-overview-of-all-activesync-devices-in-the-exchange-organization/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 23:22:38 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[View]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/11/05/exchange-2010-getting-an-overview-of-all-activesync-devices-in-the-exchange-organization/</guid>
		<description><![CDATA[If you want a list with al the pda’s that are connected to your Exchange Organization. You can use the following Powershell command let. Get-Mailbox –resultsize unlimited &#124; Get-ActiveSyncDevice &#124; fl userdisplayname,DeviceModel,Devicetype, DeviceUserAgent &#62; c:\pdas.txt]]></description>
			<content:encoded><![CDATA[<p><em></em></p>
<p><em></em></p>
<p>If you want a list with al the pda’s that are connected to your <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Organization. <em>     </p>
<p></em>You can use the following <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> command let.     <br />Get-Mailbox –resultsize unlimited | Get-ActiveSyncDevice | fl userdisplayname,DeviceModel,Devicetype, DeviceUserAgent &gt; c:\pdas.txt</p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange-2010-Getting-an-overview-of-all_14403/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/Exchange-2010-Getting-an-overview-of-all_14403/image_thumb.png" width="411" height="175" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Getting+an+overview+of+all+ActiveSync+devices+in+the+Exchange-organization+http%3A%2F%2Ftinyurl.com%2F2us7594" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/11/05/exchange-2010-getting-an-overview-of-all-activesync-devices-in-the-exchange-organization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 SP1 Prerequisites</title>
		<link>http://www.wardvissers.nl/2010/09/02/exchange-2010-sp1-prerequisites/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-sp1-prerequisites</link>
		<comments>http://www.wardvissers.nl/2010/09/02/exchange-2010-sp1-prerequisites/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 19:15:16 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2008 R2]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/09/02/exchange-2010-sp1-prerequisites/</guid>
		<description><![CDATA[Some day’s ago Microsoft Releases Exchange 2010 SP1. When you install Exchange 2010 SP1 you need to install some hotfixes. The Exchange Team have made a nice over view witch hotfixes you need for the OS. Hotfix Download Windows Server &#8230; <a href="http://www.wardvissers.nl/2010/09/02/exchange-2010-sp1-prerequisites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some day’s ago <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> Releases <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2010 SP1. When you install <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2010 SP1 you need to install some hotfixes. The <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Team have made a nice over <a href="http://www.wardvissers.nl/tag/view/" class="st_tag internal_tag" rel="tag" title="Posts tagged with View">view</a> witch hotfixes you need for the OS.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Hotfix</strong></td>
<td valign="top"><strong>Download</strong></td>
<td valign="top"><strong><a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> Server 2008</strong></td>
<td valign="top"><strong>Windows Server <a href="http://www.wardvissers.nl/tag/2008-r2/" class="st_tag internal_tag" rel="tag" title="Posts tagged with 2008 R2">2008 R2</a></strong></td>
<td valign="top"><strong><a href="http://www.wardvissers.nl/tag/windows-7/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 7">Windows 7</a> &amp; Windows <a href="http://www.wardvissers.nl/tag/vista/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Vista">Vista</a></strong></td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=979744">979744</a><br />
A .NET Framework 2.0-based Multi-AppDomain application stops responding when you run the application</td>
<td valign="top"><a href="http://code.msdn.microsoft.com/KB979744/Release/ProjectReleases.aspx?ReleaseId=3993">MSDN</a><br />
or <a href="http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=27109">Microsoft Connect</a></td>
<td valign="top">Windows6.0-KB979744-x64.msu (CBS: Vista/Win2K8)</td>
<td valign="top">Windows6.1-KB979744-x64.msu (CBS: Win7/Win2K8 R2)</td>
<td valign="top">N. A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=983440">983440</a><br />
An ASP.NET 2.0 hotfix rollup package is available for Windows 7 and for Windows Server 2008 R2</td>
<td valign="top"><a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=983440">Request from CSS</a></td>
<td valign="top">Yes</td>
<td valign="top">Yes</td>
<td valign="top">N.A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=977624">977624</a><br />
AD RMS clients do not authenticate federated identity providers in Windows Server 2008 or in Windows Vista. Without this update, <a href="http://www.wardvissers.nl/tag/active-directory/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Active Directory">Active Directory</a> Rights Management Services (AD RMS) features may stop working</td>
<td valign="top">Request from CSS using the “<strong>View and request hotfix downloads</strong>” link in the KBA | <a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=977624&amp;kbln=en-us">US-English</a></td>
<td valign="top">Select the download for Windows Vista for the x64 platform.</td>
<td valign="top">N.A.</td>
<td valign="top">N.A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=979917">979917</a><br />
Two issues occur when you deploy an ASP.NET 2.0-based application on a server that is running IIS 7.0 or IIS 7.5 in Integrated mode</td>
<td valign="top">Request from CSS using the <a href="https://support.microsoft.com/contactus/emailcontact.aspx?scid=sw;%5bLN%5d;1422&amp;WS=hotfix">Hotfix Request Web Submission Form</a> or by phone (no charge)</td>
<td valign="top">Yes</td>
<td valign="top">N. A.</td>
<td valign="top">N. A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=973136">973136</a>,<br />
FIX: ArgumentNullException exception error message when a .NET Framework 2.0 SP2-based application tries to process a response with zero-length content to an asynchronous ASP.NET Web service request: &#8220;Value cannot be null&#8221;.</td>
<td valign="top"><a href="https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=20922">Microsoft Connect</a></td>
<td valign="top">Windows6.0-KB973136-x64.msu</td>
<td valign="top">N.A.</td>
<td valign="top">N. A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?LinkId=194843">977592</a><br />
RPC over HTTP clients cannot connect to the Windows Server 2008 RPC over HTTP servers that have RPC load balancing enabled.</td>
<td valign="top"><a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=977592&amp;kbln=en-us">Request from CSS</a></td>
<td valign="top">Select the download for Windows Vista (x64)</td>
<td valign="top">N.A.</td>
<td valign="top">N. A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=979099">979099</a><br />
An update is available to remove the application manifest expiry feature from AD RMS clients.</td>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=87f72529-d316-42e8-bf77-a46951f66dda">Download Center</a></td>
<td valign="top">N. A.</td>
<td valign="top">Windows6.1-KB979099-x64.msu</td>
<td valign="top">N. A.</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=982867">982867</a></p>
<p>WCF services that are hosted by computers together with a NLB fail in .NET Framework 3.5 SP1</td>
<td valign="top"><a href="http://code.msdn.microsoft.com/KB982867/Release/ProjectReleases.aspx?ReleaseId=4520">MSDN</a></td>
<td valign="top">N. A.</td>
<td valign="top">Windows6.1-KB982867-v2-x64.msu (Win7)</td>
<td valign="top"><strong>X86</strong>: Windows6.1-KB982867-v2-x86.msu (Win7)<br />
<strong>x64</strong>: Windows6.1-KB982867-v2-x64.msu (Win7)</td>
</tr>
<tr>
<td valign="top"><a href="http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=977020">977020</a><br />
FIX: An application that is based on the Microsoft .NET Framework 2.0 Service Pack 2 and that invokes a Web service call asynchronously throws an exception on a computer that is running Windows 7.</td>
<td valign="top"><a href="http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=27977">Microsoft Connect</a></td>
<td valign="top">N. A.</td>
<td valign="top">N. A.</td>
<td valign="top">x64: Windows6.1-KB977020-v2-x64.msu</p>
<p>X86: Windows6.1-KB977020-v2-x86.msu</td>
</tr>
</tbody>
</table>
<p>Some of the hotfixes would have been rolled up in a Windows update or service pack. Given that the Exchange team released SP1 earlier than what was planned and announced earlier, it did not align with some of the work with the Windows platform. As a result, some hotfixes are available from MSDN/Connect, and some require that you request them online using the links in the corresponding KBs. All these updates may become available on the Download Center, and also through Windows Update.</p>
<p>These hotfixes have been tested extensively as part of <a href="http://www.wardvissers.nl/tag/exchange-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2010">Exchange 2010</a> SP1 deployments within Microsoft and by our TAP customers. They are fully supported by Microsoft.</p>
<p>The TechNet article <a href="http://technet.microsoft.com/en-us/library/bb691354.aspx">Exchange 2010 Prerequisites</a> is updated with the hotfixes and install the prerequisites required for your server version (the hotfixes are linked to in the above table).</p>
<p>You can use the Install the Windows Server 2008 SP2 operating system prerequisites on a <a href="http://www.wardvissers.nl/tag/windows-2008-r2/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 2008 R2">Windows 2008 R2</a> server. Only you have to run the following <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> command: Import-Module ServerManager</p>
<p>Installed Exchange 2010 SP1 on a <a href="http://www.wardvissers.nl/tag/windows-2008/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 2008">Windows 2008</a> R2 Server with problems. I feels that the MMC is faster. Tomorrow upgrading a DAG/NLB cluster to Exchange 2010 SP1.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+SP1+Prerequisites+http%3A%2F%2Ftinyurl.com%2F22qwwox" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/09/02/exchange-2010-sp1-prerequisites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Autodiscovery Issues</title>
		<link>http://www.wardvissers.nl/2010/08/09/exchange-2010-autodiscovery-issues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-autodiscovery-issues</link>
		<comments>http://www.wardvissers.nl/2010/08/09/exchange-2010-autodiscovery-issues/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 12:04:14 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/08/09/exchange-2010-autodiscovery-issues/</guid>
		<description><![CDATA[Two weeks ago a build my first production Exchange 2010 cluster. The Exchange 2010 web services are causing a lot of issues to people, and my self not any more. Well, let us first list the directories that are used &#8230; <a href="http://www.wardvissers.nl/2010/08/09/exchange-2010-autodiscovery-issues/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago a build my first production <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2010 cluster. The <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2010 web services are causing a lot of issues to people, and my self not any more.    </p>
<p>Well, let us first list the directories that are used in the Exchange web service:</p>
<p>EWS is used for OOF, Scheduling assistance and free+busy Lookup.    <br />OAB provides offline address book download services for client.     <br />Autodiscover is used to provide users with autodiscover service.     <br />EAS provides ActiveSync services to <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> Mobile based devices.     <br />OWA provides <a href="http://www.wardvissers.nl/tag/outlook/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Outlook">outlook</a> web access for users.     <br />ECP provides Exchange control panel feature for <a href="http://www.wardvissers.nl/tag/exchange-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2010">Exchange 2010</a> users only. </p>
<p><strong>Issues that might be resolved using the troubleshooting steps here</strong>:</p>
<p>You cannot set the OOF using outlook client, you receive the server not available error.    <br />You cannot <a href="http://www.wardvissers.nl/tag/view/" class="st_tag internal_tag" rel="tag" title="Posts tagged with View">view</a> free/busy information for other users.     <br />You cannot use scheduling assistance, also you might receive not free/busy information data retrieved.     <br />You cannot download Offline Address book errors.     <br />You cannot use autodiscover externally.     <br />Certificate mismatch error in autodiscover, users prompted to trust certificate in outlook 2007/2010. </p>
<p>First let us start by settings the right virtual directory configuration required for Exchange 2010 to work correctly:    <br /><b>Configure External and Internal URLs for OWS, ref: <a title="http://technet.microsoft.com/en-us/library/bb310763.aspx" href="http://technet.microsoft.com/en-us/library/bb310763.aspx">http://technet.microsoft.com/en-us/library/bb310763.aspx</a></b></p>
<p>You have to configure the internal URL to be the server name. In case you have multiple cas/hub servers configured in a NLB then can use the nlb cluster name for the internal url.&#160; <br />External URL will be the URL used by users to access webmail e.g. <a href="https://webmail.wardvissers.nl/owa">https://webmail.wardvissers.nl/owa</a>&#160; </p>
<p><b>Configure the autodiscover internal URL, ref: <a title="http://technet.microsoft.com/en-us/library/bb201695.aspx" href="http://technet.microsoft.com/en-us/library/bb201695.aspx">http://technet.microsoft.com/en-us/library/bb201695.aspx</a></b></p>
<p>You will use the <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> cmdlet : Set-ClientAccessServer –Identity &lt;CAS Server Name&gt; -AutoDiscoverServiceInternalUri: &lt;Internal URL&gt;, this FQDN must match the URL included in the certificate. If you have NLB cluster then you put the internal name here like nlbek10.wardvissers.local </p>
<p>If you cannot use autodiscover.wardvissers.nl internally (you have a domain name of domain.local and you must use it), you will get a certificate miss match error, you will have to include the internal name in the SAN certificate if you purchase an external SAN certificate.&#160; </p>
<p>You cannot set autodiscover external URL since outlook will try to access <a href="https://autodiscover.wardvissers.nl/autodiscover/autodiscover.xml">https://autodiscover.wardvissers.nl/autodiscover/autodiscover.xml</a>, this behavior is by design and cannot be changed.     </p>
<p><strong>Best Practice: Use SAN Certificates</strong> </p>
<p>Depending on how you configure the service names in your Exchange <a href="http://www.wardvissers.nl/tag/deployment/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Deployment">deployment</a>, your Exchange server may require a certificate that can represent multiple domain names. Although a wildcard certificate, such as one for *.wardvissers.nl, can resolve this problem, many customers are uncomfortable with the security implications of maintaining a certificate that can be used for any sub-domain. A more secure alternative is to list each of the required domains as SANs in the certificate. By default, this approach is used when certificate requests are generated by Exchange.</p>
<p><strong>Best Practice: Use the Exchange Certificate Wizard to Request Certificates</strong> </p>
<p>There are many services in Exchange that use certificates. A common error when requesting certificates is to make the request without including the correct set of service names. The certificate request wizard in the Exchange Management Console will help you include the correct list of names in the certificate request. The wizard lets you specify which services the certificate has to work with and, based on the services selected, includes the names that you must have in the certificate so that it can be used with those services. Run the certificate wizard when you&#8217;ve deployed your initial set of Exchange 2010 servers and determined which host names to use for the different services for your deployment. </p>
<p><strong>Which Names you must include when you use a third party SAN certificate, ref <a title="http://technet.microsoft.com/en-us/library/dd351044.aspx" href="http://technet.microsoft.com/en-us/library/dd351044.aspx">http://technet.microsoft.com/en-us/library/dd351044.aspx</a>:       <br />External:       <br /></strong>webmail.wardvissers.nl     <br />autodiscover.wardvissers.nl     <br />legacy.wardvissers.nl (If you migrating from 2003 to 2010)     <br /><strong>Internal:</strong>     <br />autodiscover.wardvissers.local     <br />legacy.wardvissers.local     <br />nlbek10.wardvissers.local(Internal NLB CAS/HUB Cluster)     <br />casarray.wardvissers.local(I use this address for the casarray. It has the same ip as the nlbek10)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Autodiscovery+Issues+http%3A%2F%2Ftinyurl.com%2F39lz7n9" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/08/09/exchange-2010-autodiscovery-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDT 2010 Importing automatically the right driver</title>
		<link>http://www.wardvissers.nl/2010/07/19/mdt-2010-importing-automatically-the-right-driver/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mdt-2010-importing-automatically-the-right-driver</link>
		<comments>http://www.wardvissers.nl/2010/07/19/mdt-2010-importing-automatically-the-right-driver/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 12:15:53 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[MDT 2008]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/07/19/mdt-2010-importing-automatically-the-right-driver/</guid>
		<description><![CDATA[Microsoft Deployment Toolkit 2010 has some nice improvements to handle drivers. I will describe how I like to manage drivers in MDT 2010. Some time I wrote i article about how to get the Name &#38; Model from a computer. &#8230; <a href="http://www.wardvissers.nl/2010/07/19/mdt-2010-importing-automatically-the-right-driver/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[</p>
<p><a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> <a href="http://www.wardvissers.nl/tag/deployment/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Deployment">Deployment</a> <a href="http://www.wardvissers.nl/tag/toolkit/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Toolkit">Toolkit</a> 2010 has some nice improvements to handle drivers. I will describe how I like to manage drivers in <a href="http://www.wardvissers.nl/tag/mdt/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT">MDT</a> 2010.</p>
<p>Some time I wrote i article about how to get the <a href="http://www.wardvissers.nl/2010/03/12/mdt-2010-deploy-per-computer-of-per-model/">Name &amp; Model</a> from a computer. This is very important when you want to import only the right drivers automatically.</p>
<p>First we have to build the ‘Out-of-Box Drivers’ folder structure and import drivers. I have subdirectories for each architecture, brand and model.&#160; This is what my folder tree looks like:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image25.png"><img title="MDT 2010 - Out-of-Box Drivers" border="0" alt="MDT 2010 - Out-of-Box Drivers" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb25.png" width="244" height="176" /></a></p>
<p>However, you can build your own structure, as long as you respect the proper model &amp; brand (make) name of the vendors.</p>
<p>Build Out-of-Box Drivers tree</p>
<p>To build up the folder structure you have to know the model name of your hardware. To retrieve the proper computer name execute at <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> command prompt: ‘Get-WmiObject -Class win32_computersystemproduct | fl Name,Model,UUID,Identifyingnumber,Vendor<em>’,</em> to get the exact name WMI queries to determine the computer model. In my case the computer name is “Latitude D830”. </p>
<p>Now that we have drivers imported in our Deployment Share, it’s time to move on.</p>
<p><strong>1. DriverGroups</strong></p>
<p>DriverGroups existed in <a href="http://www.wardvissers.nl/tag/mdt-2008/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT 2008">MDT 2008</a> already, although the MDT Team added subdirectory support in <a href="http://www.wardvissers.nl/tag/mdt-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT 2010">MDT 2010</a>.</p>
<p>At deployment phase MDT uses WMI to query the proper computer model and only the current model drivers will be injected. In order to get this working properly, you have to use the EXACT model name in your Out-of-Box Driver tree. </p>
<p>Inject the correct drivers in your Task Sequence</p>
<p>Add a new step in your Task Sequence to inject the correct drivers. MDT will query the computer name and inject the drivers which corresponds with the computer name from the Out-of-Box folder structure, right before applying the image at deployment.</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image26.png"><img title="MDT 2010 - Set Task Sequence Variable (Add Task)" border="0" alt="MDT 2010 - Set Task Sequence Variable (Add Task)" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb26.png" width="244" height="202" /></a> <a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image27.png"><img title="MDT 2010 - Set Task Sequence Variable (DriverGroup)" border="0" alt="MDT 2010 - Set Task Sequence Variable (DriverGroup)" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb27.png" width="244" height="170" /></a></p>
<p>I use ‘DriverGroup_001’ as Task Sequence Variable, and Win7×64\%Make%\%Model% as value for my <a href="http://www.wardvissers.nl/tag/windows-7/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 7">Windows 7</a> x64. You have to adapt this to your Out-of-Box tree.</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image28.png"><img title="MDT 2010 - Set Task Sequence Variable" border="0" alt="MDT 2010 - Set Task Sequence Variable" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb28.png" width="244" height="217" /></a></p>
<p>As I use a DriverGroup I’ve disabled the ‘Inject Drivers’ task.</p>
<p>Customsettings.ini</p>
<p>As my Task Sequence handles everything, there isn’t anything needed here.</p>
<p>If you don’t like to use a new Task in your TS, you can add DriverGroup variables in customsettings.ini like this:</p>
<p>DriverGroup_001=%Make%\%Model% </p>
<p>DriverGroup_002=Printers</p>
<p><strong>2. Selection Profiles</strong></p>
<p>New in MDT 2010 are DriverSelectionProfiles. These are easy for new MDT admins, very straight forward and easy to use.</p>
<p>Overview:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image29.png"><img title="MDT 2010 - Selection Profiles Overview" border="0" alt="MDT 2010 - Selection Profiles Overview" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb29.png" width="244" height="58" /></a></p>
<p>First you have to create a Profile (or use one of the default profiles):</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image30.png"><img title="MDT 2010 - Selection Profiles, select folders" border="0" alt="MDT 2010 - Selection Profiles, select folders" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb30.png" width="244" height="201" /></a></p>
<p>You can even select Packages and Applications, use it for “bad drivers” aka driver setup packs.</p>
<p>Select what drivers you want to add to the profile;</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image31.png"><img title="MDT 2010 - Selection Profiles, add profile" border="0" alt="MDT 2010 - Selection Profiles, add profile" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb31.png" width="244" height="217" /></a></p>
<p>After making the profiles you can use them in your Task Sequences. The default ‘Inject Drivers’ settings are on the left, the customized one on the right:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image32.png"><img title="MDT 2010 - Selection Profiles, task sequence" border="0" alt="MDT 2010 - Selection Profiles, task sequence" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb32.png" width="244" height="217" /></a> <a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image33.png"><img title="MDT 2010 - Selection Profiles, task sequence" border="0" alt="MDT 2010 - Selection Profiles, task sequence" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/image_thumb33.png" width="244" height="217" /></a></p>
<p>You can add&#160; Selection Profiles for drivers/packages or whatever you want. Just add an extra step in your task sequence like above.</p>
<p>Customsettings.ini</p>
<p>As with DriverGroups you can choose to handle the DriverSelectionProfile in customsettings.ini or in your TS.</p>
<p>Example:</p>
<p>DriverSelectionProfile=Dell Latitude D520 x64 </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=MDT+2010+Importing+automatically+the+right+driver+http%3A%2F%2Ftinyurl.com%2F38zzfu6" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/07/19/mdt-2010-importing-automatically-the-right-driver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Certificate Manager for Exchange 2007</title>
		<link>http://www.wardvissers.nl/2010/05/31/certificate-manager-for-exchange-2007/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=certificate-manager-for-exchange-2007</link>
		<comments>http://www.wardvissers.nl/2010/05/31/certificate-manager-for-exchange-2007/#comments</comments>
		<pubDate>Mon, 31 May 2010 17:01:45 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/05/31/certificate-manager-for-exchange-2007/</guid>
		<description><![CDATA[Exchange 2007 enables SSL within IIS by default. Using PowerShell commands, certificate creation and management is quite confusing and often results with incorrect results due to the nature of the syntax. U-BTech Solutions is providing Certificate Manager for Exchange Server &#8230; <a href="http://www.wardvissers.nl/2010/05/31/certificate-manager-for-exchange-2007/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wardvissers.nl/tag/exchange-2007/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2007">Exchange 2007</a> enables SSL within IIS by default. Using <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">PowerShell</a> commands, certificate creation and management is quite confusing and often results with incorrect results due to the nature of the syntax. U-BTech Solutions is providing <strong>Certificate Manager for <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Server 2007 </strong>freely, to ease the process with a simple, easy to use GUI which enables you to:</p>
<p>1) Manage your current server certificates.    <br />2) Enable certificates for Exchange 2007 Services (POP, IMAP, SMTP, IIS, UM).     <br />3) Generate an Exchange 2007 Certificate Signing Request and process the Certificate Authority answer.     <br />4) Generate an Exchange 2007 Self-Signed certificate (not for production use).     <br />5) Easily include additional subject names in a single certificate.     <br />6) Import &amp; Export ability for existing certificates.     <br />To read more about Certificate Use in Exchange 2007 at <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> TechNet follow the link:</p>
<p><strong>Certificate Manager for Exchange Server 2007 </strong>is currently offered by <strong>U-BTech Solutions </strong>free of charge</p>
<p><a href="http://bink.nu/blogs/news/certificatemanagermainmenu1_22EC1F0F.png"><img title="certificate-manager-main-menu[1]" border="0" alt="certificate-manager-main-menu[1]" src="http://bink.nu/blogs/news/certificatemanagermainmenu1_thumb_018C7973.png" width="573" height="307" /></a></p>
<p><a href="http://www.u-btech.com/images/certificate-manager-flash.html">Certificate Manager for Exchange Server 2007 Flash Demonstration</a></p>
<p><a href="http://www.u-btech.com/products/certificate-manager-for-exchange-2007.html">Download &#8211; Certificate Manager for Exchange 2007</a></p>
<p><a href="http://bink.nu/news/free-tool-certificate-manager-for-exchange-2007.aspx?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+binkdotnu+%28Bink.nu%29">SOURCE</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Certificate+Manager+for+Exchange+2007+http%3A%2F%2Ftinyurl.com%2F2g8639c" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/05/31/certificate-manager-for-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Build Numbers</title>
		<link>http://www.wardvissers.nl/2010/04/27/exchange-2010-build-numbers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-build-numbers</link>
		<comments>http://www.wardvissers.nl/2010/04/27/exchange-2010-build-numbers/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 19:42:20 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/04/27/exchange-2010-build-numbers/</guid>
		<description><![CDATA[If you open de Exchange Management Shell and you run the following powershell command: Get-ExchangeServer &#124; fl name,edition,admindisplayversion you get the Build Number from your Exchange 2007 Servers Exchange Server 2010 Product name Build number Microsoft Exchange Server 2010 RTM &#8230; <a href="http://www.wardvissers.nl/2010/04/27/exchange-2010-build-numbers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you open de <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Management Shell and you run the following <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> command:   <br /><strong>Get-ExchangeServer | fl name,edition,admindisplayversion</strong> you get the Build Number from your <a href="http://www.wardvissers.nl/tag/exchange-2007/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2007">Exchange 2007</a> Servers   </p>
<p><b>Exchange Server 2010</b><br />
<table border="1" cellspacing="0" cellpadding="0" width="645">
<tbody>
<tr>
<td valign="top" width="399">
<p><b>Product name</b></p>
</td>
<td valign="top" width="244">
<p><b>Build number</b></p>
</td>
</tr>
<tr>
<td valign="top" width="399">
<p><a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> Exchange Server 2010 RTM</p>
</td>
<td valign="top" width="244">
<p>14.0.639.21</p>
</td>
</tr>
<tr>
<td valign="top" width="399">
<p>Update Rollup 1 for Exchange Server 2010</p>
</td>
<td valign="top" width="244">
<p>14.0.682.1</p>
</td>
</tr>
<tr>
<td valign="top" width="399">
<p>Update Rollup 2 for Exchange Server 2010</p>
</td>
<td valign="top" width="244">
<p>14.0.689.0</p>
</td>
</tr>
<tr>
<td valign="top" width="399">
<p>Update Rollup 3 for Exchange Server 2010</p>
</td>
<td valign="top" width="244">
<p>14.0.694.0</p>
</td>
</tr>
<tr>
<td valign="top" width="399">
<p><strong>Update Rollup 4 for Exchange Server 2010</strong></p>
</td>
<td valign="top" width="244">
<p><b>14.0.702.1</b></p>
</td>
</tr>
</tbody>
</table>
<p><b>Exchange Server 2010 SP1</b>&#160;<br />
<table border="1" cellspacing="0" cellpadding="0" width="645">
<tbody>
<tr>
<td valign="top" width="399">
<p><b>Product name</b></p>
</td>
<td valign="top" width="244">
<p><b>Build number</b></p>
</td>
</tr>
<tr>
<td valign="top" width="399">
<p><strong>Microsoft Exchange Server 2010 SP1</strong></p>
</td>
<td valign="top" width="244">
<p><strong>14.1.218.15</strong></p>
</td>
</tr>
<tr>
<td valign="top" width="399">&nbsp;</td>
<td valign="top" width="244">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="399">&nbsp;</td>
<td valign="top" width="244">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="399">&nbsp;</td>
<td valign="top" width="244">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="399">&nbsp;</td>
<td valign="top" width="244">&nbsp;</td>
</tr>
</tbody>
</table>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Build+Numbers+http%3A%2F%2Ftinyurl.com%2F35c3wnz" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/04/27/exchange-2010-build-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2007 Builds Numbers</title>
		<link>http://www.wardvissers.nl/2010/04/26/exchange-2007-builds-numbers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2007-builds-numbers</link>
		<comments>http://www.wardvissers.nl/2010/04/26/exchange-2007-builds-numbers/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 12:43:52 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/04/26/exchange-2007-builds-numbers/</guid>
		<description><![CDATA[If you open de Exchange Management Shell and you run the following powershell command: Get-ExchangeServer &#124; fl name,edition,admindisplayversion you get the Build Number from your Exchange 2007 Servers Exchange 2007 RTM Product name Build number Exchange 2007 RTM 8.0.685.25 Update &#8230; <a href="http://www.wardvissers.nl/2010/04/26/exchange-2007-builds-numbers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you open de <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Management Shell and you run the following <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> command:   <br /><strong>Get-ExchangeServer | fl name,edition,admindisplayversion</strong> you get the Build Number from your <a href="http://www.wardvissers.nl/tag/exchange-2007/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2007">Exchange 2007</a> Servers</p>
<p><strong>Exchange 2007 RTM</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="641">
<tbody>
<tr>
<td valign="top" width="408"><strong>Product name </strong><strong></strong></td>
<td valign="top" width="231"><strong>Build number </strong></td>
</tr>
<tr>
<td valign="top" width="408">Exchange 2007 RTM</td>
<td valign="top" width="231">8.0.685.25</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 1 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.708.3</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 2 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.711.2</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 3 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.730.1</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 4 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.744.0</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 5 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.754.0</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 6 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.783.2</td>
</tr>
<tr>
<td valign="top" width="408">Update Rollup 7 for Exchange Server 2007</td>
<td valign="top" width="231">8.0.813.0</td>
</tr>
</tbody>
</table>
<p><strong>Exchange Server 2007 Service Pack 1</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="642">
<tbody>
<tr>
<td width="413"><strong>Product name</strong></td>
<td width="227"><strong>Build Number</strong></td>
</tr>
<tr>
<td width="413"><a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> Exchange Server Exchange 2007 SP1</td>
<td width="227">8.1.240.6</td>
</tr>
<tr>
<td width="413">Update Rollup 1 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.263.1</td>
</tr>
<tr>
<td width="413">Update Rollup 2 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.278.2</td>
</tr>
<tr>
<td width="413">Update Rollup 3 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.291.2</td>
</tr>
<tr>
<td width="413">Update Rollup 4 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.311.3</td>
</tr>
<tr>
<td width="413">Update Rollup 5 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.336.1</td>
</tr>
<tr>
<td width="413">Update Rollup 6 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.340.1</td>
</tr>
<tr>
<td width="413">Update Rollup 7 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.359.2</td>
</tr>
<tr>
<td width="413">Update Rollup 8 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.375.2</td>
</tr>
<tr>
<td width="413">Update Rollup 9 for Exchange Server 2007 Service Pack 1</td>
<td width="227">8.1.393.1</td>
</tr>
<tr>
<td width="413">Update Rollup 10 for Exchange Server 2007 Service Pack 1</td>
<td width="227"><strong>8.1.436.0</strong></td>
</tr>
</tbody>
</table>
<p><strong>Exchange Server 2007 Service Pack 2</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="643">
<tbody>
<tr>
<td width="410"><strong>Product name</strong></td>
<td width="231"><strong>Build Number</strong></td>
</tr>
<tr>
<td width="410">Microsoft Exchange Server 2007 SP2</td>
<td width="231">8.2.176.2</td>
</tr>
<tr>
<td width="410">Update Rollup 1 for Exchange Server 2007 Service Pack 2</td>
<td width="231">8.2.217.3</td>
</tr>
<tr>
<td width="410">Update Rollup 2 for Exchange Server 2007 Service Pack 2</td>
<td width="231">8.2.234.1</td>
</tr>
<tr>
<td>Update Rollup 3 for Exchange Server 2007 Service Pack 2</td>
<td width="231">8.2.247.2</td>
</tr>
<tr>
<td>Update Rollup 4 for Exchange Server 2007 Service Pack 2</td>
<td width="231"><strong>8.2.254.0</strong></td>
</tr>
</tbody>
</table>
<p><strong>Exchange Server 2007 Service Pack 3</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="643">
<tbody>
<tr>
<td width="410"><strong>Product name</strong></td>
<td width="231"><strong>Build Number</strong></td>
</tr>
<tr>
<td width="410">Microsoft Exchange Server 2007 SP3</td>
<td width="231">83.6</td>
</tr>
</tbody>
</table>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2007+Builds+Numbers+http%3A%2F%2Ftinyurl.com%2F2bve2me" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/04/26/exchange-2007-builds-numbers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows PowerShell Cookbook</title>
		<link>http://www.wardvissers.nl/2010/03/26/windows-powershell-cookbook/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-powershell-cookbook</link>
		<comments>http://www.wardvissers.nl/2010/03/26/windows-powershell-cookbook/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 13:35:17 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[E-Books]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Powershell 2.0]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/03/26/windows-powershell-cookbook/</guid>
		<description><![CDATA[Dean Tsaltas van het Microsoft Powershell Team een book geschreven over Windows Powershell 2.0 op verzoek van Lee Holmes van O&#8217;Reilly. Ik heb de index even doorgebladerd aangezien ik een fan van Powershell aan aan het worden ben. Ik ben &#8230; <a href="http://www.wardvissers.nl/2010/03/26/windows-powershell-cookbook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Dean Tsaltas van het <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> Team een book geschreven over <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> <a href="http://www.wardvissers.nl/tag/powershell-2-0/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell 2.0">Powershell 2.0</a> op verzoek van Lee Holmes van O&#8217;Reilly. Ik heb de index even doorgebladerd aangezien ik een fan van Powershell aan aan het worden ben. Ik ben er steeds meer mee&#160; bezig en wil me hierin verder in&#160; verdiepen. Aangezien ik de balle niet snap van Visual Basic en ook geen zin meer heb om daar nog tijd in te steken. Daarvoor is gelukkig google voor uit gevonden. Klik op het boek om naar de pagina te gaan.&#160;&#160; <br /><a href="http://powershell.labs.oreilly.com/ "><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/WindowsPowerShellCookbook_DBB5/image.png" width="220" height="305" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Windows+PowerShell+Cookbook+http%3A%2F%2Ftinyurl.com%2Fylawmx5" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/03/26/windows-powershell-cookbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE eBook: The SysAdmin Handbook</title>
		<link>http://www.wardvissers.nl/2010/03/17/free-ebook-the-sysadmin-handbook/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-ebook-the-sysadmin-handbook</link>
		<comments>http://www.wardvissers.nl/2010/03/17/free-ebook-the-sysadmin-handbook/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 08:49:14 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[E-Books]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2008 R2]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/03/17/free-ebook-the-sysadmin-handbook/</guid>
		<description><![CDATA[Een aantal mensen van Red-Gate hebben weer een mooi ebook geschreven wat elke Microsoft/Exchange beheerder moeten weten. Het is een samenvatting van The Best of Simple Talk SysAdmin De Onderwerpen: Exchange - High Availability in Exchange 2007 - Message Hygiene &#8230; <a href="http://www.wardvissers.nl/2010/03/17/free-ebook-the-sysadmin-handbook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Een aantal mensen van Red-Gate hebben weer een mooi ebook geschreven wat elke <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a>/<a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> beheerder moeten weten. Het is een samenvatting van The Best of    <br />Simple Talk SysAdmin</p>
<p>De Onderwerpen:</p>
<p>Exchange    <br />- High Availability in <a href="http://www.wardvissers.nl/tag/exchange-2007/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2007">Exchange 2007</a>     <br />- Message Hygiene in Exchange Server 200731     <br />- Using Exchange 2007 for Resource Booking     <br />- Controlling Email Messages using Exchange&#8217;s Transport Rules     <br />- Exchange 2007 Mailbox Server <a href="http://www.wardvissers.nl/tag/clustering/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Clustering">Clustering</a>     <br />- Top Tips for Exchange Admins     <br />- Exchange Database Technologies     <br />- Message Classifications in Exchange 2007     <br />- Deploying Exchange 2007 on <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> Server 2008     <br />- Exchange Server Log File Replay     <br />- Configuring Exchange Server 2007 to Support Information Rights Management     <br />- Reporting on Mobile Device Activity Using Exchange 2007 ActiveSync Logs     <br />- Online Exchange Backups     <br />- Optimizing Exchange Server 2007     <br />- Exchange: Recovery Storage Groups     <br />- Exchange E-mail Addresses and the <a href="http://www.wardvissers.nl/tag/outlook/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Outlook">Outlook</a> Address Cache     <br />- Upgrading to Exchange Server 2007     <br />- Goodbye Exchange ExMerge, Hello Export-Mailbox     <br />- Determining MS Exchange Disk Performance     <br />- Upgrading to Exchange Server 2007: Part 2     <br />- Message Tracking in Exchange 2007     <br />- Third Party High Availability and Disaster Recovery <a href="http://www.wardvissers.nl/tag/tools/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Tools">Tools</a> for Microsoft Exchange Server     <br />- Exchange Server 2010 – The First Public Beta Version     <br />- Emulating the <a href="http://www.wardvissers.nl/tag/exchange-2003/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2003">Exchange 2003</a> RUS for Out-of-Band Mailbox Provisioning in Exchange 2007     <br />- Using Exchange 2007 Transport Rules to Protect the First Entry in the Address Book     <br />- Cluster Continuous Replication Network Design     <br />- Building an Exchange Server 2007 environment     <br />- An Introduction to Messaging Records Management     <br />- Installing Hyper-V and Beyond     <br />- Restricting Outlook Client Versions in Exchange 2007     <br />- Using Twitter and <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">PowerShell</a> to Find Technical Information and Join a Community     <br />- Update: Exchange Server 2010 Release Candidate     <br />- Exchange backups on Windows Server 2008     <br />- Moving to Office Communications Server 2007 R2     <br />- Monitoring and Scheduling Exchange 2007 Database Online Maintenance     <br />- <a href="http://www.wardvissers.nl/tag/exchange-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2010">Exchange 2010</a> High Availability     <br />- Implementing Cluster Replication – Part 1     <br />- The <a href="http://www.wardvissers.nl/tag/active-directory/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Active Directory">Active Directory</a> Recycle Bin in Windows Server <a href="http://www.wardvissers.nl/tag/2008-r2/" class="st_tag internal_tag" rel="tag" title="Posts tagged with 2008 R2">2008 R2</a>     <br />- Using Group Policy to Restrict the use of PST Files     <br />- Introduction to Exchange Server 2010     <br />- The Ego and the System Administrator     <br />- Implementing Windows Server 2008 File System Quotas     <br />- Implementing Cluster Continuous Replication, Part 2     <br />- Active Directory Management with PowerShell in Windows Server 2008 R2     <br />- Upgrade Exchange 2003 to Exchange 2010     <br />- Customizing the Outlook Address Book </p>
<p>General Articles    <br />- A SysAdmin&#8217;s Guide to Change Management     <br />- A SysAdmin&#8217;s Guide to Users     <br />- Change Management – What It Is and Why You Need It     <br />- Manage Stress Before it Kills You     <br />- Hiring System Administrators     <br />- Increase Your Value as a Professional in the Technical Industry     <br />- The Art of Dealing with People </p>
<p>Virtualization    <br />- Virtual Exchange Servers     <br />- Virtualizing Exchange: points for discussion     <br />- Build Your Own Virtualized Test Lab     <br />- A Beginner&#8217;s Guide to Virtualizing Exchange Server – Part 1     <br />- A Beginner&#8217;s Guide to Virtualizing Exchange Server – Part 2     <br />- Windows Server Virtualisation: Hyper-V, an Introduction     <br />- Increasing the Availability of Virtualized Applications and Services     <br />- Microsoft Hyper-V Networking and Configuration &#8211; Part 1 </p>
<p>Unified Messaging    <br />- An Introduction to Unified Messaging     <br />- Moving to Office Communications Server 2007 R2 </p>
<p>PowerShell    <br />- Managing Exchange 2007 Mailbox Quotas with Windows PowerShell     <br />- So You Thought PowerShell Was Only For Exchange 2007 </p>
<p>Downloaden klik op het boek    </p>
<p><a href="http://downloads.red-gate.com/ebooks/sysadmin/SysAdmin_eBook_Final_Feb2010.zip"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/FREEeBookTheSysAdminHandbook_11C44/image.png" width="207" height="244" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=FREE+eBook%3A+The+SysAdmin+Handbook+http%3A%2F%2Ftinyurl.com%2Fyggv326" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/03/17/free-ebook-the-sysadmin-handbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Reseive Connector</title>
		<link>http://www.wardvissers.nl/2010/02/18/exchange-2010-reseive-connector/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-reseive-connector</link>
		<comments>http://www.wardvissers.nl/2010/02/18/exchange-2010-reseive-connector/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 14:54:55 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/02/18/exchange-2010-reseive-connector/</guid>
		<description><![CDATA[Onder Exchange 2010 Server Configuratie –&#62; Hub Trans Port –&#62; Default Connector Optie 1 Exchange Management Shell Optie 2 Powershell Get-ReceiveConnector &#34;Default *&#34; &#124; Set-ReceiveConnector -PermissionGroups:AnonymousUsers,ExchangeUsers,ExchangeServers]]></description>
			<content:encoded><![CDATA[<p>Onder <a href="http://www.wardvissers.nl/tag/exchange-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2010">Exchange 2010</a> Server Configuratie –&gt; Hub Trans Port –&gt; Default Connector   <br /> 
<p>Optie 1 <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> Management Shell</p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_936F/clip_image002.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_936F/clip_image002_thumb.jpg" width="217" height="244" /></a></p>
<p>Optie 2 <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a></p>
<p>Get-ReceiveConnector &quot;Default *&quot; | Set-ReceiveConnector </p>
<p>-PermissionGroups:AnonymousUsers,ExchangeUsers,ExchangeServers</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Reseive+Connector+http%3A%2F%2Ftinyurl.com%2Fyh7fyld" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/02/18/exchange-2010-reseive-connector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2007 Migratie to Exchange 2010 Moving Offline Address Book</title>
		<link>http://www.wardvissers.nl/2010/02/15/exchange-2007-migratie-to-exchange-2010-moving-offline-address-book/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2007-migratie-to-exchange-2010-moving-offline-address-book</link>
		<comments>http://www.wardvissers.nl/2010/02/15/exchange-2007-migratie-to-exchange-2010-moving-offline-address-book/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 10:26:16 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/02/15/exchange-2007-migratie-to-exchange-2010-moving-offline-address-book/</guid>
		<description><![CDATA[Onder Exchange 2010 Organisatie Configuratie –&#62; Mailbox –&#62; Offline Address Book Powershell Move-OfflineAddressBook -Identity &#8216;\Default Offline Address Book&#8217; -Server &#8216;Ward-Ex02&#8242;]]></description>
			<content:encoded><![CDATA[<p>Onder <a href="http://www.wardvissers.nl/tag/exchange-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2010">Exchange 2010</a> Organisatie Configuratie –&gt; Mailbox –&gt; Offline Address Book   <br /> 
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image002.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image002_thumb.jpg" width="244" height="214" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image004.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image004" border="0" alt="clip_image004" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image004_thumb.jpg" width="244" height="219" /></a>     </p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image006.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image006_thumb.jpg" width="244" height="214" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image008.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2007MigratietoExchange2010Moving_9614/clip_image008_thumb.jpg" width="244" height="213" /></a>     </p>
<p><a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a>     <br />Move-OfflineAddressBook -Identity &#8216;\Default Offline Address Book&#8217; -Server &#8216;Ward-Ex02&#8242;</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2007+Migratie+to+Exchange+2010+Moving+Offline+Address+Book+http%3A%2F%2Ftinyurl.com%2Fyh3ub49" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/02/15/exchange-2007-migratie-to-exchange-2010-moving-offline-address-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Global Settings</title>
		<link>http://www.wardvissers.nl/2010/02/13/exchange-2010-global-settings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-global-settings</link>
		<comments>http://www.wardvissers.nl/2010/02/13/exchange-2010-global-settings/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 14:18:04 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/02/13/exchange-2010-global-settings/</guid>
		<description><![CDATA[Onder Exchange 2010 Organisatie Configuratie –&#62; Hub Transport &#8211;&#62;&#160; Global Settings Powershell Set-TransportConfig –ExternalPostmasterAddress postmaster@wardvissers.nl Set-TransportConfig -MaxSendSize ‘20mb’ Set-TransportConfig -MaxRecipientEnvelopeLimit 5000 Set-TransportConfig -MaxReceiveSize ‘20mb’]]></description>
			<content:encoded><![CDATA[<p>Onder <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2010 Organisatie Configuratie –&gt; Hub Transport &#8211;&gt;&#160; Global Settings</p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010GlobalSettings_987E/clip_image002.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010GlobalSettings_987E/clip_image002_thumb.jpg" width="236" height="244" /></a></p>
<p><a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a></p>
</p>
<p>Set-TransportConfig –ExternalPostmasterAddress postmaster@wardvissers.nl</p>
<p>Set-TransportConfig -MaxSendSize ‘20mb’</p>
<p>Set-TransportConfig -MaxRecipientEnvelopeLimit 5000 </p>
<p>Set-TransportConfig -<em>MaxReceiveSize ‘</em>20mb’</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Global+Settings+http%3A%2F%2Ftinyurl.com%2Fyhrq4t3" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/02/13/exchange-2010-global-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Send Connector</title>
		<link>http://www.wardvissers.nl/2010/02/11/exchange-2010-send-connector/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-send-connector</link>
		<comments>http://www.wardvissers.nl/2010/02/11/exchange-2010-send-connector/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 18:09:44 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/02/11/exchange-2010-send-connector/</guid>
		<description><![CDATA[Onder Exchange 2010 Organisatie Configuratie –&#62; Hub Trans Port –&#62; Send Connector Optie 1 EMC Optie 2 Powershell New-SendConnector –Name ‘External’ –Usage ‘Internet’ –AddressSpaces ‘SMTP:*;1’ –DNSRoutingEnabled $true –UseExternalDNSServersEnabled $false –Fqdn ‘mail.wardvissers.nl’]]></description>
			<content:encoded><![CDATA[<p>Onder <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2010 Organisatie Configuratie –&gt; Hub Trans Port –&gt; Send Connector    </p>
<p>Optie 1 EMC</p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image002.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image002_thumb.jpg" width="244" height="212" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image004.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image004" border="0" alt="clip_image004" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image004_thumb.jpg" width="244" height="145" /></a></p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image006.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image006_thumb.jpg" width="244" height="214" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image008.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image008_thumb.jpg" width="244" height="214" /></a></p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image010.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image010" border="0" alt="clip_image010" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image010_thumb.jpg" width="244" height="212" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image012.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image012" border="0" alt="clip_image012" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010SendConnector_9407/clip_image012_thumb.jpg" width="244" height="212" /></a></p>
<p>Optie 2 <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a></p>
<p>New-SendConnector –Name ‘External’ –Usage ‘Internet’ –AddressSpaces ‘SMTP:*;1’</p>
<p>–DNSRoutingEnabled $true –UseExternalDNSServersEnabled $false –Fqdn ‘mail.wardvissers.nl’</p>
<pre>
</pre>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Send+Connector+http%3A%2F%2Ftinyurl.com%2Fyk8cskz" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/02/11/exchange-2010-send-connector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Create Powershell Database</title>
		<link>http://www.wardvissers.nl/2010/02/11/exchange-2010-create-powershell-database/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-create-powershell-database</link>
		<comments>http://www.wardvissers.nl/2010/02/11/exchange-2010-create-powershell-database/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 18:06:28 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/02/11/exchange-2010-create-powershell-database/</guid>
		<description><![CDATA[Powershell New-PublicFolderDatabase &#34;Public Folders&#34; -Server SERVER01 Mount-Database &#34;Public Folders&#34; New-PublicFolderDatabase Support -Server SERVER02 -EdbFilePath E:\Databases\Support\Support.edb -LogFilePath D:\Logs\Support Mount-Database Support]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image002.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image002_thumb.jpg" width="244" height="213" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image004.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image004" border="0" alt="clip_image004" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image004_thumb.jpg" width="244" height="223" /></a>     </p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image006.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image006_thumb.jpg" width="244" height="213" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image008.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image008_thumb.jpg" width="244" height="213" /></a>     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image010.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image010" border="0" alt="clip_image010" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image010_thumb.jpg" width="244" height="214" /></a><a href="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image012.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image012" border="0" alt="clip_image012" src="http://www.wardvissers.nl/wp-content/uploads/Exchange2010CreatePowershellDatabase_9645/clip_image012_thumb.jpg" width="244" height="214" /></a>     </p>
<p><a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a>     <br />New-PublicFolderDatabase &quot;Public Folders&quot; -Server SERVER01</p>
<p>Mount-Database &quot;Public Folders&quot;</p>
<p>New-PublicFolderDatabase Support -Server SERVER02 -EdbFilePath E:\Databases\Support\Support.edb -LogFilePath D:\Logs\Support</p>
<p>Mount-Database Support</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exchange+2010+Create+Powershell+Database+http%3A%2F%2Ftinyurl.com%2Fyjc9c9d" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/02/11/exchange-2010-create-powershell-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installeren Windows 7 RSAT unattended</title>
		<link>http://www.wardvissers.nl/2010/01/14/installeren-windows-7-rsat-unattended/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installeren-windows-7-rsat-unattended</link>
		<comments>http://www.wardvissers.nl/2010/01/14/installeren-windows-7-rsat-unattended/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 09:59:19 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SRM]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/01/14/installeren-windows-7-rsat-unattended/</guid>
		<description><![CDATA[Feature Names: RemoteServerAdministrationTools RemoteServerAdministrationTools-ServerManager RemoteServerAdministrationTools-Roles RemoteServerAdministrationTools-Roles-CertificateServices RemoteServerAdministrationTools-Roles-CertificateServices-CA RemoteServerAdministrationTools-Roles-CertificateServices-OnlineResponder RemoteServerAdministrationTools-Roles-AD RemoteServerAdministrationTools-Roles-AD-DS RemoteServerAdministrationTools-Roles-AD-DS-SnapIns RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter RemoteServerAdministrationTools-Roles-AD-DS-NIS RemoteServerAdministrationTools-Roles-AD-LDS RemoteServerAdministrationTools-Roles-AD-Powershell RemoteServerAdministrationTools-Roles-DHCP RemoteServerAdministrationTools-Roles-DNS RemoteServerAdministrationTools-Roles-FileServices RemoteServerAdministrationTools-Roles-FileServices-Dfs RemoteServerAdministrationTools-Roles-FileServices-Fsrm RemoteServerAdministrationTools-Roles-FileServices-StorageMgmt RemoteServerAdministrationTools-Roles-HyperV RemoteServerAdministrationTools-Roles-RDS RemoteServerAdministrationTools-Features RemoteServerAdministrationTools-Features-BitLocker RemoteServerAdministrationTools-Features-Clustering RemoteServerAdministrationTools-Features-GP RemoteServerAdministrationTools-Features-LoadBalancing RemoteServerAdministrationTools-Features-SmtpServer RemoteServerAdministrationTools-Features-StorageExplorer RemoteServerAdministrationTools-Features-StorageManager RemoteServerAdministrationTools-Features-Wsrm Step 1. Installatie the RSAT MSU pakket wusa  &#8230; <a href="http://www.wardvissers.nl/2010/01/14/installeren-windows-7-rsat-unattended/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Feature Names:<br />
RemoteServerAdministrationTools<br />
RemoteServerAdministrationTools-ServerManager</p>
<p>RemoteServerAdministrationTools-Roles</p>
<p>RemoteServerAdministrationTools-Roles-CertificateServices<br />
RemoteServerAdministrationTools-Roles-CertificateServices-CA<br />
RemoteServerAdministrationTools-Roles-CertificateServices-OnlineResponder<br />
RemoteServerAdministrationTools-Roles-AD<br />
RemoteServerAdministrationTools-Roles-AD-DS<br />
RemoteServerAdministrationTools-Roles-AD-DS-SnapIns<br />
RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter<br />
RemoteServerAdministrationTools-Roles-AD-DS-NIS<br />
RemoteServerAdministrationTools-Roles-AD-LDS<br />
RemoteServerAdministrationTools-Roles-AD-<a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a><br />
RemoteServerAdministrationTools-Roles-DHCP<br />
RemoteServerAdministrationTools-Roles-DNS<br />
RemoteServerAdministrationTools-Roles-FileServices<br />
RemoteServerAdministrationTools-Roles-FileServices-Dfs<br />
RemoteServerAdministrationTools-Roles-FileServices-Fsrm<br />
RemoteServerAdministrationTools-Roles-FileServices-StorageMgmt<br />
RemoteServerAdministrationTools-Roles-HyperV<br />
RemoteServerAdministrationTools-Roles-RDS<br />
RemoteServerAdministrationTools-Features</p>
<p>RemoteServerAdministrationTools-Features-BitLocker<br />
RemoteServerAdministrationTools-Features-<a href="http://www.wardvissers.nl/tag/clustering/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Clustering">Clustering</a><br />
RemoteServerAdministrationTools-Features-GP<br />
RemoteServerAdministrationTools-Features-LoadBalancing<br />
RemoteServerAdministrationTools-Features-SmtpServer<br />
RemoteServerAdministrationTools-Features-StorageExplorer<br />
RemoteServerAdministrationTools-Features-StorageManager<br />
RemoteServerAdministrationTools-Features-Wsrm</p>
<p><strong>Step 1. Installatie the RSAT MSU pakket</strong></p>
<p>wusa <a href="http://download.microsoft.com/download/A/D/4/AD4D3903-E06D-456D-AED4-D53895D2C1A9/Windows6.1-KB958830-x86.msu"></a> x86fre_GRMRSAT_MSU.msu /quiet  (x86)<br />
wusa  amd64fre_GRMRSATX_MSU.msu /quiet  (x64)</p>
<p><strong>Stap 2 Alle beschikbare opties:</strong></p>
<p>dism /Online /Get-Features</p>
<p><strong>Stap 3: Aanzetten van de beschikbare Opties</strong></p>
<p>dism /Online /Enable-Feature /FeatureName:&lt;FeatureName&gt;</p>
<p><strong>Voorbeeld</strong><br />
Ik wil <a href="http://www.wardvissers.nl/tag/active-directory/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Active Directory">Active Directory</a> snap ins uitrollen.</p>
<p>wusa <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a>6.1-KB958830-x86.msu /quiet<br />
dism /online /enable-feature /featurename:RemoteServerAdministrationTools<br />
dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles<br />
dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD<br />
dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-DS<br />
dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-DS-SnapIns</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Installeren+Windows+7+RSAT+unattended+http%3A%2F%2Ftinyurl.com%2Fyjcndcr" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/01/14/installeren-windows-7-rsat-unattended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualization EcoShell</title>
		<link>http://www.wardvissers.nl/2010/01/13/virtualization-ecoshell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=virtualization-ecoshell</link>
		<comments>http://www.wardvissers.nl/2010/01/13/virtualization-ecoshell/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 14:09:06 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[EcoShell]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Virtualisatie]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2010/01/13/virtualization-ecoshell/</guid>
		<description><![CDATA[De meeste van ons kennen PowerGui van Quest. Hier mee kun je powerpacks maken van Powershell Scripts. Aangezien Quest Software Vizioncore heeft overgenomen. Heeft een Vizioncore een gratis en handig product op de markt gezet genaamd:&#160; Virtualization EcoShell. Dit stukje &#8230; <a href="http://www.wardvissers.nl/2010/01/13/virtualization-ecoshell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>De meeste van ons kennen <a href="http://powergui.org">PowerGui</a> van <a href="http://www.quest.com">Quest</a>. Hier mee kun je powerpacks maken van <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> Scripts.     <br />Aangezien <a href="http://www.quest.com">Quest</a> Software <a href="http://www.vizioncore.com">Vizioncore</a> heeft overgenomen. Heeft een <a href="http://www.vizioncore.com">Vizioncore</a> een gratis en handig product op de markt gezet genaamd:&#160; Virtualization EcoShell. Dit stukje software wordt gesponserd door VizionCore. De makers van deze tool zijn de <a href="http://thevesi.org/">VESI™</a> Community.     </p>
<p>Wat is nu de EcoShell:     <br />De Virtualization EcoShell biedt een eenvoudige, consistente en geïntegreerde beheer user interface voor het creëren, debuggen en vereenvoudiging van het beheer van <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> PowerShell scripts.     <br />Voor downloads en informatie over het installeren van de <a href="http://www.wardvissers.nl/tag/virtualisatie/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Virtualisatie">Virtualisatie</a> EcoShell, bezoekt u de <a href="http://www.thevesi.org/downloads.jspa">Virtualisatie EcoShell download pagina</a>. </p>
<p>Meer en meer bedrijven gebruiken Windows PowerShell scripts op verschillende platformen.    <br />De Virtualisatie EcoShell gepositioneerd is voor IT-beheerders, adviseurs, en consultants die alles moeten beheren en terug kerende taken te automatiseren . Gecentraliseerd beheer van servers. De Virtualisatie EcoShell bespaart dagelijks tijd voor beheerders voor het beheer van virtuele omgevingen. </p>
<p>Wat heb je nodig om er gebruik van te kunnen maken.</p>
<p><a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx">Windows PowerShell Version 1.0</a>     <br /><a href="http://www.vmware.com/go/powershell">VMware P</a><a href="http://www.vmware.com/go/powershell">owerCLI 4.0</a>     <br />Quest PowerShell Commands for <a href="http://www.wardvissers.nl/tag/active-directory/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Active Directory">Active Directory</a> Version 1.2     <br /><a href="http://www.quest.com/QuestWebPowershellCmdletDwnld">32-Bit</a>&#160; |&#160; <a href="http://www.quest.com/QuestWebPowershellCmdletDwnld64bit">64-Bit</a>     <br /><a href="http://thevesi.org/servlet/KbServlet/download/2352-102-4064/VESI.1.2.0.154.msi">Virtualization EcoShell Build 1.2.0.154</a></p>
</p>
<p>Zo ziet de Virtualization EcoShell er uit.    <br /><a href="http://www.wardvissers.nl/wp-content/uploads/VirtualizationEcoShell_E672/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/VirtualizationEcoShell_E672/image_thumb.png" width="435" height="277" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Virtualization+EcoShell+http%3A%2F%2Ftinyurl.com%2Fygcmese" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2010/01/13/virtualization-ecoshell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installeer Exchange 2010 op Windows 2008 R2 in een Windows 2008 R2 Domein</title>
		<link>http://www.wardvissers.nl/2009/10/06/installeer-exchange-2010-op-windows-2008-r2-in-een-windows-2008-r2-domein/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installeer-exchange-2010-op-windows-2008-r2-in-een-windows-2008-r2-domein</link>
		<comments>http://www.wardvissers.nl/2009/10/06/installeer-exchange-2010-op-windows-2008-r2-in-een-windows-2008-r2-domein/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 13:10:27 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2008 R2]]></category>
		<category><![CDATA[Converter]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/10/06/installeer-exchange-2010-op-windows-2008-r2-in-een-windows-2008-r2-domein/</guid>
		<description><![CDATA[1. Op servers die de Hub Transport of Mailbox server rol krijgen, installeer het Microsoft Filter Pack. Voor details, zie 2007 Office system Converter: Microsoft Filter Pack. 2. Open het menu Start, ga naar Alle programma&#8217;s dan Accessoires dan Windows &#8230; <a href="http://www.wardvissers.nl/2009/10/06/installeer-exchange-2010-op-windows-2008-r2-in-een-windows-2008-r2-domein/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>1. Op servers die de Hub Transport of Mailbox server rol krijgen, installeer het <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> Filter Pack. Voor details, zie <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=60C92A37-719C-4077-B5C6-CAC34F4227CC&amp;displaylang=en">2007 Office system Converter: Microsoft Filter Pack</a>.</p>
<p>2. Open het menu Start, ga naar <strong>Alle programma&#8217;s </strong>dan <strong>Accessoires </strong>dan <strong><a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">PowerShell</a></strong>. Open een verhoogde Windows PowerShell console en voer het volgende commando:</p>
<p><a href="http://technet.microsoft.com/"></a></p>
</p>
<p> Import-Module ServerManager
</p>
<p>3. Gebruik de <strong>Servermananger </strong>cmdlet het installeren van de nodige onderdelen van het besturingssysteem:</p>
<p>servermanagercmd -i NET-Framework    <br />servermanagercmd -i RSAT-ADDS     <br />servermanagercmd -i Web-Server     <br />servermanagercmd -i Web-Basic-Auth,     <br />servermanagercmd -i Web-Windows-Auth     <br />servermanagercmd -i Web-Metabase     <br />servermanagercmd -i Web-Net-Ext     <br />servermanagercmd -i Web-Lgcy-Mgmt-Console,     <br />servermanagercmd -i WAS-Process-Model,     <br />servermanagercmd -i RSAT-Web-Server     <br />servermanagercmd -i Web-ISAPI-Ext     <br />servermanagercmd -i Web-Digest-Auth     <br />servermanagercmd -i Web-Dyn-Compression     <br />servermanagercmd -i NET-HTTP-Activation     <br />servermanagercmd -i RPC-Over-HTTP-Proxy     <br />servermanagercmd -Restart</p>
<p><a title="http://technet.microsoft.com/en-us/library/bb691354(EXCHG.140).aspx" href="http://technet.microsoft.com/en-us/library/bb691354(EXCHG.140).aspx">http://technet.microsoft.com/en-us/library/bb691354(EXCHG.140).aspx</a></p>
<p>4. Nadat het systeem opnieuw is opgestart, meldt u aan als beheerder, opent u een verhoogde Windows PowerShell console en configureren van de Net.Tcp Port Sharing Service voor Automatisch opstarten door het volgende commando:</p>
<p><a href="http://technet.microsoft.com/"></a></p>
</p>
<p> Set-Service NetTcpPortSharing -StartupType Automatic   </p>
<p>5. Installeer <a href="http://www.wardvissers.nl/tag/exchange-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange 2010">Exchange 2010</a>  <br /><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb.png" width="244" height="185" /></a>&#160;<a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_3.png" width="244" height="52" /></a>   <br /><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_4.png" width="244" height="213" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_5.png" width="244" height="214" /></a>   <br /><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_6.png" width="244" height="211" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_7.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_7.png" width="244" height="211" /></a>   </p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_8.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_8.png" width="244" height="211" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_9.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_9.png" width="244" height="214" /></a>   <br /><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_10.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_10.png" width="244" height="215" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_11.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_11.png" width="244" height="214" /></a>   </p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_12.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_12.png" width="244" height="212" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_13.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_13.png" width="244" height="214" /></a>   <br /><a href="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_14.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/InstalleerExchange2010opWindows2008R2ine_E5BC/image_thumb_14.png" width="244" height="123" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Installeer+Exchange+2010+op+Windows+2008+R2+in+een+Windows+2008+R2+Domein+http%3A%2F%2Ftinyurl.com%2Fyc8c3sg" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/10/06/installeer-exchange-2010-op-windows-2008-r2-in-een-windows-2008-r2-domein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exporteer alle email adressen onder Exchange 2007 (Public Folder,Mailbox, Mail Contact en Distribution Group) naar een tekstdocument met powershell</title>
		<link>http://www.wardvissers.nl/2009/09/29/exporteer-alle-email-adressen-onder-exchange-2007-public-foldermailbox-mail-contact-en-distribution-group-naar-een-tekstdocument-met-powershell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exporteer-alle-email-adressen-onder-exchange-2007-public-foldermailbox-mail-contact-en-distribution-group-naar-een-tekstdocument-met-powershell</link>
		<comments>http://www.wardvissers.nl/2009/09/29/exporteer-alle-email-adressen-onder-exchange-2007-public-foldermailbox-mail-contact-en-distribution-group-naar-een-tekstdocument-met-powershell/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:58:45 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/09/29/exporteer-alle-email-adressen-onder-exchange-2007-public-foldermailbox-mail-contact-en-distribution-group-naar-een-tekstdocument-met-powershell/</guid>
		<description><![CDATA[Export alle e-mailadressen van Exchange 2007 omgeving met powershell naar tekst documenten. Als je alle powershell commando’s in een document zet dan heb je alle e-mail adressen. Public Folder Get-Mailpublicfolder &#124; format-list Name, Emailaddresses &#62; c:\publicfolder.txt Mailbox Get-Mailbox &#124; format-list &#8230; <a href="http://www.wardvissers.nl/2009/09/29/exporteer-alle-email-adressen-onder-exchange-2007-public-foldermailbox-mail-contact-en-distribution-group-naar-een-tekstdocument-met-powershell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Export alle e-mailadressen van <a href="http://www.wardvissers.nl/tag/exchange/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Exchange">Exchange</a> 2007 omgeving met <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">powershell</a> naar tekst documenten.</p>
<p>Als je alle powershell commando’s in een document zet dan heb je alle e-mail adressen.    </p>
<p>Public Folder     <br />Get-Mailpublicfolder | format-list Name, Emailaddresses &gt; c:\publicfolder.txt </p>
<p>Mailbox    <br />Get-Mailbox | format-list Name, Emailaddresses &gt; c:\mailbox.txt </p>
<p>Distributiongroup    <br />get-distributiongroup&#160; | format-list Name, Emailaddresses &gt; c:\distributiongroup.txt </p>
<p>MailContact    <br />get-mailcontact&#160; | format-list Name, Emailaddresses &gt; c:\mailcontact.txt</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Exporteer+alle+email+adressen+onder+Exchange+2007+%28Public+Folder%2CMailbox%2C+Mail+Contact+en+Distribution+Group%29+...+http%3A%2F%2Ftinyurl.com%2Fybxheqr" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/09/29/exporteer-alle-email-adressen-onder-exchange-2007-public-foldermailbox-mail-contact-en-distribution-group-naar-een-tekstdocument-met-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDT 2010 Officieel Vrijgegeven &amp; MDT 2010 Nieuwe Functies</title>
		<link>http://www.wardvissers.nl/2009/09/10/mdt-2010-officieel-vrijgegeven-mdt-2010-nieuwe-functies/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mdt-2010-officieel-vrijgegeven-mdt-2010-nieuwe-functies</link>
		<comments>http://www.wardvissers.nl/2009/09/10/mdt-2010-officieel-vrijgegeven-mdt-2010-nieuwe-functies/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 18:40:27 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2008 R2]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[WDS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/09/10/mdt-2010-officieel-vrijgegeven-mdt-2010-nieuwe-functies/</guid>
		<description><![CDATA[Microsoft heeft MDT 2010 vrijgegeven. Dit is de tool van Microsoft waarmee OS mee uitgerold kunnen worden. De nieuwe versie heeft heel veel nieuwe functies. Deze versie ondersteund Windows XP, Windows Vista, Windows 7, Windows Server 2003, Windows 2008 en &#8230; <a href="http://www.wardvissers.nl/2009/09/10/mdt-2010-officieel-vrijgegeven-mdt-2010-nieuwe-functies/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a> heeft <a href="http://www.wardvissers.nl/tag/mdt/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT">MDT</a> 2010 vrijgegeven. Dit is de tool van Microsoft waarmee OS mee uitgerold kunnen worden. De nieuwe versie heeft heel veel nieuwe functies. Deze versie ondersteund <a href="http://www.wardvissers.nl/tag/windows-xp/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows XP">Windows XP</a>, <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> <a href="http://www.wardvissers.nl/tag/vista/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Vista">Vista</a>, <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> 7, <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> Server 2003, <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> 2008 en <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> <a href="http://www.wardvissers.nl/tag/2008-r2/" class="st_tag internal_tag" rel="tag" title="Posts tagged with 2008 R2">2008 R2</a>.    <br />Downloaden doe je <a href="http://www.wardvissers.nl/tag/mdt-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT 2010">MDT 2010</a> <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=3bd8561f-77ac-4400-a0c1-fe871c461a89#tm" target="_blank">HIER</a>     </p>
<p>&#160;<a href="http://blogs.technet.com/mniehaus/default.aspx">Michael Niehaus</a> heeft een overzicht gemaakt van alle nieuwe functies en stuk voor stuk uitlegt wat het doet. Ik heb even een mooi overzicht van gemaakt:     </p>
<p><a href="http://blogs.technet.com/mniehaus/archive/2009/09/09/automatically-update-mdt-2010-boot-images-in-wds.aspx">Automatically update MDT 2010 boot images in WDS</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/09/09/automating-long-running-mdt-2010-tasks.aspx">Automating Long-Running MDT 2010 Tasks</a>     </p>
<p><a href="http://blogs.technet.com/mniehaus/archive/2009/06/26/mdt-2010-new-feature-1-logging-directly-to-the-network.aspx" target="_blank">MDT 2010 New Feature #1: Logging directly to the network</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/26/mdt-2010-new-feature-2-gathering-virtualization-details.aspx" target="_blank">MDT 2010 New Feature #2: Gathering virtualization details</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/27/mdt-2010-new-feature-3-suspend-and-resume-a-lite-touch-task-sequence.aspx" target="_blank">MDT 2010 New Feature #3: Suspend and resume a Lite Touch task sequence</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/27/mdt-2010-new-feature-4-folders-everywhere.aspx" target="_blank">MDT 2010 New Feature #4: Folders everywhere</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/27/mdt-2010-new-feature-5-support-for-multiple-deployment-shares.aspx" target="_blank">MDT 2010 New Feature #5: Support for multiple deployment shares</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/27/mdt-2010-new-feature-6-drag-and-drop.aspx" target="_blank">MDT 2010 New Feature #6: Drag and drop</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/27/mdt-2010-new-feature-7-boot-image-creation-optimized.aspx" target="_blank">MDT 2010 New Feature #7: Boot image creation optimized</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/30/mdt-2010-new-feature-8-no-more-visible-command-windows-when-booting-lite-touch-windows-pe.aspx" target="_blank">MDT 2010 New Feature #8: No more visible command windows when booting Lite Touch Windows PE</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/30/mdt-2010-new-feature-9-copy-and-paste-support-in-the-deployment-workbench-task-sequence-editor.aspx" target="_blank">MDT 2010 New Feature #9: Copy and paste support in the Deployment Workbench task sequence editor</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/30/mdt-2010-new-feature-10-detection-of-signed-drivers.aspx" target="_blank">MDT 2010 New Feature #10: Detection of signed drivers</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/06/30/mdt-2010-new-feature-11-windows-7-and-windows-server-2008-r2-support.aspx" target="_blank">MDT 2010 New Feature #11: Windows 7 and Windows Server 2008 R2 support</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/01/mdt-2010-new-feature-12-usmt-4-0-hardlink-support.aspx" target="_blank">MDT 2010 New Feature #12: USMT 4.0 hardlink support</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/01/mdt-2010-new-feature-13-new-task-sequence-templates.aspx" target="_blank">MDT 2010 New Feature #13: New task sequence templates</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/03/mdt-2010-new-feature-14-database-improvements.aspx" target="_blank">MDT 2010 New Feature #14: Database improvements</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/07/mdt-2010-new-feature-15-finish-actions.aspx" target="_blank">MDT 2010 New Feature #15: Finish actions</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/10/mdt-2010-new-feature-16-powershell-support.aspx" target="_blank">MDT 2010 New Feature #16: PowerShell support</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/10/mdt-2010-new-feature-17-customizable-boot-image-process.aspx" target="_blank">MDT 2010 New Feature #17: Customizable boot image process</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/07/12/mdt-2010-new-feature-18-selection-profiles.aspx" target="_blank">MDT 2010 New Feature #18: Selection Profiles</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/09/09/mdt-2010-new-feature-19-improved-driver-management.aspx" target="_blank">MDT 2010 New Feature #19: Improved Driver Management</a>     <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/09/30/mdt-2010-new-feature-20-general-purpose-configmgr-wizard.aspx" target="_blank">MDT 2010 New Feature #20: General Purpose ConfigMgr wizard</a>    <br /><a href="http://blogs.technet.com/mniehaus/archive/2009/10/01/mdt-2010-new-feature-21-copying-extra-folders.aspx" target="_blank">MDT 2010 New Feature #21: Copying extra folders</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=MDT+2010+Officieel+Vrijgegeven+%26+MDT+2010+Nieuwe+Functies+http%3A%2F%2Ftinyurl.com%2Foyz8oc" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/09/10/mdt-2010-officieel-vrijgegeven-mdt-2010-nieuwe-functies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare vSphere NIC (VMX 2 &amp; VMX 3) Drivers aan MDT 2010 toevoegen</title>
		<link>http://www.wardvissers.nl/2009/09/02/vmware-vsphere-nic-vmx-2-vmx-3-drivers-aan-mdt-2010-toevoegen/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-vsphere-nic-vmx-2-vmx-3-drivers-aan-mdt-2010-toevoegen</link>
		<comments>http://www.wardvissers.nl/2009/09/02/vmware-vsphere-nic-vmx-2-vmx-3-drivers-aan-mdt-2010-toevoegen/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 17:40:56 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[WDS]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/09/02/vmware-vsphere-nic-vmx-2-vmx-3-drivers-aan-mdt-2010-toevoegen/</guid>
		<description><![CDATA[1. Download HIER de drivers die standaard mee gegeven worden met vSphere. Hier zitten ook de de drivers voor VMX2 Enhanced Driver en de VMX 3 Driver. 2. Maak onder Out-of-Box Drivers twee mapjes aan. Zie de afbeelding hieronder. &#160; &#8230; <a href="http://www.wardvissers.nl/2009/09/02/vmware-vsphere-nic-vmx-2-vmx-3-drivers-aan-mdt-2010-toevoegen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>1. Download <a href="http://www.wardvissers.nl/downloads/vmwarevspheredrivers.7z" target="_blank">HIER</a> de drivers die standaard mee gegeven worden met <a href="http://www.wardvissers.nl/tag/vsphere/" class="st_tag internal_tag" rel="tag" title="Posts tagged with vSphere">vSphere</a>. Hier zitten ook de de drivers voor VMX2 Enhanced Driver en de VMX 3 Driver.</p>
<p>2. Maak onder Out-of-Box Drivers twee mapjes aan. Zie de afbeelding hieronder.    <br /><a href="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_thumb.png" width="193" height="98" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_thumb_3.png" width="244" height="194" /></a>&#160; </p>
<p>3. Importeer de drivers uit de 7zip bestand.     </p>
<p>4. Klik de <a href="http://www.wardvissers.nl/tag/mdt/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT">MDT</a> <a href="http://www.wardvissers.nl/tag/deployment/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Deployment">Deployment</a> Share weer aan en klik op Update <a href="http://www.wardvissers.nl/tag/deployment/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Deployment">Deployment</a> Point     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_thumb_4.png" width="197" height="90" /></a> </p>
<p>5.&#160; <br /><a href="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_thumb_5.png" width="244" height="201" /></a>     </p>
<p>6. Wil je dit met <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> doen klik op <a href="http://www.wardvissers.nl/tag/view/" class="st_tag internal_tag" rel="tag" title="Posts tagged with View">view</a> script dan krijg het volgende powerscript te zien:</p>
<p>Add-PSSnapIn <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a>.BDD.PSSnapIn    <br />New-PSDrive -Name &quot;DS001&quot; -PSProvider MDTProvider -Root &quot;E:\Distribution&quot;     <br />update-MDTDeploymentShare -path &quot;DS001:&quot; -Verbose</p>
<p>7. Vergeet niet om de oude LiteTouchPE_x64 &amp; LiteTouchPE_x86 in <a href="http://www.wardvissers.nl/tag/wds/" class="st_tag internal_tag" rel="tag" title="Posts tagged with WDS">WDS</a> te verwijderen en opnieuw toe te voegen.    </p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/VMWarevSphereNICVMX2VMX3DriversaanMDT201_135B6/image_thumb_6.png" width="244" height="64" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=VMWare+vSphere+NIC+%28VMX+2+%26+VMX+3%29+Drivers+aan+MDT+2010+toevoegen+http%3A%2F%2Ftinyurl.com%2Fm9q6j9" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/09/02/vmware-vsphere-nic-vmx-2-vmx-3-drivers-aan-mdt-2010-toevoegen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade MDT 2008 naar MDT 2010</title>
		<link>http://www.wardvissers.nl/2009/08/30/upgrade-mdt-2008-naar-mdt-2010/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrade-mdt-2008-naar-mdt-2010</link>
		<comments>http://www.wardvissers.nl/2009/08/30/upgrade-mdt-2008-naar-mdt-2010/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 17:17:07 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[MDT 2008]]></category>
		<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2008 R2]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/08/30/upgrade-mdt-2008-naar-mdt-2010/</guid>
		<description><![CDATA[1. Deinstalleer de oude de WAIK versie 2. Installeer op een Windows 2008 machine Powershell als Feature 3. Installeer de nieuwe WAIK Versie die ook Windows 7 &#38; Windows 2008 R2 ondersteund. &#160; 4. Installeer MDT 2010 5. Start Deployment &#8230; <a href="http://www.wardvissers.nl/2009/08/30/upgrade-mdt-2008-naar-mdt-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>1. Deinstalleer de oude de WAIK versie   </p>
<p>2. Installeer op een <a href="http://www.wardvissers.nl/tag/windows-2008/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 2008">Windows 2008</a> machine <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> als Feature    </p>
<p>3. Installeer de nieuwe WAIK Versie die ook <a href="http://www.wardvissers.nl/tag/windows-7/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 7">Windows 7</a> &amp; <a href="http://www.wardvissers.nl/tag/windows-2008-r2/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows 2008 R2">Windows 2008 R2</a> ondersteund.    <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb.png" width="244" height="180" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_3.png" width="244" height="198" /></a>     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_4.png" width="244" height="199" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_5.png" width="244" height="198" /></a>     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_6.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_6.png" width="244" height="197" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_7.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_7.png" width="244" height="198" /></a>     </p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_8.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_8.png" width="244" height="198" /></a>&#160; </p>
<p>4. Installeer <a href="http://www.wardvissers.nl/tag/mdt-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MDT 2010">MDT 2010</a>    <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_9.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_9.png" width="244" height="189" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_10.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_10.png" width="244" height="189" /></a>     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_11.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_11.png" width="244" height="189" /></a> <a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_12.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_12.png" width="244" height="189" /></a>     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_13.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_13.png" width="244" height="189" /></a>     </p>
<p>5. Start <a href="http://www.wardvissers.nl/tag/deployment/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Deployment">Deployment</a> Workbench op.    <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_14.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_14.png" width="244" height="176" /></a>     <br />Kies voor Open Deployment Share    <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_15.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_15.png" width="244" height="91" /></a>&#160; <br />&#160;<a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_16.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_16.png" width="244" height="200" /></a>    <br />Geef het oude path in de van de oude distributie map. Vergeet ook het vinkje niet aan te zetten.    <br />&#160;<a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_17.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_17.png" width="244" height="201" /></a>     <br /><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_18.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_18.png" width="238" height="196" /></a>&#160; </p>
<p>5. Open <a href="http://www.wardvissers.nl/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> Deployment Services.</p>
<p>6. Gooi de oude Boot Images weg.   </p>
<p>7. Voeg de twee nieuwe die tijdens de upgrade gemaakt zijn toe    <br />LiteTouchPE_x86.wim    <br />LiteTouchPE_x64.wim</p>
<p><a href="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_19.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.wardvissers.nl/wp-content/uploads/UpgradeMDT2008naarMDT2010_10F10/image_thumb_19.png" width="244" height="64" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Upgrade+MDT+2008+naar+MDT+2010+http%3A%2F%2Ftinyurl.com%2Flp4axf" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/08/30/upgrade-mdt-2008-naar-mdt-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gratis E-Book Mastering Powershell</title>
		<link>http://www.wardvissers.nl/2009/07/15/gratis-e-book-mastering-powershell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gratis-e-book-mastering-powershell</link>
		<comments>http://www.wardvissers.nl/2009/07/15/gratis-e-book-mastering-powershell/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 09:40:21 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[E-Books]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[MDT 2008]]></category>
		<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[Powerfuse]]></category>
		<category><![CDATA[Wisdom]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/07/15/gratis-e-book-mastering-powershell/</guid>
		<description><![CDATA[Klik op de foto om Mastering Powershell als PDF te downloaden. Klik HIER om het boek online te bekijken.]]></description>
			<content:encoded><![CDATA[<p>Klik op de foto om Mastering <a href="http://www.wardvissers.nl/tag/powershell/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Powershell">Powershell</a> als PDF te downloaden.   </p>
<p>Klik <a href="http://powershell.com/cs/blogs/ebook/" target="_blank">HIER</a> om het boek online te bekijken.</p>
<p><a href="http://powershell.com/Mastering-PowerShell.pdf"><img title="image" border="0" alt="image" src="http://ictfreak.files.wordpress.com/2009/07/image31.png?w=340&amp;h=437" width="340" height="437" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Gratis+E-Book+Mastering+Powershell+http%3A%2F%2Ftinyurl.com%2Flhsbvt" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/07/15/gratis-e-book-mastering-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2008 R2, Hyper V2, Exchange 2010, MDT Video’s</title>
		<link>http://www.wardvissers.nl/2009/07/10/windows-2008-r2-hyper-v2-exchange-2010-mdt-videos/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-2008-r2-hyper-v2-exchange-2010-mdt-videos</link>
		<comments>http://www.wardvissers.nl/2009/07/10/windows-2008-r2-hyper-v2-exchange-2010-mdt-videos/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 10:07:23 +0000</pubDate>
		<dc:creator>Ward</dc:creator>
				<category><![CDATA[2008]]></category>
		<category><![CDATA[2008 R2]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[MDT 2008]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powerfuse]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Powershell 2.0]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Wisdom]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wardvissers.nl/2009/07/10/windows-2008-r2-hyper-v2-exchange-2010-mdt-videos/</guid>
		<description><![CDATA[Op Edge van Microsoft Technet staan een heleboel mooie Video’s gemaakt door Microsoft. Heb er maar even een mooie verzameling van gemaakt. Zoals normaal je heb je geen “tijd” om alles te lezen of je moet geen leven hebben Als &#8230; <a href="http://www.wardvissers.nl/2009/07/10/windows-2008-r2-hyper-v2-exchange-2010-mdt-videos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Op <a href="http://edge.technet.com/">Edge</a> van <a href="http://edge.technet.com/">Microsoft Technet</a> staan een heleboel mooie Video’s gemaakt door <a href="http://www.wardvissers.nl/tag/microsoft/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft">Microsoft</a>.</p>
<p>Heb er maar even een mooie verzameling van gemaakt.    </p>
<p>Zoals normaal je heb je geen “tijd” om alles te lezen of je moet geen leven hebben     </p>
<p>Als je iets zit wat je leukt wat er bij zit vindt doe je voordeel er mee.     </p>
<p><a href="http://edge.technet.com/Media/1-Windows-Server-2008-R2-Remote-Desktop-Services--The-Series-P1/">Windows Server 2008 R2: Remote Desktop Services – The Series (P1)</a>     <br /><a href="http://edge.technet.com/Media/4-Windows-Server-2008-R2-Remote-Desktop-Services--The-Series-P2/">Windows Server 2008 R2: Remote Desktop Services – The Series (P2)</a>     <br /><a title="3. Windows Server 2008 R2- Remote Desktop Services – The Series (P3)" href="http://edge.technet.com/Media/3-Windows-Server-2008-R2-Remote-Desktop-Services--The-Series-P3/">Windows Server 2008 R2- Remote Desktop Services – The Series (P3)</a>     <br /><a title="4. Windows Server 2008 R2- Remote Desktop Services – The Series (P4)" href="http://edge.technet.com/Media/4-Windows-Server-2008-R2-Remote-Desktop-Services--The-Series-P4/">Windows Server 2008 R2- Remote Desktop Services – The Series (P4)</a>     <br /><a title="5. Windows Server 2008 R2- Remote Desktop Services – The Series (P5)" href="http://edge.technet.com/Media/5-Windows-Server-2008-R2-Remote-Desktop-Services--The-Series-P5/">Windows Server 2008 R2- Remote Desktop Services – The Series (P5)</a></p>
<p><a title="Screencast (Part 1 of 4)- Master Your Environment with System Center Configuration Manager 2007" href="http://edge.technet.com/Media/Screencast-Part-1-of-4-Master-Your-Environment-with-System-Center-Configuration-Manager-2007/">Part 1 Master Your Environment with System Center Configuration Manager 2007</a>     <br /><a title="Screencast (Part 2 of 4)- Master Your Environment with System Center Configuration Manager 2007" href="http://edge.technet.com/Media/Screencast-Part-2-of-4-Master-Your-Environment-with-System-Center-Configuration-Manager-2007/">Part 2 Master Your Environment with System Center Configuration Manager 2007</a>     <br /><a title="Screencast (Part 3 of 4)- Master Your Environment with System Center Configuration Manager 2007" href="http://edge.technet.com/Media/Screencast-Part-3-of-4-Master-Your-Environment-with-System-Center-Configuration-Manager-2007/">Part 3 Master Your Environment with System Center Configuration Manager 2007</a>     <br /><a title="Screencast (Part 4 of 4)- Master Your Environment with System Center Configuration Manager 2007" href="http://edge.technet.com/Media/Screencast-Part-4-of-4-Master-Your-Environment-with-System-Center-Configuration-Manager-2007/">Part 4 Master Your Environment with System Center Configuration Manager 2007</a>     </p>
<p><a title="6. Hyper-V R2- Failover &amp; Live Migration" href="http://edge.technet.com/Media/6-Hyper-V-R2-Failover--Live-Migration/">Hyper-V R2- Failover &amp; Live Migration</a>     <br /><a title="4. Hyper-V R2- Making Highly Available VMs" href="http://edge.technet.com/Media/4-Hyper-V-R2-Making-Highly-Available-VMs/">Hyper-V R2- Making Highly Available VMs</a>     <br /><a title="4. Hyper-V R2- Making Highly Available VMs" href="http://edge.technet.com/Media/4-Hyper-V-R2-Making-Highly-Available-VMs/">Hyper-V R2- Making Highly Available VMs</a>     <br /><a title="2. Hyper-V R2- Dynamic Storage" href="http://edge.technet.com/Media/2-Hyper-V-R2-Dynamic-Storage/">Hyper-V R2- Dynamic Storage</a>     <br /><a title="7. Hyper-V R2- USB over Network with Fabulatech" href="http://edge.technet.com/Media/7-Hyper-V-R2-USB-over-Network-with-Fabulatech/">Hyper-V R2- USB over Network with Fabulatech</a>     <br /><a title="5. Hyper-V R2- Introducing Cluster Shared Volumes" href="http://edge.technet.com/Media/5-Hyper-V-R2-Introducing-Cluster-Shared-Volumes/">Hyper-V R2- Introducing Cluster Shared Volumes</a>     <br /><a title="3. Hyper-V R2- Building a Hyper-V R2 Cluster" href="http://edge.technet.com/Media/3-Hyper-V-R2-Building-a-Hyper-V-R2-Cluster/">Hyper-V R2- Building a Hyper-V R2 Cluster</a>     <br /><a title="1. Hyper-V R2- Initial Installation &amp; Configuration" href="http://edge.technet.com/Media/1-Hyper-V-R2-Initial-Installation--Configuration/">Hyper-V R2- Initial Installation &amp; Configuration</a></p>
<p><a href="http://edge.technet.com/Media/Hyper-V-Live-Migration-Windows-Server-2008-R2-Demo-Screencast-1-of-4/">Demo 1 – Hyper-V Live Migration</a>     <br /><a href="http://edge.technet.com/Media/Boot-From-VHD-Windows-Server-2008-R2-Demo-Screencast-2-of-4/">Demo 2 – Boot From VHD      <br /></a><a href="http://edge.technet.com/Media/Windows-PowerShell-20-Remoting-Windows-Server-2008-R2-Demo-Screencast-3-of-4/">Demo 3 – Windows PowerShell 2.0 Remoting</a>     <br /><a href="http://edge.technet.com/Media/Active-Directory-Enhancements-Windows-Server-2008-R2-Demo-Screencast-4-of-4/">Demo 4 – Active Directory Enhancements</a></p>
<p><a href="http://edge.technet.com/Media/Microsoft-Deployment-Toolkit-building-install-media-for-Windows-7/">Microsoft Deployment Toolkit &#8211; building install media for Windows 7</a>     <br /><a title="Windows XP Migration to Windows 7 RC using MDT Beta 1 - Part 1- The OS Install" href="http://edge.technet.com/Media/Windows-XP-Migration-to-Windows-7-RC-using-MDT-Beta-1-Part-1-The-OS-Install/">Windows XP Migration to Windows 7 RC using MDT Beta 1 &#8211; Part 1- The OS Install</a>     <br /><a title="Windows XP Migration to Windows 7 RC using MDT 2010 Beta 1 – Part 2- How To Build It…" href="http://edge.technet.com/Media/Windows-XP-Migration-to-Windows-7-RC-using-MDT-2010-Beta-1--Part-2-How-To-Build-It/">Windows XP Migration to Windows 7 RC using MDT 2010 Beta 1 – Part 2- How To Build It…</a>     </p>
<p><a href="http://edge.technet.com/Media/Open-Source-Software-OSS-on-Windows-Server-2008/">Open Source Software (OSS) on Windows Server 2008</a>     </p>
<p><a href="http://edge.technet.com/media/Exchange-2010-Mobility-Demo-Read-And-Reply-State">Exchange 2010 Demo: Read and Reply State</a>     <br /><a href="http://edge.technet.com/media/Exchange-2010-Mobility-Demo-Conversation-View">Exchange 2010 Demo: Conversation View</a><a href="http://edge.technet.com/media/Exchange-2010-Mobility-Demo-Free-Busy">      <br /></a><a href="http://edge.technet.com/media/Exchange-2010-Mobility-Demo-Move-Conversation">Exchange 2010 Demo: Move Conversation      <br /></a><a href="http://edge.technet.com/media/Exchange-2010-Mobility-Demo-Nickname-Cache">Exchange 2010 Demo: Nickname Cache      <br /></a><a href="http://edge.technet.com/media/Exchange-2010-Mobility-Demo-UM-Card">Exchange 2010 Demo: UM Card      <br /></a>    <br /><a href="http://edge.technet.com/Media/Interview-with-Kristian-Andaker-on-Transitions-to-Exchange-Server-2010/">Interview with Kristian Andaker on Transitions to Exchange Server 2010</a>     <br /><a title="http://edge.technet.com/Media/Interview-with-Kristian-Andaker-on-Exchange-2010-OWA/" href="http://edge.technet.com/Media/Interview-with-Kristian-Andaker-on-Exchange-2010-OWA/">Interview with Kristian Andaker on Exchange 2010 OWA</a>     <br /><a title="http://edge.technet.com/Media/Interview-with-Matt-Gossage-on-Exchange-Server-2010-and-Storage/" href="http://edge.technet.com/Media/Interview-with-Matt-Gossage-on-Exchange-Server-2010-and-Storage/">Interview with Matt Gossage on Exchange Server 2010 and Storage</a>     <br /><a title="http://edge.technet.com/Media/Interview-with-Scott-Schnoll-on-Exchange-2010-High-Availability/" href="http://edge.technet.com/Media/Interview-with-Scott-Schnoll-on-Exchange-2010-High-Availability/">Interview with Scott Schnoll on Exchange 2010 High Availability</a>     <br /><a title="http://edge.technet.com/Media/Interview-with-Scott-Schnoll-on-Backup-Strategy-in-Exchange-2010/" href="http://edge.technet.com/Media/Interview-with-Scott-Schnoll-on-Backup-Strategy-in-Exchange-2010/">Interview with Scott Schnoll on Backup Strategy in Exchange 2010</a>     <br /><a title="http://edge.technet.com/Media/Interview-with-Becky-Benfield-on-Exhcnage-2010-Site-Resiliency-at-Tech-Ed-2009/" href="http://edge.technet.com/Media/Interview-with-Becky-Benfield-on-Exhcnage-2010-Site-Resiliency-at-Tech-Ed-2009/">Interview with Becky Benfield on Exchange 2010 Site Resiliency at Tech Ed 2009</a>     </p>
<p>Waarom zijn dagen zo kort!!!!!!!!!!!!!</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Windows+2008+R2%2C+Hyper+V2%2C+Exchange+2010%2C+MDT+Video%E2%80%99s+http%3A%2F%2Ftinyurl.com%2Fmcr8eu" title="Post to Twitter"><img class="nothumb" src="http://www.wardvissers.nl/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro2.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.wardvissers.nl/2009/07/10/windows-2008-r2-hyper-v2-exchange-2010-mdt-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

