<?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) &#187; SCCM</title>
	<atom:link href="http://www.the-d-spot.org/wordpress/category/sccm/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>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>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>
		<item>
		<title>Microsoft System Center Suite &#8211; a bucket full of fruits</title>
		<link>http://www.the-d-spot.org/wordpress/2011/10/25/microsoft-system-center-suite-a-bucket-full-of-fruits/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/10/25/microsoft-system-center-suite-a-bucket-full-of-fruits/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 16:42:57 +0000</pubDate>
		<dc:creator>verteto</dc:creator>
				<category><![CDATA[Opalis]]></category>
		<category><![CDATA[Orchestrator]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SCCM 2012]]></category>
		<category><![CDATA[SCO 2012]]></category>
		<category><![CDATA[SCOM 2012]]></category>
		<category><![CDATA[SCSM 2012]]></category>
		<category><![CDATA[SCVMM 2012]]></category>
		<category><![CDATA[SDPM 2012]]></category>
		<category><![CDATA[System Center]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1304</guid>
		<description><![CDATA[Recently we hosted an event about &#8220;Microsoft System Center Suite &#8211; a bucket full of fruits&#8221;. This seminar not only listed many of the new features and functionality that are included in 2012 versions but also answered some ins and outs of the suite components. The result can be found here: http://seminar.the-d-spot.org/Microsoft System Center Suite [...]]]></description>
			<content:encoded><![CDATA[<p>Recently we hosted an event about &#8220;Microsoft System Center Suite &#8211; a bucket full of fruits&#8221;. This seminar not only listed many of the new features and functionality that are included in 2012 versions but also answered some ins and outs of the suite components.</p>
<p>The result can be found here:</p>
<p><a href="http://seminar.the-d-spot.org/Microsoft System Center Suite - a bucket full of fruits - 24102011Presentation.pdf">http://seminar.the-d-spot.org/Microsoft System Center Suite &#8211; a bucket full of fruits &#8211; 24102011Presentation.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/10/25/microsoft-system-center-suite-a-bucket-full-of-fruits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop optimisation windows 7 and office 2010 &#8211; notes from the field</title>
		<link>http://www.the-d-spot.org/wordpress/2011/10/22/desktop-optimisation-windows-7-and-office-2010-notes-from-the-field/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/10/22/desktop-optimisation-windows-7-and-office-2010-notes-from-the-field/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 17:48:43 +0000</pubDate>
		<dc:creator>verteto</dc:creator>
				<category><![CDATA[ACT 5.5]]></category>
		<category><![CDATA[Altiris]]></category>
		<category><![CDATA[App-V]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MDOP]]></category>
		<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[MDT 2012]]></category>
		<category><![CDATA[MED-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SCCM 2012]]></category>
		<category><![CDATA[SCSM 2010]]></category>
		<category><![CDATA[Seminar]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[VDI]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1299</guid>
		<description><![CDATA[Recently we hosted an event about &#8220;Desktop optimisation &#8211; efficient windows 7 and office 2010 deployment &#8211; notes from the field&#8221;. This seminar not only listed many of the new features and functionality that are included in Windows 7 and Office 2010 but also answered many deployment questions including some notes from the field. The [...]]]></description>
			<content:encoded><![CDATA[<p>Recently we hosted an event about &#8220;Desktop optimisation &#8211; efficient windows 7 and office 2010 deployment &#8211; notes from the field&#8221;. This seminar not only listed many of the new features and functionality that are included in Windows 7 and Office 2010 but also answered many deployment questions including some notes from the field.</p>
<p>The result can be found here:</p>
<p><a href="http://seminar.the-d-spot.org/Desktop%20optimisation%20-%20notes%20from%20the%20field%20-%2017102011.pdf">http://seminar.the-d-spot.org/Desktop optimisation &#8211; notes from the field &#8211; 17102011.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/10/22/desktop-optimisation-windows-7-and-office-2010-notes-from-the-field/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pre-Staging in SCCM</title>
		<link>http://www.the-d-spot.org/wordpress/2011/10/05/pre-staging-in-sccm/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/10/05/pre-staging-in-sccm/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 13:45:05 +0000</pubDate>
		<dc:creator>Siegmund</dc:creator>
				<category><![CDATA[SCCM]]></category>
		<category><![CDATA[R3]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1266</guid>
		<description><![CDATA[I was asked to prepare an SCCM  image for a new batch of machines that will be installed by the vendor. Afterwards the machines will recieve their name and join the domain after being shipped onsite. the vendor will be providing us with a list of all mac-addresses, so we can use that to import [...]]]></description>
			<content:encoded><![CDATA[<p>I was asked to prepare an SCCM  image for a new batch of machines that will be installed by the vendor.</p>
<p>Afterwards the machines will recieve their name and join the domain after being shipped onsite.</p>
<p>the vendor will be providing us with a list of all mac-addresses, so we can use that to import the computer information and create the link between collection and advertisement.</p>
<p>I will try to go through all steps I did to achieve this result.</p>
<p>1° <span style="text-decoration: underline">Create a capture of the current TS</span></p>
<p>as all new machines will be based on the same model, we use this procedure to save some time later on. (the capture will also have the default applications embedded)</p>
<p>2° <span style="text-decoration: underline">Create the Prestage media via a TS</span></p>
<p>Note: this can be done via one of 2 ways, check the full explanation here:</p>
<p><a href="http://blogs.technet.com/b/configurationmgr/archive/2011/01/11/how-to-stage-task-sequence-prestaged-media-on-a-hard-drive-in-configuration-manager-2007.aspx">http://blogs.technet.com/b/configurationmgr/archive/2011/01/11/how-to-stage-task-sequence-prestaged-media-on-a-hard-drive-in-configuration-manager-2007.aspx</a></p>
<p>Right Click on the Task Sequence and select Create Task Sequence Media</p>
<p>Select the option to create Prestaged Media (R3 required !)<br />
Specify publisher information</p>
<p>Specify name and destination of the output file (this will be a WIMfile)<br />
<a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture1.jpg"><img class="size-full wp-image-1268 alignnone" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture1.jpg" alt="" width="699" height="519" /></a></p>
<p>Select boot and OS image to be used.</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture2.jpg"><img class="alignnone size-full wp-image-1269" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture2.jpg" alt="" width="703" height="428" /></a></p>
<p>This TS has been exported as standalone media on an USB stick that will be handed out to our vendor.</p>
<p><span style="text-decoration: underline">Tip</span>: by default when the Autorun is launched, you have to click on the NEXT button before continuing. If you want to avoid this, edit the tsmbootstrap.ini (located in SMS\data) and change the value of unattend=false into TRUE</p>
<p>3° <span style="text-decoration: underline">Add the Prestaged OS image in the SCCM console</span></p>
<p>The next step is to create an OS image under OSD</p>
<p>Right click on OS images and select ADD operating system image</p>
<p>Input the UNC path of the captured wimfile from step 2</p>
<p>Distribute this new os image to a DP</p>
<p>4° <span style="text-decoration: underline">Create a TS to prestage the OS image</span></p>
<p>Select a custom tasksequence</p>
<p>Step 1 : Format and partition disk</p>
<p>Define the necessary partitions</p>
<p>Step 2 : Apply data image</p>
<p>Select the image package we created in step 2</p>
<p>Make sure to select the correct location, if you have worked with a variable in the partition disk step, you have to reuse that variable again or things will fail.</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture3.jpg"><img class="alignnone size-full wp-image-1270" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture3.jpg" alt="" width="632" height="420" /></a></p>
<p>Step 3 : add a new command line with : <em>wpeutil.exe shutdown</em></p>
<p>as you can see, the difficulty in this process lies not in this part&#8230;</p>
<p>Advertise this TS non-mandatory.</p>
<p>5° <span style="text-decoration: underline">Create a TS to finalize the prestaging</span></p>
<p>This is the part that will be executed onsite</p>
<p>Start with a duplicate of your regular tasksequence, you can remove the step <em>restart in WindowsPE</em> (machines that have the data image, will start from the local bootimage anyway)</p>
<p>You will have to edit the step <em>partition disk</em> and insert a new task sequence variable _SMSTSMediaType set to: not equals OEMMedia</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture4.png"><img class="alignnone size-full wp-image-1273" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture4.png" alt="" width="313" height="249" /></a><br />
Verify the step <em>Apply OS</em> to make sure that the correct partition will be targeted (again<br />
if you have worked with a variable, this will not function any more as the TS<br />
will now have skipped the partition disk step.), instead choose the correct destination in<br />
‘Specific disk and partition’</p>
<p>Since we used a captured image, we do not need to install any drivers or software any<br />
more (saves us much time)</p>
<p>You will have to cleanup some leftovers of the OEMMedia on the local disk, like the file<br />
autorun.inf and folders oemmedia, sms, smslogs and sources (for now I used separate steps, I know this can be improved&#8230;)</p>
<p><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture51.jpg"><img class="alignnone size-full wp-image-1275" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/capture51.jpg" alt="" width="643" height="590" /></a></p>
<p>After all this it is safe to restart the computer it will now be ready.</p>
<p>Advertise this TS non-mandatory.</p>
<p>So, as end-result how does this process look like?</p>
<p><strong><span style="text-decoration: underline">Part 1 (offsite)</span></strong></p>
<p>During part 1 (offsite) the prestaged TS will extract the WIM to the local harddisk and then<br />
shutdown the machine.</p>
<p>The machine is now ready for shipping</p>
<p><strong><span style="text-decoration: underline">Part 2 (onsite)</span></strong></p>
<p>In part 2 (onsite) make sure the machine is not booting to PXE</p>
<p>The machine will boot by default from the bootimage off the hard disk and will then lookup<br />
the advertised Task Sequence by contacting the SCCM server.</p>
<p>(this is done by the autorun.inf which will launch tsmbautorun.exe)</p>
<p>The TS will skip the partition disk step and continue rather quickly with the rest of the TS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/10/05/pre-staging-in-sccm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New blog series for SCCM 2012</title>
		<link>http://www.the-d-spot.org/wordpress/2011/10/05/new-blog-series-for-sccm-2012/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/10/05/new-blog-series-for-sccm-2012/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 12:33:16 +0000</pubDate>
		<dc:creator>Steve De Peet</dc:creator>
				<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SCCM 2012]]></category>
		<category><![CDATA[System Center]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1262</guid>
		<description><![CDATA[Hello, Check out the new blog series regarding SCCM 2012! Offcourse &#8216;the-d-spot&#8217; remains a good resource to check out as well http://blogs.technet.com/b/server-cloud/archive/2011/10/04/system-center-configuration-manager-2012-blog-series-kick-off.aspx Regards,]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>Check out the new blog series regarding SCCM 2012!<br />
Offcourse &#8216;the-d-spot&#8217; remains a good resource to check out as well <img src='http://www.the-d-spot.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://blogs.technet.com/b/server-cloud/archive/2011/10/04/system-center-configuration-manager-2012-blog-series-kick-off.aspx">http://blogs.technet.com/b/server-cloud/archive/2011/10/04/system-center-configuration-manager-2012-blog-series-kick-off.aspx</a></p>
<p>Regards,</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/10/05/new-blog-series-for-sccm-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting Services Point: invalid class</title>
		<link>http://www.the-d-spot.org/wordpress/2011/09/05/reporting-services-point-invalid-class/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/09/05/reporting-services-point-invalid-class/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 06:35:42 +0000</pubDate>
		<dc:creator>Siegmund</dc:creator>
				<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1222</guid>
		<description><![CDATA[As a good habit this morning I quickly checked my eventviewer on my primary sccm server and noticed a lot of events 107 in the application log &#8220;Report server cannot connect to the report server db&#8221;. The ReportServer service was running, restarted it but didn&#8217;t solve the problem. Then I opened the SQL mgmt studio [...]]]></description>
			<content:encoded><![CDATA[<p>As a good habit this morning I quickly checked my eventviewer on my primary sccm server and noticed a lot of events 107 in the application log &#8220;Report server cannot connect to the report server db&#8221;.</p>
<p>The ReportServer service was running, restarted it but didn&#8217;t solve the problem.</p>
<p>Then I opened the SQL mgmt studio and performed a simple query against the Reportserver db, no problem there either.</p>
<p>Then I started the Reporting Services Configuration Manager and noticed the instance was&#8217;t there, clicking on Find resulted in the message &#8220;invalid class&#8221;</p>
<p>wait a minute, last week a SQL guy changed the service accounts, could this be related?</p>
<p>to solve the issue:</p>
<p>browse to &lt;driveletter&gt;:program files\microsoft sql server\msrs10.mssqlserver\reporting Services\Reportserver and open the bin folder.</p>
<p>copy the reportingservices.mof file</p>
<p>(re)register it with: mofcomp &lt;driveletter&gt;:program files\microsoft sql server\msrs10.mssqlserver\reporting Services\Reportserver\bin\reportingservices.mof.</p>
<p>at first impression everything is working fine, but after about 15 minutes I saw event 120 passing by &#8220;the report server cannot decrypt the symmetric key most likely the service account or password has changed&#8221;.  So I went back to the Reporting Services Configuration Manager tool &gt; Encryption Keys &gt; click on the delete button.</p>
<p>and now everything is running smoothly again</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/09/05/reporting-services-point-invalid-class/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SP1 for Office 2010 stuck in downloading state</title>
		<link>http://www.the-d-spot.org/wordpress/2011/08/30/sp1-for-office-2010-stuck-in-downloading-state/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/08/30/sp1-for-office-2010-stuck-in-downloading-state/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 09:09:17 +0000</pubDate>
		<dc:creator>Siegmund</dc:creator>
				<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[System Center]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1212</guid>
		<description><![CDATA[As a number of machines in our environment did not have the SP1 for office 2010 yet, I included it in my Configmanager sw deployment package. But shortly after that I started recieving complaints that this update kept saying it was downloading without much progress&#8230; SP1 stuck downloading In Configmgr 07 the SP1 was only [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp mceIEcenter">
<p style="text-align: left">As a number of machines in our environment did not have the SP1 for office 2010 yet, I included it in my Configmanager sw deployment package.</p>
<p style="text-align: left">But shortly after that I started recieving complaints that this update kept saying it was downloading without much progress&#8230;</p>
<dl>
<dt><a href="http://www.the-d-spot.org/wordpress/wp-content/uploads/o2010SP1.jpg"><img class="size-medium wp-image-1213" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/o2010SP1-300x161.jpg" alt="SP1 stuck downloading" width="300" height="161" /></a></dt>
<dd>SP1 stuck downloading</dd>
</dl>
</div>
<p>In Configmgr 07 the SP1 was only imported in english (just as the rest of our updates). The Office 2010 package source is originally in English with (in our case) added languages French and Dutch.</p>
<p> From one of the troubled clients I found this in the logs;</p>
<p><span style="text-decoration: underline">CAS.LOG:</span></p>
<p>Location update from CTM for content 1ba18f9a-1d45-44fa-958f-5374f3b9ea5e.1 and request {CDBF2855-B0A1-42AB-80F0-D7B2F939CFD8}               ContentAccess 23/08/2011 04:58:24       828 (0x033C)</p>
<p>Download request only, ignoring location update           ContentAccess 23/08/2011 04:58:24       828 (0x033C)</p>
<p>Setting download timeout options for content request {CDBF2855-B0A1-42AB-80F0-D7B2F939CFD8}: LocationTimeout = 604800, DownloadTimeout = 864000, PerDPInactivityTimeout = 0, TotalInactivityTimeout = 0   ContentAccess 23/08/2011 09:25:33               624 (0&#215;0270)</p>
<p>No need to change timeout settings     ContentAccess 23/08/2011 09:25:33       624 (0&#215;0270)</p>
<p>Setting download timeout options for content request {CDBF2855-B0A1-42AB-80F0-D7B2F939CFD8}: LocationTimeout = 604800, DownloadTimeout = 864000, PerDPInactivityTimeout = 0, TotalInactivityTimeout = 0   ContentAccess 25/08/2011 09:15:17               3232 (0x0CA0)</p>
<p>No need to change timeout settings     ContentAccess 25/08/2011 09:15:17       3232 (0x0CA0)</p>
<p>Setting download timeout options for content request {CDBF2855-B0A1-42AB-80F0-D7B2F939CFD8}: LocationTimeout = 604800, DownloadTimeout = 864000, PerDPInactivityTimeout = 0, TotalInactivityTimeout = 0   ContentAccess 25/08/2011 10:28:44               2144 (0&#215;0860)</p>
<p>No need to change timeout settings     ContentAccess 25/08/2011 10:28:44       2144 (0&#215;0860)</p>
<p>Download failed for content 1ba18f9a-1d45-44fa-958f-5374f3b9ea5e.1 under context System, error 0x800705b4                ContentAccess 26/08/2011 22:25:19       4280 (0x10B8)</p>
<p>Download failed for download request {CDBF2855-B0A1-42AB-80F0-D7B2F939CFD8}   ContentAccess 26/08/2011 22:25:19                4280 (0x10B8)</p>
<p>Raising event:</p>
<p>[SMS_CodePage(437), SMS_LocaleID(1033)]</p>
<p>instance of SoftDistDownloadFailedEvent</p>
<p>{</p>
<p>                ClientID = &#8220;GUID:9E699560-328B-42A4-9EB4-2DB4E16AC74F&#8221;;</p>
<p>                DateTime = &#8220;20110826202519.093000+000&#8243;;</p>
<p>                MachineName = &#8220;<span style="color: #000000">xxxxxxxx</span>&#8220;;</p>
<p>                PackageId = &#8220;1ba18f9a-1d45-44fa-958f-5374f3b9ea5e&#8221;;</p>
<p>                PackageName = &#8220;1ba18f9a-1d45-44fa-958f-5374f3b9ea5e&#8221;;</p>
<p>                PackageVersion = &#8220;1&#8243;;</p>
<p>                ProcessID = 3360;</p>
<p>                SiteCode = &#8220;399&#8243;;</p>
<p>                ThreadID = 4280;</p>
<p>};</p>
<p>                ContentAccess 26/08/2011 22:25:19       4280 (0x10B8)</p>
<p>Successfully raised Download Failed event.       ContentAccess 26/08/2011 22:25:19       4280 (0x10B8)</p>
<p><span style="text-decoration: underline">UPDATESHANDLER.LOG:</span></p>
<p>Starting download on action (INSTALL) for Update (1ba18f9a-1d45-44fa-958f-5374f3b9ea5e)   UpdatesHandler                29/08/2011 20:59:20       4152 (0&#215;1038)</p>
<p>well, Now we know for sure that the culprit is the missing update ID: <strong>1ba18f9a-1d45-44fa-958f-5374f3b9ea5e</strong>.  furthermore it is supposed to be part of the bundled update for SP1 office 2010 (kb 2510690).</p>
<p>Originally I thought I had to simply add the dutch and French languages for this SP1 update, but then it became clear that by default also the Spanish proofing tools are installed.. (check this with the office OCT if you are not sure)</p>
<p><span style="text-decoration: underline"><em>SOLUTION:</em></span></p>
<p>So I went to my console &gt; software updates &gt; update repository &gt; service packs &gt; microsoft &gt; office 2010 &gt; select the appropriate version (32bit or 64 bit) of the office 2010 sp1,  <span style="text-decoration: underline">Right-click</span> &gt; download updates. Select your existing deployment package, select “download from the internet”, in language selection, I had to select French, dutch and Spanish.</p>
<p>Once the supplemental updates had been downloaded, make sure to update your deployment package as well!.</p>
<p>Then I identified which machines where stuck downloading this update with software updates report <span style="text-decoration: underline">States 4</span> and restarted the SMS Agent Host service, after which the download went further.</p>
<p><span style="text-decoration: underline">Note 1</span>: if you have a bundled update like this, you can check in the content information tab what language you have already downloaded.</p>
<p><span style="text-decoration: underline">Note 2</span>: see also this article on the technet blog: <a href="http://blogs.technet.com/b/configurationmgr/archive/2011/08/23/troubleshooting-a-configuration-manager-2007-installation-of-office-2010.aspx">http://blogs.technet.com/b/configurationmgr/archive/2011/08/23/troubleshooting-a-configuration-manager-2007-installation-of-office-2010.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/08/30/sp1-for-office-2010-stuck-in-downloading-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dive into Desktop Deployment this summer</title>
		<link>http://www.the-d-spot.org/wordpress/2011/07/26/dive-into-desktop-deployment-this-summer/</link>
		<comments>http://www.the-d-spot.org/wordpress/2011/07/26/dive-into-desktop-deployment-this-summer/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 10:51:33 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[MDOP]]></category>
		<category><![CDATA[MDT 2010]]></category>
		<category><![CDATA[MED-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.the-d-spot.org/wordpress/?p=1195</guid>
		<description><![CDATA[Microsoft gave the TechNet newsletters a holiday feeling with four different topics in a bite-size format. One of the topics of this summer edition is about Desktop Deployment. Desktop deployment involves much more than just migrating from Windows XP to Windows 7. In fact it&#8217;s mainly about managing your desktop and application infrastructure effectively. This [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft gave the TechNet newsletters a holiday feeling with four different topics in a bite-size format. One of the topics of this summer edition is about Desktop Deployment.</p>
<p style="text-align: center;"><a href="http://technet.microsoft.com/nl-be/ff898349"><img class="aligncenter size-full wp-image-1196" title="Technet summer desktop deployment 2011" src="http://www.the-d-spot.org/wordpress/wp-content/uploads/technet_summerdeployment2011.png" alt="Technet summer desktop deployment 2011" width="562" height="240" /></a></p>
<p>Desktop deployment involves much more than just migrating from Windows XP to Windows 7. In fact it&#8217;s mainly about managing your desktop and application infrastructure effectively. This Technet article covers all about optimized desktop and why a properly managed desktop has a good TCO. Also the new tools in MDOP are covered and how to use the cloud with Windows Intune. You can take a short tour (half an hour), mid tour (half day) or the full tour (full day).</p>
<p>The following topics are covered:</p>
<ul>
<li>Application Compatibility</li>
<li>Office 2010 Deployment &#8211; Office 365</li>
<li>Desktop Optimization Pack</li>
<li>Windows 7 Deployment</li>
<li>Internet Explorer 9</li>
<li>Windows Intune</li>
</ul>
<p><a title="Technet Desktop Deployment" href="http://technet.microsoft.com/nl-be/ff898349" target="_blank">Take the deployment dive at Technet</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-d-spot.org/wordpress/2011/07/26/dive-into-desktop-deployment-this-summer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

