<?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>The D-Spot (The Deployment Spot)</title>
	<atom:link href="http://www.the-d-spot.org/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-d-spot.org/wordpress</link>
	<description>Tickle your Deployment needs.</description>
	<lastBuildDate>Sat, 28 Jan 2012 15:43:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>ACT 5.6 Tweaks</title>
		<link>http://www.the-d-spot.org/wordpress/2012/01/28/act-5-6-tweaks/</link>
		<comments>http://www.the-d-spot.org/wordpress/2012/01/28/act-5-6-tweaks/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 15:39:13 +0000</pubDate>
		<dc:creator>Siegmund</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ACT]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1382</guid>
		<description><![CDATA[During the analysis phase of a windows 7 x64 migration I have been using the MAP, ACT and OMPM tools. After handing over all the lists on the application and current client side infrastructure, the first question that came is: &#8220;ok I see a lot of applications listed that are only installed on one machine, can [...]]]></description>
			<content:encoded><![CDATA[<p>During the analysis phase of a windows 7 x64 migration I have been using the MAP, ACT and OMPM tools.</p>
<p>After handing over all the lists on the application and current client side infrastructure, the first question that came is: &#8220;ok I see a lot of applications listed that are only installed on one machine, can you give us the machinenames?&#8221;.</p>
<p>ehm well, it should be possible&#8230;</p>
<p>in the ACT GUI you can find the computername if you click on the application, but I had to find a way to automate this</p>
<p>So I installed the SQL management studio express and dived into the ACT database.</p>
<p>Here is the SQL query to give you all applications installed on only 1 machine:</p>
<p style="padding-left: 30px"><em>SELECT DISTINCT</em><br />
<em>Application_Computer_Count.computerCount,</em><br />
<em>Application_Computers_Query.machineName,</em><br />
<em>Application_Report_Complete_vw.AppName,</em><br />
<em>Application_Report_Complete_vw.AppID</em></p>
<p style="padding-left: 30px"><em>FROM         Application_Computer_Count INNER JOIN</em><br />
<em>Application_Report_Complete_vw ON Application_Computer_Count.appID = Application_Report_Complete_vw.AppID INNER JOIN</em><br />
<em>Application_Computers_Query ON Application_Report_Complete_vw.AppID =Application_Computers_Query.appID</em></p>
<p style="padding-left: 30px"><em>WHERE     (Application_Computer_Count.computerCount= 1)</em></p>
<p style="padding-left: 30px"><em>ORDER BY</em><br />
<em>Application_Report_Complete_vw.AppName</em></p>
<p>What is more interesting is the following query, which will give you all applications installed on 1 pc marked with 1 or more issues:</p>
<p style="text-align: left;padding-left: 30px"><em>SELECT DISTINCT</em></p>
<p style="text-align: left;padding-left: 30px"><em>App_Issue_Counts.appID,</em><br />
<em>App_Issue_Counts.activeIssuesCount, Application_Computer_Count.computerCount,</em><br />
<em>Application_Computers_Query.machineName,Application_Report_Complete_vw.AppName</em></p>
<p style="text-align: left;padding-left: 30px"><em>FROM         App_Issue_Counts INNER JOIN</em></p>
<p style="text-align: left;padding-left: 30px"><em>Application_Computer_Count ON App_Issue_Counts.appID =Application_Computer_Count.appID INNER JOIN</em></p>
<p style="text-align: left;padding-left: 30px"><em>Application_Computers_Query ON App_Issue_Counts.appID =Application_Computers_Query.appID INNER JOIN</em></p>
<p style="text-align: left;padding-left: 30px"><em>Application_Report_Complete_vw ON App_Issue_Counts.appID =Application_Report_Complete_vw.AppID</em></p>
<p style="text-align: left;padding-left: 30px"><em>WHERE     (App_Issue_Counts.activeIssuesCount &gt;=&#8217;1&#8242;) AND (Application_Computer_Count.computerCount = 1)</em></p>
<p style="text-align: left;padding-left: 30px"><em>ORDER BY</em><br />
<em>Application_Report_Complete_vw.AppName</em></p>
<p>another thing with ACT 5.6, was that it did not seem clear to me why none of the <span style="text-decoration: underline">16 bit</span> applications were listed in the collected data</p>
<p>Luckily there is a way to find them with another SQL query, checkout (and credits to): <a href="http://www.theexperienceblog.com/2011/04/14/how-to-find-16-bit-applications-in-your-act-inventory">http://www.theexperienceblog.com/2011/04/14/how-to-find-16-bit-applications-in-your-act-inventory</a></p>
<p>The last thing for now on ACT is that the collector is not capable yet to work with windows 7 sp1.</p>
<p>you need to import a sql script to make this possible</p>
<p>Here is the content of this script (the import can be done via osql.exe -E -i&lt;thenameofthesqlscript&gt; -S&#8221;&lt;sqlserver\instance&gt;&#8221; -d&lt;dbname&gt; :</p>
<p style="padding-left: 30px"><em>INSERT INTO.[dbo].[OS]</em><br />
<em> ([osID]</em><br />
<em> ,[osName]</em><br />
<em> ,[majorVersion]</em><br />
<em> ,[minorVersion]</em><br />
<em> ,[buildNumber]</em><br />
<em> ,[servicePackName]</em><br />
<em> ,[servicePackMajor]</em><br />
<em> ,[servicePackMinor]</em><br />
<em> ,[csdVersion]</em><br />
<em> ,[productType]</em><br />
<em> ,[suite]</em><br />
<em> ,[publishedDate])</em><br />
<em> VALUES</em><br />
<em> (N&#8217;6.1.1&#8242;</em><br />
<em> ,N&#8217;Windows 7 SP1&#8242;</em><br />
<em> ,6</em><br />
<em> ,1</em><br />
<em> ,0</em><br />
<em> ,N&#8217;Service Pack 1&#8242;</em><br />
<em> ,1</em><br />
<em> ,0</em><br />
<em> ,N&#8217;Service Pack 1&#8242;</em><br />
<em> ,0</em><br />
<em> ,0</em><br />
<em> ,&#8217;2011-02-22&#8242;)</em><br />
<em>GO</em></p>
<p>Also remember, the infliction point to test applications during a migration is:</p>
<p><strong>COST </strong>of failure X <strong>PROBABILITY </strong>of failure &gt; <span style="text-decoration: underline">COST of testing </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2012/01/28/act-5-6-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Task Sequences not showing after MDT 2012 b2 upgrade</title>
		<link>http://www.the-d-spot.org/wordpress/2012/01/14/task-sequences-not-showing-after-mdt-2012-b2-upgrade/</link>
		<comments>http://www.the-d-spot.org/wordpress/2012/01/14/task-sequences-not-showing-after-mdt-2012-b2-upgrade/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 10:21:26 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[MDT 2012]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[WDS]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/2012/01/14/task-sequences-not-showing-after-mdt-2012-b2-upgrade/</guid>
		<description><![CDATA[The deployment wizard was not showing any Task Sequences after an upgrade from MDT 2010 U1 to MDT 2012 beta2. Of course I updated my Deployment Share after the upgrade. Updating a second time, and completely regenerate the boot images got my attention that I didn’t reimported the boot images into WDS. After reimporting the [...]]]></description>
			<content:encoded><![CDATA[<p>The deployment wizard was not showing any Task Sequences after an upgrade from MDT 2010 U1 to MDT 2012 beta2.</p>
<p>Of course I updated my Deployment Share after the upgrade. Updating a second time, and <em>completely regenerate the boot images</em> got my attention that I didn’t reimported the boot images into WDS.</p>
<p>After reimporting the new generated boot images with MDT 2012 my Task Sequences showed up and I was able to start deploying again!</p>
<p>So don’t forget to reimport your WinPE boot images after upgrading to MDT 2012!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2012/01/14/task-sequences-not-showing-after-mdt-2012-b2-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows ThinPC unattend error with MDT 2010</title>
		<link>http://www.the-d-spot.org/wordpress/2012/01/06/windows-thinpc-unattend-error-with-mdt-2010-2/</link>
		<comments>http://www.the-d-spot.org/wordpress/2012/01/06/windows-thinpc-unattend-error-with-mdt-2010-2/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 13:27:00 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[MDT 2012]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[unattend.xml]]></category>
		<category><![CDATA[UpgradeData]]></category>
		<category><![CDATA[Windows ThinPC]]></category>
		<category><![CDATA[windowsPE]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/2012/01/08/windows-thinpc-unattend-error-with-mdt-2010-2/</guid>
		<description><![CDATA[I was deploying Windows ThinPC using MDT with a customer, and received this error: Windows could not parse or process unattend answer file [C:\MININT\unattend.xml] for pass [windowsPE]. A component or setting specified in the answer file does not exist. According to the MS forums this should be solved in MDT 2012 beta 1. So we [...]]]></description>
			<content:encoded><![CDATA[<p>I was deploying <a href="http://www.microsoft.com/en-us/windows/enterprise/products-and-technologies/virtualization/thinpc.aspx" target="_blank">Windows ThinPC</a> using MDT with a customer, and received this error:</p>
<blockquote><p>Windows could not parse or process unattend answer file [C:\MININT\unattend.xml] for pass [windowsPE]. A component or setting specified in the answer file does not exist.</p>
</blockquote>
<p>According to the MS forums this should be solved in MDT 2012 beta 1. So we upgraded to MDT 2012 beta 2, but unfortunately the error remains.</p>
<p>Deleting the &lt;UpgradeData&gt; node from the unattend.xml, like <a href="http://social.technet.microsoft.com/Forums/en-US/mdt/thread/036ab46f-4f19-4a79-8b2e-a3c550687226/" target="_blank">Michael</a> mentioned, fixed the issue. Windows ThinPC deployed successful when this node was removed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2012/01/06/windows-thinpc-unattend-error-with-mdt-2010-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PoC Jumpstart 2.0 SQL Server Evaluation Expired</title>
		<link>http://www.the-d-spot.org/wordpress/2012/01/05/poc-jumpstart-2-0-sql-server-evaluation-expired/</link>
		<comments>http://www.the-d-spot.org/wordpress/2012/01/05/poc-jumpstart-2-0-sql-server-evaluation-expired/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 19:52:00 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[PoC Jumpstart]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/2012/01/05/poc-jumpstart-2-0-sql-server-evaluation-expired/</guid>
		<description><![CDATA[As of this writing, the SQL Server installed within the PoC Jumpstart Kit 2.0 is expired. While the new version 3.0 isn’t available yet. This can be solved by disabling the time synchronization between the host, set the date to one in the past, and restart de SQL services afterwards. net stop vmictimesync date 24/2/2011 [...]]]></description>
			<content:encoded><![CDATA[<p>As of this writing, the SQL Server installed within the PoC Jumpstart Kit 2.0 is expired. While the new version 3.0 isn’t available yet.</p>
<p>This can be solved by disabling the time synchronization between the host, set the date to one in the past, and restart de SQL services afterwards.</p>
<blockquote><p>net stop vmictimesync    <br />date 24/2/2011     <br />net start mssql$pocserver     <br />net start mssql$microsoftscm     <br />net start mssql$maps     <br />net start vmictimesync     </p></blockquote>
<p>source: <a href="http://social.technet.microsoft.com/Forums/en-US/w7itpropoc/thread/6ccb11d4-e2cf-4af3-8df1-d2fdfb294d33">http://social.technet.microsoft.com/Forums/en-US/w7itpropoc/thread/6ccb11d4-e2cf-4af3-8df1-d2fdfb294d33</a></p>
<p>Edit: <a href="http://www.microsoft.com/download/en/details.aspx?id=1834" target="_blank">Proof of Concept Jumpstart Kit v3.0</a> was released, start your download managers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2012/01/05/poc-jumpstart-2-0-sql-server-evaluation-expired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App-V and Adobe Reader: Access Denied when opening a PDF file</title>
		<link>http://www.the-d-spot.org/wordpress/2011/12/29/app-v-and-adobe-reader-access-denied-when-opening-a-pdf-file/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/12/29/app-v-and-adobe-reader-access-denied-when-opening-a-pdf-file/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 13:30:16 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[App-V]]></category>
		<category><![CDATA[Adobe Reader]]></category>
		<category><![CDATA[Protected Mode]]></category>
		<category><![CDATA[Softgrid]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1353</guid>
		<description><![CDATA[In many cases virtual applications will talk to physical ones. That&#8217;s one of the reasons to keep Adobe Reader installed locally. But we&#8217;ve got an issue with the Reader again. Launching a PDF file from within the bubble gave an Access Denied error (using a physical Adobe Reader 10.1): There was an error opening the [...]]]></description>
			<content:encoded><![CDATA[<p>In many cases virtual applications will talk to physical ones. That&#8217;s one of the reasons to keep Adobe Reader installed locally.</p>
<p>But we&#8217;ve got an issue with the Reader again.</p>
<p>Launching a PDF file from within the bubble gave an Access Denied error (using a physical Adobe Reader 10.1):</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/Reader10-Access-Denied.png"><img class="aligncenter size-medium wp-image-1354" title="Reader 10 - Access Denied when opening PDF files" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/Reader10-Access-Denied-300x103.png" alt="Reader 10 - Access Denied when opening PDF files" width="300" height="103" /></a></p>
<blockquote>
<p style="text-align: center;"><em>There was an error opening the document. Access Denied</em></p>
</blockquote>
<p>This issue exits only when the PDF file is stored on a &#8220;personal folder&#8221;, like the Desktop-folder for example. (local User NTFS permissions?).</p>
<p>This isn&#8217;t an App-V issue but a Reader X feature called Protected Mode that gave this error.</p>
<p>It can be solved with some basic OSD scripting, but the first step is here to stay: &#8220;Know your application&#8221;. As Reader X gave this error, we can disable this feature with a registry key. Most of the work is to find out what registry key to set. To keep this short, here is my OSD script that disables Adobe Reader Protected Mode when opening Reader from within a App-V application:</p>
<blockquote><p>&lt;REGISTRY&gt;<br />
&lt;REGKEY HIVE=&#8221;HKCU&#8221; KEY=&#8221;SOFTWARE\Adobe\Acrobat Reader\10.0\Privileged&#8221; NOREDIR=&#8221;FALSE&#8221;&gt;<br />
&lt;REGVALUE REGTYPE=&#8221;REG_DWORD&#8221; NAME=&#8221;bProtectedMode&#8221;&gt;00000000&lt;/REGVALUE&gt;<br />
&lt;/REGKEY&gt;<br />
&lt;/REGISTRY&gt;</p></blockquote>
<p>This goes into the VIRTUALENV-tag.</p>
<p>Happy sequencing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/12/29/app-v-and-adobe-reader-access-denied-when-opening-a-pdf-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMI Stability fixes for SCCM clients</title>
		<link>http://www.the-d-spot.org/wordpress/2011/11/30/wmi-stability-fixes-for-sccm-clients/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/11/30/wmi-stability-fixes-for-sccm-clients/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 09:15:55 +0000</pubDate>
		<dc:creator>Siegmund</dc:creator>
				<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1343</guid>
		<description><![CDATA[As you might already know, communication between SCCM clients and server(s) is heavily dependent on WMI functionality.  In many cases on windows XP clients we had to perform a WMI repair in the past (this is done easily with the client center tool). However I still had some weird scenarios, even with server OS, eg: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/WMITS.jpg"></a>As you might already know, communication between SCCM clients and server(s) is heavily dependent on WMI functionality.  In many cases on windows XP clients we had to perform a WMI repair in the past (this is done easily with the client center tool).</p>
<p>However I still had some weird scenarios, even with server OS, eg: After successfully patching a server a few days earlier, the compliance status would still report those patches as missing (although they had been installed successfully&#8230;)</p>
<p>This is where I made the link with the so-called WMI stability hotfixes (credits to Kim Oppalfens!  and also <a href="http://ccmexec.com/2011/08/suggested-hotfixes-for-wmi-related-issue-on-windows-platforms">http://ccmexec.com/2011/08/suggested-hotfixes-for-wmi-related-issue-on-windows-platforms</a> ).</p>
<p>To try and avoid these kind of problems I have a two-phase approach:</p>
<p>- in the Task Sequence I will install the WMI stability hotfix directly</p>
<p>- I created a separate Task Sequence with all stability hotfixes and have spread that on the rest of our clients.</p>
<p><span style="text-decoration: underline">Note </span>: this is the list of available WMI fixes per OS</p>
<p>2003+XPx64: kb933061<br />
2003 32b: kb933061<br />
XP 32b (SP2): kb933062<br />
Vista/server 2008: which one is it?<br />
Server 2008 R2/W7: 981314 + 977357 + 2465990 (SP1 only)</p>
<p>some more info about this WMI stability hotfix TS:</p>
<p>* first I created a package with 5 different command lines (and 5 programs) pointing to 5 different subfolders</p>
<p>* then I created a TS with 5 separate run command line entries (linked to the 5 programs in the package)</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/WMITS.jpg"><img class="alignnone size-full wp-image-1344" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/WMITS.jpg" alt="" width="646" height="485" /></a></p>
<p>Every Step then has a condition linked to the appropriate OS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/11/30/wmi-stability-fixes-for-sccm-clients/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using MDT scripts in SCCM without integration</title>
		<link>http://www.the-d-spot.org/wordpress/2011/11/30/using-mdt-scripts-in-sccm-without-integration/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/11/30/using-mdt-scripts-in-sccm-without-integration/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 07:33:10 +0000</pubDate>
		<dc:creator>Siegmund</dc:creator>
				<category><![CDATA[SCCM]]></category>
		<category><![CDATA[System Center]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1333</guid>
		<description><![CDATA[Recently I was looking for a way to apply a specific task sequence step only to desktop machines. As it seems the wmi query for the chassistypes was not working in the task sequence, so I thought why not use the ZTIgather.wsf script from MDT? as we have no direct need to integrate MDT, I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt21.jpg"></a>Recently I was looking for a way to apply a specific task sequence step only to desktop machines. As it seems the wmi query for the chassistypes was not working in the task sequence, so I thought why not use the ZTIgather.wsf script from MDT?</p>
<p>as we have no direct need to integrate MDT, I just needed the functionality of the MDT scripts in SCCM.</p>
<p>Start by copying the MDT scripts and put them into a package.  you do not have to create a program for this package. put it on at least one DP.</p>
<p>Edit the TS:</p>
<p>- create a &#8216;run command line&#8217; step: cscript.exe ZTIgather.wsf /localonly. browse and select your MDTscripts package.</p>
<p>(the localonly parameter is needed or this step will fail with return code 8000)</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt1.jpg"><img class="alignnone size-full wp-image-1334" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt1.jpg" alt="" width="544" height="332" /></a></p>
<p>-in another existing step I have used the variable &#8216;IsDesktop&#8217; to determine when to apply the step:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt22.jpg"><img class="alignnone size-full wp-image-1337" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt22.jpg" alt="" width="351" height="186" /></a></p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt3.jpg"><img class="alignnone size-full wp-image-1338" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/mdt3.jpg" alt="" width="351" height="212" /></a></p>
<p>See, you do not have to reinvent the wheel again !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/11/30/using-mdt-scripts-in-sccm-without-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server 2008 R2 Slow startup while applying computer settings</title>
		<link>http://www.the-d-spot.org/wordpress/2011/11/26/server-2008-r2-slow-startup-while-applying-computer-settings/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/11/26/server-2008-r2-slow-startup-while-applying-computer-settings/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 17:28:07 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[Server 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Autotuning]]></category>
		<category><![CDATA[GPClient]]></category>
		<category><![CDATA[Offine Folders]]></category>
		<category><![CDATA[Offline Files]]></category>
		<category><![CDATA[Windows Server as a Workstation]]></category>
		<category><![CDATA[Winlogon]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/2011/11/26/server-2008-r2-slow-startup-while-applying-computer-settings/</guid>
		<description><![CDATA[I’ve had some trouble with slow logon on Windows Server 2008 R2. The “Applying Computer Settings”-part takes about two minutes! The eventlog shows two records about this issue: The winlogon notification subscriber &#60;GPClient&#62; is taking long time to handle the notification event (CreateSession). And: The winlogon notification subscriber &#60;GPClient&#62; took xxx seconds to handle the [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve had some trouble with slow logon on Windows Server 2008 R2. The “Applying Computer Settings”-part takes about two minutes!</p>
<p>The eventlog shows two records about this issue:</p>
<blockquote><p>The winlogon notification subscriber &lt;GPClient&gt; is taking long time to handle the notification event (CreateSession).</p>
</blockquote>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image115.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.the-d-spot.org/wordpress/wp-content/uploads/image_thumb116.png" width="636" height="444" /></a></p>
<p>And: </p>
<blockquote><p>The winlogon notification subscriber &lt;GPClient&gt; took xxx seconds to handle the notification event (CreateSession).</p>
</blockquote>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image116.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.the-d-spot.org/wordpress/wp-content/uploads/image_thumb117.png" width="636" height="444" /></a></p>
<p>I stumbled upon some possible solutions. The first was updating the NIC driver. As I’m using the wireless network card, I&#8217;m only updating this one.</p>
<h3>Updating NIC driver</h3>
<p>Old driver:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image117.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.the-d-spot.org/wordpress/wp-content/uploads/image_thumb118.png" width="321" height="254" /></a></p>
<p>New driver:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image118.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.the-d-spot.org/wordpress/wp-content/uploads/image_thumb119.png" width="324" height="257" /></a></p>
<p>Drivers are updated but the logon time wasn’t reduced by a single second. <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-cryingface" alt="Crying face" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/wlEmoticon-cryingface.png" /></p>
<h3>Disable Computer GPO’s</h3>
<p>Second try was moving the computer object to a unmanaged OU (without policies applied), run gpupdate /force and rebooted some times .. but the problem still exists.</p>
<h3>GpNetworkStartTimeoutPolicyValue </h3>
<p>Third try: adding GpNetworkStartTimeoutPolicyValue with value 1 to the registry:</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image119.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.the-d-spot.org/wordpress/wp-content/uploads/image_thumb120.png" width="961" height="221" /></a></p>
<p>Maybe it’s a service or application on the computer itself .. ? I disabled some 3rd party (non Microsoft) services, but the problem remains.</p>
<h3>Disable IPv6?</h3>
<p>–&gt; no luck</p>
<h3>Disable CardReader?</h3>
<p>–&gt; no effect</p>
<h3>Disable Autotuning?</h3>
<blockquote><p>netsh int tcp set global autotuninglevel=disabled</p>
</blockquote>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/image120.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.the-d-spot.org/wordpress/wp-content/uploads/image_thumb121.png" width="569" height="403" /></a></p>
<p>Didn’t solved it either, so I enabled Autotuning again:</p>
<blockquote><p>netsh int tcp set global autotuninglevel=normal</p>
</blockquote>
<h3>Patches/Hotfixes?</h3>
<p><a href="http://support.microsoft.com/kb/2617858" target="_blank">KB2617858</a>: Unexpectedly slow startup or logon process in Windows Server 2008 R2 or in Windows 7</p>
<p><a href="http://support.microsoft.com/kb/2525332" target="_blank">KB2525332</a>: You encounter a long logon time after you enable the &quot;Do not automatically make redirected folders available offline&quot; Group Policy setting in Windows 7 or in Windows Server 2008 R2</p>
<p>–&gt; This hotfix fixes the slow logon issue for me! (I’m using redirected folders!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/11/26/server-2008-r2-slow-startup-while-applying-computer-settings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Deployment Toolkit 2012 Beta 2 Now Available</title>
		<link>http://www.the-d-spot.org/wordpress/2011/11/16/microsoft-deployment-toolkit-2012-beta-2-now-available/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/11/16/microsoft-deployment-toolkit-2012-beta-2-now-available/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 14:22:29 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[MDT 2012]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1312</guid>
		<description><![CDATA[MDT 2012 Beta 2 is available for download on Microsoft Connect.  The most important changes are ConfigMgr 2012 compatibility, improved Lite Touch user experience and a nice and easy upgrade process! Read all about MDT 2012 b2 at the Microsoft Deployment Toolkit Team Blog. If 1Day = 30 hours then WScript.Echo &#8220;Stay tuned at The D-Spot for some [...]]]></description>
			<content:encoded><![CDATA[<p>MDT 2012 Beta 2 is available for download on Microsoft Connect.  The most important changes are ConfigMgr 2012 compatibility, improved Lite Touch user experience and a nice and easy upgrade process! Read all about MDT 2012 b2 at the <a href="http://blogs.technet.com/b/msdeployment/archive/2011/11/10/microsoft-deployment-toolkit-2012-beta-2-now-available.aspx">Microsoft Deployment Toolkit Team Blog</a>.</p>
<p>If 1Day = 30 hours then</p>
<p style="padding-left: 30px;">WScript.Echo &#8220;Stay tuned at The D-Spot for some posts about the new beta product!&#8221;</p>
<p>End If</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/11/16/microsoft-deployment-toolkit-2012-beta-2-now-available/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>System Center Configuration Manager (SCCM) 2012 RC1 is available</title>
		<link>http://www.the-d-spot.org/wordpress/2011/10/29/system-center-configuration-manager-sccm-2012-rc1-is-available/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/10/29/system-center-configuration-manager-sccm-2012-rc1-is-available/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 12:35:26 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SCCM 2012]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1307</guid>
		<description><![CDATA[System Center Configuration Manager (SCCM) 2012 RC1 (build 7678) is available for download! http://www.microsoft.com/download/en/details.aspx?displaylang=en&#38;id=27841]]></description>
			<content:encoded><![CDATA[<p>System Center Configuration Manager (SCCM) 2012 RC1 (build 7678) is available for download!</p>
<p><a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27841">http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27841</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/10/29/system-center-configuration-manager-sccm-2012-rc1-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

