<?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> &#187; SCCM</title>
	<atom:link href="http://risualblogs.com/blog/tag/sccm/feed/" rel="self" type="application/rss+xml" />
	<link>http://risualblogs.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 18 May 2012 16:31:58 +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>Trials and Tribulations of SCCM replication…</title>
		<link>http://consulting.risualblogs.com/blog/2012/05/01/trials-and-tribulations-of-sccm-replication%e2%80%a6/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/05/01/trials-and-tribulations-of-sccm-replication%e2%80%a6/#comments</comments>
		<pubDate>Tue, 01 May 2012 21:59:11 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Configuration Manager Replication]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Replication]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[Task Sequences]]></category>

		<guid isPermaLink="false">http://2.526</guid>
		<description><![CDATA[Hi there, A customer I am working with recently implemented a new child primary site and all seemed to be ticking along smoothly until a rather angry DBA turned up to ask why disk space was being consumed at the rate of knots on the SQL server hosting the SCCM databases…First things first, I was [...]


Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/' rel='bookmark' title='Permanent Link: Forcing a Child Site Resync &#8211; SCCM 2007, site not found'>Forcing a Child Site Resync &#8211; SCCM 2007, site not found</a> <small>Hi there, I came across an issue recently with a...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/02/29/sccmapp-v-fixing-deployed-apps/' rel='bookmark' title='Permanent Link: SCCM/App-V &#8211; Fixing Deployed Apps'>SCCM/App-V &#8211; Fixing Deployed Apps</a> <small>Recently I had the need to do a quick and...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/' rel='bookmark' title='Permanent Link: User Security Rights &#8211; Virtual/Physical Packages'>User Security Rights &#8211; Virtual/Physical Packages</a> <small>A customer recently wanted to create a security right in Configuration...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>A customer I am working with recently implemented a new child primary site and all seemed to be ticking along smoothly until a rather angry DBA turned up to ask why disk space was being consumed at the rate of knots on the SQL server hosting the SCCM databases…First things first, I was impressed with the speed that the DBA noticed this as the database hadn&#8217;t actually grown that &#8216;large&#8217;, and as SCCM admins we generally keep an eye on database/backup sizes. 1-0 to the SQL DBA <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now in my experience a fast growing SCCM database generally indicates one of two things; inbox issues or more commonly &#8211; site replication issues. Given this was the first child site to be introduced in the hierarchy therefore introducing the first &#8216;replication&#8217; of content then this seemed like a good avenue to start investigating.</p>
<p>So first things first. Let&#8217;s check the database sizes out ourselves (not that we don&#8217;t trust the DBA!). We logged on to the SQL server and reviewed the SQL &#8216;data&#8217; location where we found the SCCM parent site database had ballooned by approx 20% and the new child site database was nearly the same size as the parent site which is strange given it has approx. 90% less client data!</p>
<p>Now that we know that an issue exists we need to identify exactly what tables contain all this &#8216;extra data&#8217;. To do that we need to fire up SQL Management Studio, and log on to the instance as a user with permissions to run a few queries…</p>
<p>First we ran the following query on  both databases to identify large tables;</p>
<p><a href="http://www.sqlteam.com/downloads/BigTables.sql">http://www.sqlteam.com/downloads/BigTables.sql</a> (<span style="text-decoration: underline"><strong>please note this query is from a third party and has not been tested and as such this is run at your own risk!</strong></span>)</p>
<p>This demonstrated that on the parent site the following tables were consuming more space than expected;</p>
<ul type="disc">
<li><span style="color: #ff0000">StatusMessageinsstrs</span></li>
<li><span style="color: #ff0000">StatusMessages</span></li>
<li><span style="color: #ff0000">StatusMessageAttributes</span></li>
</ul>
<p>And on the new child primary site;</p>
<ul type="disc">
<li><span style="color: #ff0000">TS_TaskSequences</span></li>
</ul>
<p>This was the interesting table &#8211; it was approx 90% the total size of the database and only had 45 rows! The same table on the parent site was approx 2mb and had 52 rows. You can check the size directly in SQL Management Studio if you wish.</p>
<p>So first things first &#8211; the status messages. Let&#8217;s review the component status view in the SCCM console. From here we got a bit more information &#8211; the SMS_DISTRIBUTION_MANAGER component was flagging thousands of notifications. Viewing this component demonstrated that there were several task sequences repeatedly processing every 5 seconds. Ah! Well first things first we have a patch that should be applied to address issues with distribution points repeatadly processing content/packages/task sequences… and this is <a href="http://support.microsoft.com/kb/978021">KB978021</a>. So let&#8217;s install that (on any and all DPs) to suppress these status messages.</p>
<p>Now we need a solution to get rid of some of the status messages in the database of the parent site. <span style="text-decoration: underline"><strong>It is bad practice to interact with the database directly and for obvious reasons is not supported by Microsoft so therefore we need to look at another way</strong></span>. Another blog post came up with the following solution;</p>
<ul type="disc">
<li><span style="color: #ff0000">Fire up WBEMTEST</span></li>
<li><span style="color: #ff0000">Namespace:      rootsmssite_&lt;code&gt;</span></li>
<li><span style="color: #ff0000">Execute Method</span></li>
<li><span style="color: #ff0000">Path: sms_statusmessage</span></li>
<li><span style="color: #ff0000">Select &#8216;Detect By Query&#8217;</span></li>
<li><span style="color: #ff0000">Edit In Parameters</span></li>
<li><span style="color: #ff0000">Select WQLSelect</span></li>
<li><span style="color: #ff0000">Select &#8216;NOT NULL&#8217;</span></li>
<li><span style="color: #ff0000">Query:</span>
<ul type="circle">
<li><span style="color: #ff0000"><em>Select * from       sms_statusmessage where messageid=&#8217;number&#8217; and component =       &#8216;SMS_DISTRIBUTION_MANAGER&#8217;</em></span></li>
</ul>
</li>
</ul>
<p>This will remove the status messages and can take some time. If there are lots of these to do then you should consider doing this in chunks. (Again, please try this in a test environment first to ensure no adverse affects occur in your production environment) <em>It is worth noting that status messages are cleared up automatically by one of the SCCM site maintenance tasks… by default audit/component status messages are kept for 180 days, and this is configured in the status message filter section of the site settings</em>.</p>
<p>We should now see the size of the parent site database has decreased. Half way there! Whilst we have stopped the status messages being generated we haven&#8217;t fixed the underlying issue. Why were these task sequences constantly processing? For that my next avenue was to look in the DISTMGR log file on the child site. Lo and behold I was greeted with the following messages;</p>
<p><span style="color: #ff0000"><em>&#8220;Failed to insert SMS Package &lt;Packge_ID&gt; because SDM Type Content &lt;Unique_ContentID&gt; is not present in the CI_Contents table. Will try later.&#8221;</em></span></p>
<p>These messages were repeated constantly, and there was 3 different Package ID&#8217;s referenced.</p>
<p>Now whilst these messages lead me to the solution it was a bit confusing as the CI_Contents table pertains to Software Updates. Now this site has a replica WSUS and did at one stage host a SUP however this was removed previously as it was added incorrectly. Whether this caused the issue we were seeing is unknown and was not investigated further.</p>
<p>I took the package ID and compared it to the &#8216;references&#8217; tab on the task sequences that were not replicating and all the task sequences contained these packages which turned out to be Driver Packages. To resolve the issue  I simply re-created the driver package and modified the task sequences to point to the new version. Very simple, and it worked (after restarting the SMS_DISTRIBUTION_MANAGER component)… the messages disappeared from the DISTMGR log.</p>
<p>So we are nearly there, however one final thing we need to do is reclaim that database space to make the DBA happy. There are a number of SQL commands that can be used, however<span style="text-decoration: underline"><strong> it is important to note that editing the database is not supported unless instructed to do so by Microsoft Premier Support. Doing so can leave you in an unsupported state</strong></span>. The commands are listed here for reference for you to use in your test environments;</p>
<ul type="disc">
<li>dbcc cleantable (SMS_CEN,      TS_TaskSequence)</li>
<li>dbcc shrinkdatabase (SMS_CEN)</li>
</ul>
<p><em>Where SMS_CEN is the name of your database&#8230;</em><br />
It is worth noting that these take a long time to run, approximately 1 hour per 10gb.</p>
<p>Thanks,<br />
SteveH</p>
<p>&nbsp;</p>


<p>Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/' rel='bookmark' title='Permanent Link: Forcing a Child Site Resync &#8211; SCCM 2007, site not found'>Forcing a Child Site Resync &#8211; SCCM 2007, site not found</a> <small>Hi there, I came across an issue recently with a...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/02/29/sccmapp-v-fixing-deployed-apps/' rel='bookmark' title='Permanent Link: SCCM/App-V &#8211; Fixing Deployed Apps'>SCCM/App-V &#8211; Fixing Deployed Apps</a> <small>Recently I had the need to do a quick and...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/' rel='bookmark' title='Permanent Link: User Security Rights &#8211; Virtual/Physical Packages'>User Security Rights &#8211; Virtual/Physical Packages</a> <small>A customer recently wanted to create a security right in Configuration...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/05/01/trials-and-tribulations-of-sccm-replication%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System Center 2012 Official Release #mms2012</title>
		<link>http://consulting.risualblogs.com/blog/2012/04/17/system-center-2012-official-release-mms2012/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/04/17/system-center-2012-official-release-mms2012/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 17:39:23 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mms2012]]></category>
		<category><![CDATA[ORCH]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SCOM]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[VMM]]></category>

		<guid isPermaLink="false">http://2.518</guid>
		<description><![CDATA[We can finally talk/blog about it&#8230;. System Center 2012 release just announced at MMS 2012 RTM code is on your VLS! Get downloading! Related posts:SCCM 2012 Release Candidate is now available System Center 2012 Configuration Manager and System Center 2012 Endpoint... It&#8217;s Official&#8230;.. we can drop the &#8217;8&#8242; It&#8217;s just been announced at MMS2012 that [...]


Related posts:<ol><li><a href='http://support.risualblogs.com/blog/2011/11/02/sccm-2012-release-candidate-is-now-available/' rel='bookmark' title='Permanent Link: SCCM 2012 Release Candidate is now available'>SCCM 2012 Release Candidate is now available</a> <small>System Center 2012 Configuration Manager and System Center 2012 Endpoint...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/04/17/its-official-we-can-drop-the-8/' rel='bookmark' title='Permanent Link: It&#8217;s Official&#8230;.. we can drop the &#8217;8&#8242;'>It&#8217;s Official&#8230;.. we can drop the &#8217;8&#8242;</a> <small>It&#8217;s just been announced at MMS2012 that the next Server...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/04/03/system-center-2012-rtm-on-msdn/' rel='bookmark' title='Permanent Link: System Center 2012 RTM on MSDN'>System Center 2012 RTM on MSDN</a> <small>All the System Center 2012 code has hit MSDN and...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>We can finally talk/blog about it&#8230;. System Center 2012 release just announced at MMS 2012 <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  RTM code is on your VLS! Get downloading!</p>


<p>Related posts:<ol><li><a href='http://support.risualblogs.com/blog/2011/11/02/sccm-2012-release-candidate-is-now-available/' rel='bookmark' title='Permanent Link: SCCM 2012 Release Candidate is now available'>SCCM 2012 Release Candidate is now available</a> <small>System Center 2012 Configuration Manager and System Center 2012 Endpoint...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/04/17/its-official-we-can-drop-the-8/' rel='bookmark' title='Permanent Link: It&#8217;s Official&#8230;.. we can drop the &#8217;8&#8242;'>It&#8217;s Official&#8230;.. we can drop the &#8217;8&#8242;</a> <small>It&#8217;s just been announced at MMS2012 that the next Server...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/04/03/system-center-2012-rtm-on-msdn/' rel='bookmark' title='Permanent Link: System Center 2012 RTM on MSDN'>System Center 2012 RTM on MSDN</a> <small>All the System Center 2012 code has hit MSDN and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/04/17/system-center-2012-official-release-mms2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Provider Error when logging in to the SCCM console as non administrator</title>
		<link>http://consulting.risualblogs.com/blog/2012/04/04/provider-error-when-logging-in-to-the-sccm-console-as-non-administrator/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/04/04/provider-error-when-logging-in-to-the-sccm-console-as-non-administrator/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 08:02:09 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ConfigMgr]]></category>
		<category><![CDATA[ConfigMgr Provider]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[System Center]]></category>

		<guid isPermaLink="false">http://2.501</guid>
		<description><![CDATA[Hi There, There are a number of underlying permissions that must be granted in order for a user to be able to successfully initiate a console session to an SCCM environment. Firstly you need to make sure the user has the correct site permissions… for example, a user requiring Remote Control access may have the [...]


Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/' rel='bookmark' title='Permanent Link: Forcing a Child Site Resync &#8211; SCCM 2007, site not found'>Forcing a Child Site Resync &#8211; SCCM 2007, site not found</a> <small>Hi there, I came across an issue recently with a...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/' rel='bookmark' title='Permanent Link: User Security Rights &#8211; Virtual/Physical Packages'>User Security Rights &#8211; Virtual/Physical Packages</a> <small>A customer recently wanted to create a security right in Configuration...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/10/12/how-to-configure-the-network-access-account-in-sccm-2012/' rel='bookmark' title='Permanent Link: How to Configure the Network Access Account in SCCM 2012'>How to Configure the Network Access Account in SCCM 2012</a> <small>Just a quick guide on where to configure the Network...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi There,</p>
<p>There are a number of underlying permissions that must be granted in order for a user to be able to successfully initiate a console session to an SCCM environment.</p>
<p>Firstly you need to make sure the user has the correct site permissions… for example, a user requiring Remote Control access may have the following user rights;</p>
<ul type="disc">
<li>Collection
<ul type="circle">
<li>Read, Use Remote Tools, Read       Resource</li>
</ul>
</li>
</ul>
<ul type="disc">
<li>Site
<ul type="circle">
<li>Read</li>
</ul>
</li>
</ul>
<p>Secondly this user must reside in the relevant site servers Local Group &#8211; &#8216;SMS Admins&#8217;. SMS Admins is generally nested in another Local Group &#8211; &#8216;Distributed COM Users&#8217;, and you need to check this is the case as well.</p>
<p>Finally, and this was the first time I&#8217;ve had to do this for a permission related issue &#8211; (and I&#8217;ve not discovered the reason why this bit of configuration had been changed or deleted) &#8211; you need to make sure that SMS Admins OR the user group containing the Remote Control users has permissions over WMI. To do this you can perform the following;</p>
<ul type="disc">
<li>Navigate to Server Manager</li>
<li>Expand Configuration</li>
<li>Select &#8216;Properties&#8217; of the      WMI Control Object</li>
<li>Select the Security Tab</li>
<li>Expand Root</li>
<li>Select the SMS Folder, and      choose Security</li>
</ul>
<ul type="disc">
<li>
<ul type="circle">
<li>SMS Admins (or the group       containing your users) should have the following permissions;
<ul type="disc">
<li>Enable Account</li>
<li>Remote Enable</li>
</ul>
</li>
</ul>
</li>
</ul>
<ul type="disc">
<li>Select the      site_&lt;SiteCode&gt; folder under SMS, and choose Security
<ul type="circle">
<li>SMS Admins (or the group       containing your users) should have the following permissions;
<ul type="disc">
<li>Execute Methods</li>
<li>Provider Write</li>
<li>Enable Account</li>
</ul>
<ul type="disc">
<li>Remote Enable</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>That should be enough for your console connectivity to return <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks,<br />
SteveH</p>
<p>&nbsp;</p>


<p>Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/' rel='bookmark' title='Permanent Link: Forcing a Child Site Resync &#8211; SCCM 2007, site not found'>Forcing a Child Site Resync &#8211; SCCM 2007, site not found</a> <small>Hi there, I came across an issue recently with a...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/' rel='bookmark' title='Permanent Link: User Security Rights &#8211; Virtual/Physical Packages'>User Security Rights &#8211; Virtual/Physical Packages</a> <small>A customer recently wanted to create a security right in Configuration...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/10/12/how-to-configure-the-network-access-account-in-sccm-2012/' rel='bookmark' title='Permanent Link: How to Configure the Network Access Account in SCCM 2012'>How to Configure the Network Access Account in SCCM 2012</a> <small>Just a quick guide on where to configure the Network...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/04/04/provider-error-when-logging-in-to-the-sccm-console-as-non-administrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forcing a Child Site Resync &#8211; SCCM 2007, site not found</title>
		<link>http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 13:22:48 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Preinst]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[Sync]]></category>

		<guid isPermaLink="false">http://2.494</guid>
		<description><![CDATA[Hi there, I came across an issue recently with a child primary site that had failed to replicate a number of resources from it&#8217;s parent site. After working through some of these issues, and rectifying the replication I needed to perform a full child resync. This is simple to do by running the following command; [...]


Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2012/03/02/deleting-a-site-system-from-sccm-is-delayed/' rel='bookmark' title='Permanent Link: Deleting a Site System from SCCM is delayed'>Deleting a Site System from SCCM is delayed</a> <small>Hi There, When the need arises to remove a Site...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/02/07/cert-publishers-2/' rel='bookmark' title='Permanent Link: Cert Publisher&#8217;s'>Cert Publisher&#8217;s</a> <small>Recently I was implementing a new PKI on a customer’s...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/10/12/how-to-configure-the-network-access-account-in-sccm-2012/' rel='bookmark' title='Permanent Link: How to Configure the Network Access Account in SCCM 2012'>How to Configure the Network Access Account in SCCM 2012</a> <small>Just a quick guide on where to configure the Network...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>I came across an issue recently with a child primary site that had failed to replicate a number of resources from it&#8217;s parent site.</p>
<p>After working through some of these issues, and rectifying the replication I needed to perform a full child resync.</p>
<p>This is simple to do by running the following command;</p>
<ul>
<li>Preinst.exe /CHILDSYNC &lt;SiteCode&gt;   ~ from the parent site</li>
</ul>
<p>However an error was returned straight away stating that;</p>
<ul>
<li>Cannot connect to SQL Database</li>
<li>&lt;SiteCode&gt; is not a known site</li>
</ul>
<p>It turned out that this was because the account that I was using to run this did not have <em>Site Modify </em>permissions on the Parent Site. These permissions also need to be assigned directly to the account (not via a Security Group)</p>
<p>Once this was done, I re-run the command and a resync occurred.</p>
<p>Thanks,<br />
Steve</p>


<p>Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2012/03/02/deleting-a-site-system-from-sccm-is-delayed/' rel='bookmark' title='Permanent Link: Deleting a Site System from SCCM is delayed'>Deleting a Site System from SCCM is delayed</a> <small>Hi There, When the need arises to remove a Site...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2012/02/07/cert-publishers-2/' rel='bookmark' title='Permanent Link: Cert Publisher&#8217;s'>Cert Publisher&#8217;s</a> <small>Recently I was implementing a new PKI on a customer’s...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/10/12/how-to-configure-the-network-access-account-in-sccm-2012/' rel='bookmark' title='Permanent Link: How to Configure the Network Access Account in SCCM 2012'>How to Configure the Network Access Account in SCCM 2012</a> <small>Just a quick guide on where to configure the Network...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/03/29/forcing-a-child-site-resync-sccm-2007-site-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCCM/App-V &#8211; Fixing Deployed Apps</title>
		<link>http://consulting.risualblogs.com/blog/2012/02/29/sccmapp-v-fixing-deployed-apps/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/02/29/sccmapp-v-fixing-deployed-apps/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 23:03:37 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[App-V]]></category>
		<category><![CDATA[App-V Client]]></category>
		<category><![CDATA[Application Virtualisation]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://2.477</guid>
		<description><![CDATA[Recently I had the need to do a quick and dirty fix of a couple of virtual applications that had been deployed to users in an environment that uses App-V with SCCM integration. Applications are advertised to users based upon AD Security Group membership and are configured to download and execute, rather than stream from [...]


Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/' rel='bookmark' title='Permanent Link: User Security Rights &#8211; Virtual/Physical Packages'>User Security Rights &#8211; Virtual/Physical Packages</a> <small>A customer recently wanted to create a security right in Configuration...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/11/02/sccm-2012-release-candidate-is-now-available/' rel='bookmark' title='Permanent Link: SCCM 2012 Release Candidate is now available'>SCCM 2012 Release Candidate is now available</a> <small>System Center 2012 Configuration Manager and System Center 2012 Endpoint...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2011/07/20/operations-manager-2012-beta-released/' rel='bookmark' title='Permanent Link: Operations Manager 2012 Beta released'>Operations Manager 2012 Beta released</a> <small>The first public beta of Operations Manager has been released...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Recently I had the need to do a quick and dirty fix of a couple of virtual applications that had been deployed to users in an environment that uses App-V with SCCM integration. Applications are advertised to users based upon AD Security Group membership and are configured to <strong>download and execute, </strong>rather than stream from a DP.</p>
<p>Without going into the reasons behind why this can happen (that&#8217;s another post) &#8211; I&#8217;ll demonstrate how to quickly resolve the error and get the user back up and running. Before proceeding make sure you have got SCCM Client Center <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>A error of this kind would be seen by the user when attempting to launch the broken application, e.g. ;</p>
<p><a href="http://consulting.risualblogs.com/blog/files/2012/02/app-v_error.png"><img class="aligncenter size-medium wp-image-478" src="http://consulting.risualblogs.com/blog/files/2012/02/app-v_error-300x180.png" alt="" width="300" height="180" /></a></p>
<ol>
<li>Find the package ID of the affected virtual application</li>
<li>Connect to the users SCCM cache (%windir%system32CCMcache) and see if the source files for the affected application are still there (use the package ID to find the folder)</li>
<li>If the cached package is still there, load SCCM client center, navigate to Agent Actions &gt; Cache and delete the package from here (this will ensure it is not orphaned)</li>
<li>From within Client Center &gt; Client Actions run a Download &amp; Apply User (or machine) policy</li>
<li>On the affected machine, restart the SMS Agent Host Service (or reboot)</li>
<li>From within Client Center &gt; Advertisements, re-run the advertisement for the failed virtual application</li>
</ol>
<p>You should now see the application begin to download into the SCCM cache, and once complete the package should register itself with the App-V client and once again be functional.</p>
<p>If this fails your App-V cache may be corrupt. To resolve this you can use SFTMIME which is a tool contained within the App-V client installation directory. The following command can be used to clear all applications from within the cache;</p>
<ul>
<li><strong>sftmime.exe remove obj:app /global /complete</strong></li>
</ul>
<p><strong>Please note, this command will <span style="text-decoration: underline">remove all applications </span>from the App-V client, and the user running the command must have administrative permissions.</strong></p>
<p>A full reference for SFTMIME can be found here;</p>
<p><a href="http://technet.microsoft.com/en-us/library/cc817090.aspx">http://technet.microsoft.com/en-us/library/cc817090.aspx</a></p>
<p>Thanks,<br />
SteveH</p>


<p>Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/' rel='bookmark' title='Permanent Link: User Security Rights &#8211; Virtual/Physical Packages'>User Security Rights &#8211; Virtual/Physical Packages</a> <small>A customer recently wanted to create a security right in Configuration...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/11/02/sccm-2012-release-candidate-is-now-available/' rel='bookmark' title='Permanent Link: SCCM 2012 Release Candidate is now available'>SCCM 2012 Release Candidate is now available</a> <small>System Center 2012 Configuration Manager and System Center 2012 Endpoint...</small></li>
<li><a href='http://consulting.risualblogs.com/blog/2011/07/20/operations-manager-2012-beta-released/' rel='bookmark' title='Permanent Link: Operations Manager 2012 Beta released'>Operations Manager 2012 Beta released</a> <small>The first public beta of Operations Manager has been released...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/02/29/sccmapp-v-fixing-deployed-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SDBINST: An installed file with the same ID was found, Error: couldn&#8217;t open SDB -</title>
		<link>http://consulting.risualblogs.com/blog/2012/02/22/sdbinst-an-installed-file-with-the-same-id-was-found-error-couldnt-open-sdb/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/02/22/sdbinst-an-installed-file-with-the-same-id-was-found-error-couldnt-open-sdb/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 16:16:05 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AppCompat]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[SHIM]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://2.474</guid>
		<description><![CDATA[Hi There, During testing of a SHIM to fix an application, I accidentally deleted the SDB file from C:WindowsAppPatchCustom, rather than using the sdbinst -u &#60;guid&#62; command to uninstall properly. Whilst attempting to re-run this command I was hit with the following error; This error was preventing me from using sdbinst to reinstall the SHIM. The [...]


Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2011/10/27/server-manager-iis-error-webdav/' rel='bookmark' title='Permanent Link: Server Manager IIS Error &#8211; WebDAV'>Server Manager IIS Error &#8211; WebDAV</a> <small>I came across the following error message recently whilst troubleshooting...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/06/09/service-manager-2010-sp1-cu2-install-fails-with-an-error-occurred-while-executing-a-custom-action_executesqlscripts/' rel='bookmark' title='Permanent Link: Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;'>Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;</a> <small>You receive the following error when installing Cumulative Update 2...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/07/29/prerequisite-not-satisfied-message-queuing-server-msmq-and-message-queuing-directory-service-integration-must-be-installed-before-attempting-to-install-this-product-msmq-must-not-be-in-workgroup-o/' rel='bookmark' title='Permanent Link: Prerequisite not satisfied: Message Queuing Server (MSMQ) and Message Queuing Directory Service Integration must be installed before attempting to install this product. MSMQ must not be in workgroup operation mode.'>Prerequisite not satisfied: Message Queuing Server (MSMQ) and Message Queuing Directory Service Integration must be installed before attempting to install this product. MSMQ must not be in workgroup operation mode.</a> <small>You receive the following error in the Lync Deployment Wizard...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi There,</p>
<p>During testing of a SHIM to fix an application, I accidentally deleted the SDB file from C:WindowsAppPatchCustom, rather than using the sdbinst -u &lt;guid&gt; command to uninstall properly. Whilst attempting to re-run this command I was hit with the following error;</p>
<p><a href="http://consulting.risualblogs.com/blog/files/2012/02/sdb_uninstall.png"><img class="aligncenter size-medium wp-image-475" src="http://consulting.risualblogs.com/blog/files/2012/02/sdb_uninstall-300x30.png" alt="" width="300" height="30" /></a></p>
<p>This error was preventing me from using sdbinst to reinstall the SHIM.</p>
<p>The solution is pretty simple &#8211; there are two locations in the registry that need removing;</p>
<ul>
<li>HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall&lt;GUID&gt;.sdb</li>
<li>HKLMSoftwareMicrosoftWindows NTCurrentVersionAppCompatFlagsInstalledSDB&lt;GUID&gt;</li>
</ul>
<p>Delete these and you will then be able to re-import your custom SHIM.</p>
<p>Thanks<br />
SteveH</p>


<p>Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2011/10/27/server-manager-iis-error-webdav/' rel='bookmark' title='Permanent Link: Server Manager IIS Error &#8211; WebDAV'>Server Manager IIS Error &#8211; WebDAV</a> <small>I came across the following error message recently whilst troubleshooting...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/06/09/service-manager-2010-sp1-cu2-install-fails-with-an-error-occurred-while-executing-a-custom-action_executesqlscripts/' rel='bookmark' title='Permanent Link: Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;'>Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;</a> <small>You receive the following error when installing Cumulative Update 2...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/07/29/prerequisite-not-satisfied-message-queuing-server-msmq-and-message-queuing-directory-service-integration-must-be-installed-before-attempting-to-install-this-product-msmq-must-not-be-in-workgroup-o/' rel='bookmark' title='Permanent Link: Prerequisite not satisfied: Message Queuing Server (MSMQ) and Message Queuing Directory Service Integration must be installed before attempting to install this product. MSMQ must not be in workgroup operation mode.'>Prerequisite not satisfied: Message Queuing Server (MSMQ) and Message Queuing Directory Service Integration must be installed before attempting to install this product. MSMQ must not be in workgroup operation mode.</a> <small>You receive the following error in the Lync Deployment Wizard...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/02/22/sdbinst-an-installed-file-with-the-same-id-was-found-error-couldnt-open-sdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diskpart during an OSD Task Sequence</title>
		<link>http://consulting.risualblogs.com/blog/2012/01/13/diskpart-during-an-osd-task-sequence/</link>
		<comments>http://consulting.risualblogs.com/blog/2012/01/13/diskpart-during-an-osd-task-sequence/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 09:57:17 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Diskpart]]></category>
		<category><![CDATA[OSD]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Task Sequence]]></category>

		<guid isPermaLink="false">http://2.431</guid>
		<description><![CDATA[Whilst at a customer recently I had a requirement to run a &#8216;Diskpart /Clean&#8217; at the start of a task sequence to remove any encryption on the drive, in this case McAfee. I have done this several times in the past however always hit a few niggles so thought I would blog to refer to [...]


Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2011/07/03/bitlocker-windows-7-and-sccm-task-sequences/' rel='bookmark' title='Permanent Link: Bitlocker, Windows 7 and SCCM Task Sequences'>Bitlocker, Windows 7 and SCCM Task Sequences</a> <small>I had the following scenario, Windows 7 Enterprise deployment enabling...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/12/01/running-exchange-powershell-as-scheduled-task/' rel='bookmark' title='Permanent Link: Running Exchange PowerShell as Scheduled Task'>Running Exchange PowerShell as Scheduled Task</a> <small>If you want to run any of the Exchange PowerShell...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/07/29/getting-bit-locker-encryption-status-from-command-line/' rel='bookmark' title='Permanent Link: Getting Bit locker Encryption Status from command line'>Getting Bit locker Encryption Status from command line</a> <small>After deploying a few new laptops in our organisation I...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Whilst at a customer recently I had a requirement to run a &#8216;<strong>Diskpart /Clean&#8217; </strong>at the start of a task sequence to remove any encryption on the drive, in this case McAfee. I have done this several times in the past however always hit a few niggles so thought I would blog to refer to in the future <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The easiest way to do this is to perform the following;</p>
<ol>
<li>Mount your Windows PE image(s) to a directory</li>
<li>Create a text file called &#8216;CleanPartitions.txt&#8217; (for arguments sake), with the following content;
<ul>
<li>Select Disk 0</li>
<li>Clean</li>
</ul>
</li>
<li>Copy this text file to &#8216;&lt;Mounted Folder&gt;WindowsSystem32&#8242; (again, for arguments sake)</li>
<li>Commit the mounted folder back to the .WIM</li>
</ol>
<p>In your task sequence, before the standard &#8216;Format and Partition Disk&#8217; phase, perform the following;</p>
<ol>
<li>Add a &#8216;Run Command Line&#8217; task</li>
<li>In the &#8216;Command Line:&#8217; text area, type;
<ul>
<li>diskpart.exe /s &#8220;%windir%system32CleanPartitions.txt&#8221;</li>
</ul>
</li>
<li>Disable 64-bit file redirection</li>
<li>Save the task sequence</li>
</ol>
<p>This should now run successfully and remove any encryption on the drive <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It is worth noting that this will only work in a Lite-touch situation as you will need to either PXE-boot or use bootable media. There is a solution that McAfee have released that allows you to perform this end-to-end in a Zero-Touch situation that I will blog about soon.</p>
<p>Cheers</p>
<p>SteveH</p>


<p>Related posts:<ol><li><a href='http://consulting.risualblogs.com/blog/2011/07/03/bitlocker-windows-7-and-sccm-task-sequences/' rel='bookmark' title='Permanent Link: Bitlocker, Windows 7 and SCCM Task Sequences'>Bitlocker, Windows 7 and SCCM Task Sequences</a> <small>I had the following scenario, Windows 7 Enterprise deployment enabling...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/12/01/running-exchange-powershell-as-scheduled-task/' rel='bookmark' title='Permanent Link: Running Exchange PowerShell as Scheduled Task'>Running Exchange PowerShell as Scheduled Task</a> <small>If you want to run any of the Exchange PowerShell...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/07/29/getting-bit-locker-encryption-status-from-command-line/' rel='bookmark' title='Permanent Link: Getting Bit locker Encryption Status from command line'>Getting Bit locker Encryption Status from command line</a> <small>After deploying a few new laptops in our organisation I...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2012/01/13/diskpart-during-an-osd-task-sequence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Manager IIS Error &#8211; WebDAV</title>
		<link>http://consulting.risualblogs.com/blog/2011/10/27/server-manager-iis-error-webdav/</link>
		<comments>http://consulting.risualblogs.com/blog/2011/10/27/server-manager-iis-error-webdav/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 15:05:07 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[OSD]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[WebDAV]]></category>

		<guid isPermaLink="false">http://2.357</guid>
		<description><![CDATA[I came across the following error message recently whilst troubleshooting an SCCM Distribution Point; &#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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; There was an error while performing this operation. Details: Filename: \?C:inetpubwwwrootweb.config Line number: &#60;LineNumber&#62; Error:  Cannot add duplicate collection entry of type &#8216;&#60;XXX&#62;&#8216; with unique key attribute &#8216;&#60;YYY&#62;&#8216; set to &#8216;&#60;ZZZ&#62;&#8216;. &#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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Client&#8217;s were downloading packages via SMB rather than [...]


Related posts:<ol><li><a href='http://support.risualblogs.com/blog/2011/08/11/hresult-0x800f0818-unable-to-addmodify-roles-or-features-through-server-manager-or-powershell-after-installing-updates/' rel='bookmark' title='Permanent Link: HRESULT: 0x800f0818 Unable to add/modify Roles or Features through Server Manager or Powershell after installing updates'>HRESULT: 0x800f0818 Unable to add/modify Roles or Features through Server Manager or Powershell after installing updates</a> <small>After installing numerous Windows Updates, usually when bringing a newly...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/06/09/service-manager-2010-sp1-cu2-install-fails-with-an-error-occurred-while-executing-a-custom-action_executesqlscripts/' rel='bookmark' title='Permanent Link: Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;'>Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;</a> <small>You receive the following error when installing Cumulative Update 2...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/09/20/the-download-of-anti-spam-updates-failed-with-an-error/' rel='bookmark' title='Permanent Link: The download of anti-spam updates failed with an error'>The download of anti-spam updates failed with an error</a> <small>We were having a few SCOM alerts each day to...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I came across the following error message recently whilst troubleshooting an SCCM Distribution Point;</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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
There was an error while performing this operation.</p>
<p>Details:<br />
Filename: \?C:inetpubwwwrootweb.config<br />
Line number: <var>&lt;LineNumber&gt;</var><br />
Error:  Cannot add duplicate collection entry of type &#8216;<var>&lt;XXX&gt;</var>&#8216; with unique key attribute &#8216;<var>&lt;YYY&gt;</var>&#8216; set to &#8216;<var>&lt;ZZZ&gt;</var>&#8216;.<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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Client&#8217;s were downloading packages via SMB rather than over HTTP which prompted me to check if WebDAV had been configured&#8230; upon clicking on the WebDAV feature configuration page the error appeared.</p>
<p>Turns out this was quite a simple fix &#8211; WebDAV had been configured at the Server Level, rather than at the Site level which a) resulted in this error and b) seemingly broke WebDAV and was the cause of the issue with the DP. Simply delete the configuration at the Server Level, and set your configuration at the site level.</p>
<p>Thanks<br />
SteveH</p>
<p>&nbsp;</p>


<p>Related posts:<ol><li><a href='http://support.risualblogs.com/blog/2011/08/11/hresult-0x800f0818-unable-to-addmodify-roles-or-features-through-server-manager-or-powershell-after-installing-updates/' rel='bookmark' title='Permanent Link: HRESULT: 0x800f0818 Unable to add/modify Roles or Features through Server Manager or Powershell after installing updates'>HRESULT: 0x800f0818 Unable to add/modify Roles or Features through Server Manager or Powershell after installing updates</a> <small>After installing numerous Windows Updates, usually when bringing a newly...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/06/09/service-manager-2010-sp1-cu2-install-fails-with-an-error-occurred-while-executing-a-custom-action_executesqlscripts/' rel='bookmark' title='Permanent Link: Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;'>Service Manager 2010 SP1 CU2 install fails with &ldquo;An error occurred while executing a custom action:_ExecuteSqlScripts&rdquo;</a> <small>You receive the following error when installing Cumulative Update 2...</small></li>
<li><a href='http://support.risualblogs.com/blog/2011/09/20/the-download-of-anti-spam-updates-failed-with-an-error/' rel='bookmark' title='Permanent Link: The download of anti-spam updates failed with an error'>The download of anti-spam updates failed with an error</a> <small>We were having a few SCOM alerts each day to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2011/10/27/server-manager-iis-error-webdav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out of Band Management console issues &#8211; SCCM</title>
		<link>http://consulting.risualblogs.com/blog/2011/08/11/out-of-band-management-console-issues-sccm/</link>
		<comments>http://consulting.risualblogs.com/blog/2011/08/11/out-of-band-management-console-issues-sccm/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 16:41:18 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[OOB]]></category>
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://2.311</guid>
		<description><![CDATA[Whilst recently implementing out of band management for a customer, I had an issue whereby the out of band console would not connect to any provisioned system. The connection status transitioned between; connecting, busy, disconnected and the oobconsole.log file stated; GetAMTPowerState fail with result: 0x80072EE9 The power control options provided by OOB worked fine, &#8211; however [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Whilst recently implementing out of band management for a customer, I had an issue whereby the out of band console would not connect to any provisioned system. The connection status transitioned between; connecting, busy, disconnected and the oobconsole.log file stated;</p>
<p><span style="color: #ff0000"><strong>GetAMTPowerState fail with result: 0x80072EE9 </strong></span></p>
<p>The power control options provided by OOB worked fine, &#8211; however these utilise TLS authentication as opposed to HTTPS for the console. Certificates are often the cause of much headache in OOB and after some searching came across a rep on the Intel vPro website suggesting that if the AMT web server certificate (issued to all AMT clients) was issued by a subordinate CA then to attempt adding this into the trusted root certificates for the local computer (that is running the OOB console)</p>
<p>Hallelujah! The console then connected fine <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2011/08/11/out-of-band-management-console-issues-sccm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Security Rights &#8211; Virtual/Physical Packages</title>
		<link>http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/</link>
		<comments>http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 15:03:21 +0000</pubDate>
		<dc:creator>steveh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[App-V]]></category>
		<category><![CDATA[Application Virtualisation]]></category>
		<category><![CDATA[Configuration Manager 2007]]></category>
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://2.306</guid>
		<description><![CDATA[A customer recently wanted to create a security right in Configuration Manager that allowed a user to create packages; both physical and virtual whilst restricting access to the other components in the console. At first glance this seems a fairly trivial task &#8211; create a group and add it as an user security right in SCCM, then [...]


Related posts:<ol><li><a href='http://support.risualblogs.com/blog/2011/06/20/the-virtual-machine-could-not-be-started-because-the-hypervisor-is-not-running/' rel='bookmark' title='Permanent Link: The virtual machine could not be started because the hypervisor is not running.'>The virtual machine could not be started because the hypervisor is not running.</a> <small>We came across an issue recently where we had an...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>A customer recently wanted to create a security right in Configuration Manager that allowed a user to create packages; both physical and virtual whilst restricting access to the other components in the console.</p>
<p>At first glance this seems a fairly trivial task &#8211; create a group and add it as an user security right in SCCM, then assign the required classes &#8211; in this case;</p>
<ul>
<li>Collection &#8211; Read</li>
<li>Package &#8211; Full</li>
</ul>
<p>This had the desired effect for physical packages however the option to create a virtual application package was gone. <img src='http://risualblogs.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Several minutes of adding each class one at a time found that the &#8216;Site&#8217; class with &#8216;Read&#8217; and &#8216;Manage SQL Commands&#8217; is required to display the option to create a virtual package. This complicates things a little as it allows users to make changes to certain attributes in the &#8216;Site Settings&#8217; section &#8211; to mitigate this I added instance security rights to the primary site node giving the group I had created no permissions.</p>
<p>Cheers,</p>
<p>&nbsp;</p>


<p>Related posts:<ol><li><a href='http://support.risualblogs.com/blog/2011/06/20/the-virtual-machine-could-not-be-started-because-the-hypervisor-is-not-running/' rel='bookmark' title='Permanent Link: The virtual machine could not be started because the hypervisor is not running.'>The virtual machine could not be started because the hypervisor is not running.</a> <small>We came across an issue recently where we had an...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://consulting.risualblogs.com/blog/2011/08/01/user-security-rights-virtualphysical-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

