<?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>CCMEXEC.COM - System Center blog</title>
	<atom:link href="http://ccmexec.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ccmexec.com</link>
	<description>CCMEXEC.COM - by Jörgen Nilsson</description>
	<lastBuildDate>Fri, 18 May 2012 19:33:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding a Collection ID prompt to &#8220;Computers not inventoried recently&#8230;&#8221;</title>
		<link>http://ccmexec.com/2012/05/adding-a-collection-id-prompt-to-%e2%80%9ccomputers-not-inventoried-recently/</link>
		<comments>http://ccmexec.com/2012/05/adding-a-collection-id-prompt-to-%e2%80%9ccomputers-not-inventoried-recently/#comments</comments>
		<pubDate>Thu, 17 May 2012 14:04:32 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1985</guid>
		<description><![CDATA[There was a question asked on the Technet forum today on how to make the builtin report in SCCM 2007 “Computers not inventoried recently (in a specified number of days)” to be filtered per Collection and prompt for a CollectionID.
The updated report looks like this, the changes made are in bold letters:

SELECT INST.SMS_Installed_Sites0, SYS.Netbios_Name0, SYS.User_Domain0, SYS.User_Name0, @varcollection as [...]]]></description>
			<content:encoded><![CDATA[<p>There was a question asked on the Technet forum today on how to make the builtin report in SCCM 2007 “Computers not inventoried recently (in a specified number of days)” to be filtered per Collection and prompt for a CollectionID.</p>
<p>The updated report looks like this, the changes made are in bold letters:<br />
<code><br />
SELECT INST.SMS_Installed_Sites0, SYS.Netbios_Name0, SYS.User_Domain0, SYS.User_Name0, <strong>@varcollection as 'Collection'</strong>, SYS.Resource_Domain_OR_Workgr0, HWSCAN.LastHWScan, DateDiff(Day,</code></p>
<p><code>CASE WHEN IsNULL(HWSCAN.LastHWScan,'1/1/1980') &gt; IsNULL(SWSCAN.LastScanDate,'1/1/1980')</code></p>
<p><code>THEN HWSCAN.LastHWScan</code></p>
<p><code> </code></p>
<p><code>ELSE SWSCAN.LastScanDate</code></p>
<p><code>END</code></p>
<p><code>,GetDate()) AS C053,</p>
<p>SWSCAN.LastScanDate, SWSCAN.LastCollectedFileScanDate</p>
<p>FROM v_R_System SYS</p>
<p>LEFT JOIN v_GS_LastSoftwareScan SWSCAN on SYS.ResourceID = SWSCAN.ResourceID</p>
<p>LEFT JOIN v_GS_WORKSTATION_STATUS HWSCAN on SYS.ResourceID = HWSCAN.ResourceID</p>
<p>LEFT OUTER JOIN v_RA_System_SMSInstalledSites INST ON SYS.ResourceID = INST.ResourceID</p>
<p><strong>Left  join v_FullCollectionMembership FCM on FCM.ResourceID = SYS.ResourceID</strong></p>
<p>WHERE</p>
<p>DateDiff(Day,</p>
<p>CASE WHEN IsNULL(HWSCAN.LastHWScan,'1/1/1980') &gt; IsNULL(SWSCAN.LastScanDate,'1/1/1980')</p>
<p>THEN HWSCAN.LastHWScan</p>
<p>ELSE SWSCAN.LastScanDate</p>
<p>END</p>
<p>,GetDate()) &gt;= @variable</p>
<p><strong>AND Client0=1 and FCM.CollectionID = @varcollection </strong></p>
<p></code></p>
<p><code>Order By INST.SMS_Installed_Sites0, SYS.Netbios_Name0<br />
</code><br />
To implement it either change the report or paste this in a new report and create to Prompts, one for Days called <strong>variable</strong> and one for CollectionID called <strong>varcollection</strong>.<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/query.PNG"><img class="aligncenter size-full wp-image-1991" title="query" src="http://ccmexec.com/wp-content/uploads/2012/05/query.PNG" alt="query" width="428" height="363" /></a></p>
<p>There is no prompt query for the original Report ID:74 as it is days it asks for, the prompt query for CollectionID can be found here:</p>
<p><code>begin</code></p>
<p><code>if (@__filterwildcard = '')</code></p>
<p><code>select distinct CollectionID, Name from v_Collection order by  Name</code></p>
<p><code>else</code></p>
<p><code>select distinct CollectionID, Name from v_Collection</code></p>
<p><code>WHERE CollectionID like @__filterwildcard</code></p>
<p><code>order by Name</code></p>
<p>end</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F05%2Fadding-a-collection-id-prompt-to-%25e2%2580%259ccomputers-not-inventoried-recently%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/05/adding-a-collection-id-prompt-to-%e2%80%9ccomputers-not-inventoried-recently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding language support in ConfigMgr 2012 after installation</title>
		<link>http://ccmexec.com/2012/05/adding-language-support-in-configmgr-2012-after-installation/</link>
		<comments>http://ccmexec.com/2012/05/adding-language-support-in-configmgr-2012-after-installation/#comments</comments>
		<pubDate>Wed, 09 May 2012 05:44:05 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1954</guid>
		<description><![CDATA[In some scenarios where you would install System Center 2012 Configuration Manager you install the languages you need, but when your company is expanding you will need to install additional languages. In ConfigMgr 2012 we don&#8217;t have any International Client Packs which was the case for earlier versions, instead the languages are selected and installed [...]]]></description>
			<content:encoded><![CDATA[<p>In some scenarios where you would install System Center 2012 Configuration Manager you install the languages you need, but when your company is expanding you will need to install additional languages. In ConfigMgr 2012 we don&#8217;t have any International Client Packs which was the case for earlier versions, instead the languages are selected and installed during setup.</p>
<p>So how do I add a new client language afterwards? Or add support for running the Configuration Manager Console in a different language? It is done by using the &#8220;Configuration Manager Setup&#8221; which can be found on the Start menu or by simply running install from the installation source.</p>
<p>When the setup starts select the &#8220;Perform site maintenance or reset this Site&#8221; in the following wizard you can then add languages as you need them.</p>
<p>Here is a step-by-step guide:</p>
<ol>
<li>Start Configuration Manager Setup either from the start menu or the installation source.</li>
<li>Select the &#8220;Perform site maintenance or reset Site&#8221; option<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_.PNG"><img class="aligncenter size-full wp-image-1955" title="Addlanguage_!" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_.PNG" alt="Addlanguage_!" width="600" height="449" /></a></li>
<li>Then you get the option to Modify language configuration, it is also here you can convert from an eval installation and enter a license.<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_2.PNG"><img class="aligncenter size-full wp-image-1956" title="Addlanguage_2" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_2.PNG" alt="Addlanguage_2" width="602" height="450" /></a></li>
<li>In the next dialog we need to either download the prerequisite files again or point to the directory where they where used for the intial installation of the Site Server.<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_3.PNG"><img class="aligncenter size-full wp-image-1957" title="Addlanguage_3" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_3.PNG" alt="Addlanguage_3" width="603" height="450" /></a></li>
<li>The next screen offers the option to server languages, here you can add language support for the Configuration Manager Console.<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_4.PNG"><img class="aligncenter size-full wp-image-1958" title="Addlanguage_4" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_4.PNG" alt="Addlanguage_4" width="600" height="450" /></a></li>
<li>Then we get to the dialog were we can add Client language support, in my case I want to add Swedish<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_5.PNG"><img class="aligncenter size-full wp-image-1959" title="Addlanguage_5" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_5.PNG" alt="Addlanguage_5" width="602" height="450" /></a></li>
<li>Then we are ready to complete the installation<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_6.PNG"><img class="aligncenter size-full wp-image-1960" title="Addlanguage_6" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_6.PNG" alt="Addlanguage_6" width="601" height="450" /></a></li>
<li>Adding Swedish client language support took 8 seconds! <img src='http://ccmexec.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_7.PNG"><img class="aligncenter size-full wp-image-1961" title="Addlanguage_7" src="http://ccmexec.com/wp-content/uploads/2012/05/Addlanguage_7.PNG" alt="Addlanguage_7" width="599" height="449" /></a>After the installation of the language support is done the ConfigMgr clients that should have the new updated language must have the client reinstalled. This can be done using any preferred client deployment method.<br />
Done!</li>
</ol>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F05%2Fadding-language-support-in-configmgr-2012-after-installation%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/05/adding-language-support-in-configmgr-2012-after-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unattended installation of SCCM 2007 Admin Console including R3 &amp; FEP</title>
		<link>http://ccmexec.com/2012/05/unattended-installation-of-sccm-2007-admin-console-including-r3-fep/</link>
		<comments>http://ccmexec.com/2012/05/unattended-installation-of-sccm-2007-admin-console-including-r3-fep/#comments</comments>
		<pubDate>Mon, 07 May 2012 10:21:13 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>
		<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[FEP 2010]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1936</guid>
		<description><![CDATA[I wrote a post a while back on how to install the SCCM 2007 Admin Console including R3 and required hotfixes: http://ccmexec.com/2012/01/unattended-installation-of-sccm-2007-admin-console-including-r3/
In that post i also promised to write a post on how to install the SCCM 2007 Admin Console + R3 + FEP.
It turned out to be a bit of a challenge as the FEP [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote a post a while back on how to install the SCCM 2007 Admin Console including R3 and required hotfixes: <a href=" http://ccmexec.com/2012/01/unattended-installation-of-sccm-2007-admin-console-including-r3/">http://ccmexec.com/2012/01/unattended-installation-of-sccm-2007-admin-console-including-r3/</a></p>
<p>In that post i also promised to write a post on how to install the SCCM 2007 Admin Console + R3 + FEP.<br />
It turned out to be a bit of a challenge as the FEP installation is either 32 or 64 bit depending on the operating system you install the admin console on. After a re-write here is the updated script, I used the RTM version of FEP and included the Update Rollup 1 in the script, so if you are using the updated media remove the part in the script and the folder for the KB.</p>
<p>The script has been tested on Windows 7 32 &amp; 64 bit, the SCCM console will be installed to &#8220;C:\program Files\Configuration Manager 2007&#8243; or &#8220;C:\program files(x86)\Configuration Manager 2007&#8243; depending on the operating system architecture.</p>
<p>To implement it the following steps are needed:</p>
<ol>
<li> Download the ZIP-file containing the script and folder structure: <a href="http://ccmexec.com/wp-content/uploads/2012/05/Adminconsole_sp2r3.zip">Adminconsole_sp2_r3</a></li>
<li>Unzip the files and folder to a catalog which will be used as source folder.</li>
<li>Copy the necessary source files to the different directories from the original media:<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP1.PNG"><img class="aligncenter size-full wp-image-1938" title="adminconsooleinstall_FEP1" src="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP1.PNG" alt="adminconsooleinstall_FEP1" width="596" height="192" /></a> Tip: you can skip the &#8220;WAIK&#8221; folder in the Configuration Manager 2007 Sp2 source files, then you will save a lot of disk space.</li>
<li>As the FEP files and updates are both 32 and 64 bits the FEP_Console folder is divided in a 32 and 64 bit folder:<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP4.PNG"><img class="aligncenter size-full wp-image-1939" title="adminconsooleinstall_FEP4" src="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP4.PNG" alt="adminconsooleinstall_FEP4" width="595" height="99" /></a></li>
<li>The same goes for the FEP Update rollup 1 update, although they are not named the same and can be placed int the same folder. The update can be downloaded here: <a href="http://support.microsoft.com/kb/2551095">http://support.microsoft.com/kb/2551095</a></li>
<li><a href="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP5.PNG"><img class="aligncenter size-full wp-image-1940" title="adminconsooleinstall_FEP5" src="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP5.PNG" alt="adminconsooleinstall_FEP5" width="594" height="84" /></a>When all the source files are copied to their correct location, create a package using the folder created earlier with folder containing the &#8220;Install_FEP.vbs&#8221; as source folder.</li>
<li>On the &#8220;Reporting&#8221; tab for the newly created package enter the below information, as the hotfix for SCCM 2007 R3 restarts many services including SMS Agent Host the script will generate a .MIF file which is the only way of reporting back that the installation was successful:<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP3.PNG"><img class="aligncenter size-full wp-image-1941" title="adminconsooleinstall_FEP3" src="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP3.PNG" alt="adminconsooleinstall_FEP3" width="402" height="486" /></a></li>
<li>Distribute the content to the DP&#8217;s</li>
<li>Create a new program with the following command line &#8220;cscript.exe fep_install.vbs&#8221;<br />
<a href="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP2.PNG"><img class="aligncenter size-full wp-image-1942" title="adminconsooleinstall_FEP2" src="http://ccmexec.com/wp-content/uploads/2012/05/adminconsooleinstall_FEP2.PNG" alt="adminconsooleinstall_FEP2" width="404" height="465" /></a></li>
<li>Then advertise the program to a test collection and verify that everything is working as expected.</li>
</ol>
<p>I hope it will be useful!</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F05%2Funattended-installation-of-sccm-2007-admin-console-including-r3-fep%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/05/unattended-installation-of-sccm-2007-admin-console-including-r3-fep/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SCCM Report Installed application per subnet</title>
		<link>http://ccmexec.com/2012/05/sccm-report-installed-application-per-subnet/</link>
		<comments>http://ccmexec.com/2012/05/sccm-report-installed-application-per-subnet/#comments</comments>
		<pubDate>Thu, 03 May 2012 12:32:57 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1933</guid>
		<description><![CDATA[Wrote this as an answer to a Technet forum question, it will list all Microsoft Office applications for a specific subnet. It can easily be changed to filter on more than one subnet and different applications.

select ip.IP_Subnets0 [Subnet], sys.Name0 [Name], DisplayName0
from v_R_System sys
join v_RA_System_IPSubnets ip on ip.ResourceID = sys.ResourceID join v_GS_ADD_REMOVE_PROGRAMS on v_GS_ADD_REMOVE_PROGRAMS.ResourceID =  sys.ResourceID
Where IP_Subnets0 [...]]]></description>
			<content:encoded><![CDATA[<p>Wrote this as an answer to a Technet forum question, it will list all Microsoft Office applications for a specific subnet. It can easily be changed to filter on more than one subnet and different applications.</p>
<p><code></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">select ip.IP_Subnets0 [Subnet], sys.Name0 [Name], DisplayName0</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">from v_R_System sys</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">join v_RA_System_IPSubnets ip on ip.ResourceID = sys.ResourceID join v_GS_ADD_REMOVE_PROGRAMS on v_GS_ADD_REMOVE_PROGRAMS.ResourceID =  sys.ResourceID</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Where IP_Subnets0 = '192.168.1.0' and Displayname0 like 'Microsoft Office%'</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">order by ip.IP_Subnets0, sys.Name0</div>
<p>select ip.IP_Subnets0 [Subnet], sys.Name0 [Name], DisplayName0</p>
<p>from v_R_System sys</p>
<p>join v_RA_System_IPSubnets ip on ip.ResourceID = sys.ResourceID join v_GS_ADD_REMOVE_PROGRAMS on v_GS_ADD_REMOVE_PROGRAMS.ResourceID =  sys.ResourceID</p>
<p>Where IP_Subnets0 = '192.168.1.0' and Displayname0 like 'Microsoft Office%'</p>
<p></code></p>
<p><code>order by ip.IP_Subnets0, sys.Name0<br />
</code></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F05%2Fsccm-report-installed-application-per-subnet%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/05/sccm-report-installed-application-per-subnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ConfigMgr 2012 SQL Server Supported configuration updated</title>
		<link>http://ccmexec.com/2012/04/configmgr-2012-sql-server-supported-configuration-updated/</link>
		<comments>http://ccmexec.com/2012/04/configmgr-2012-sql-server-supported-configuration-updated/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 20:45:38 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1928</guid>
		<description><![CDATA[In the April update of the Technet documentation library there are an important change, and that is the Supported SQL Server 2008 R2 Sp1 CU version is now 6, so make sure to apply it!
Here is a part of the post:
What&#8217;s New in the Documentation Library for System Center 2012 Configuration Manager, April 2012
The following [...]]]></description>
			<content:encoded><![CDATA[<p>In the April update of the Technet documentation library there are an important change, and that is the Supported SQL Server 2008 R2 Sp1 CU version is now <strong>6, </strong>so make sure to apply it!</p>
<p>Here is a part of the post:</p>
<p><strong>What&#8217;s New in the Documentation Library for System Center 2012 Configuration Manager, April 2012</strong></p>
<p>The following information lists the topics that contain significant changes since the March 2012 update.</p>
<p><a href="http://technet.microsoft.com/en-us/library/gg682077.aspx"><span style="color: #0000ff;">Supported Configurations for Configuration Manager</span></a><a href="http://technet.microsoft.com/en-us/library/gg712312.aspx"></a></p>
<p>- Updated for the following updates and clarifications:</p>
<ul>
<li>The supported version of SQL Server from<strong> </strong><strong>SQL Server 2008 R2 with SP1 and Cumulative Update 4</strong> to <strong>SQL Server 2008 R2 with SP1 and Cumulative Update 6</strong>.</li>
</ul>
<p>The whole post with the updates can be read here:</p>
<p><a href="http://blogs.technet.com/b/configmgrteam/archive/2012/04/26/announcement-configuration-manager-documentation-library-update-for-april-2012.aspx">http://blogs.technet.com/b/configmgrteam/archive/2012/04/26/announcement-configuration-manager-documentation-library-update-for-april-2012.aspx</a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F04%2Fconfigmgr-2012-sql-server-supported-configuration-updated%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/04/configmgr-2012-sql-server-supported-configuration-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuration Manager Service Manager</title>
		<link>http://ccmexec.com/2012/04/configuration-manager-service-manager/</link>
		<comments>http://ccmexec.com/2012/04/configuration-manager-service-manager/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 23:08:20 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1921</guid>
		<description><![CDATA[A question I get asked many times is &#8220;Where can I find the Configuration Manager Service Manager in ConfigMgr2012?&#8221; so I thought I would post it here.
The Configuration Manager Service Manager is still needed in ConfigMgr 2012 to change location of log files, start/stop components and check there status and much more.
The look is the [...]]]></description>
			<content:encoded><![CDATA[<p>A question I get asked many times is &#8220;Where can I find the Configuration Manager Service Manager in ConfigMgr2012?&#8221; so I thought I would post it here.<br />
The Configuration Manager Service Manager is still needed in ConfigMgr 2012 to change location of log files, start/stop components and check there status and much more.</p>
<p>The look is the same as before:</p>
<p style="text-align: center;"><a href="http://ccmexec.com/wp-content/uploads/2012/04/servicemanager2.PNG"><img class="aligncenter size-full wp-image-1922" title="servicemanager2" src="http://ccmexec.com/wp-content/uploads/2012/04/servicemanager2.PNG" alt="servicemanager2" width="865" height="494" /></a></p>
<p>And it can be launched either from Component Status or Site Status under Start in the Ribbon:</p>
<p><a href="http://ccmexec.com/wp-content/uploads/2012/04/servicemanager1.PNG"><img class="aligncenter size-full wp-image-1923" title="servicemanager1" src="http://ccmexec.com/wp-content/uploads/2012/04/servicemanager1.PNG" alt="servicemanager1" width="590" height="428" /></a></p>
<p>Enjoy</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F04%2Fconfiguration-manager-service-manager%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/04/configuration-manager-service-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at Techdays Sweden</title>
		<link>http://ccmexec.com/2012/04/speaking-at-techdays-sweden/</link>
		<comments>http://ccmexec.com/2012/04/speaking-at-techdays-sweden/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 08:46:17 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1880</guid>
		<description><![CDATA[Tomorrow it is time for Techdays Sweden in Örebro, the pre-conference has already started!
I will do a session called &#8220;Framtidens klienthantering&#8221; with a focus on the newly released System Center 2012 &#8211; Configuration Manager and perhaps some more interesting technology around client management?!
I hope to see you there!
http://www.techdays.se/sessioner#/sessions/7533




]]></description>
			<content:encoded><![CDATA[<p>Tomorrow it is time for Techdays Sweden in Örebro, the pre-conference has already started!</p>
<p>I will do a session called &#8220;Framtidens klienthantering&#8221; with a focus on the newly released System Center 2012 &#8211; Configuration Manager and perhaps some more interesting technology around client management?!</p>
<p>I hope to see you there!</p>
<p><a href="http://www.techdays.se/sessioner#/sessions/7533">http://www.techdays.se/sessioner#/sessions/7533</a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F04%2Fspeaking-at-techdays-sweden%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/04/speaking-at-techdays-sweden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Extended Experts Team &#8211; MEET</title>
		<link>http://ccmexec.com/2012/04/microsoft-extended-experts-team-meet/</link>
		<comments>http://ccmexec.com/2012/04/microsoft-extended-experts-team-meet/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 12:30:05 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1906</guid>
		<description><![CDATA[As a proud member of the Microsoft Extended Experts Team &#8211; MEET, I am really looking forward to meet many of them at Techdays 2012 in Örebro this week. If you haven’t booked you ticket to TechDays Sweden yet, I think you should because there’s still some available!
Go get your ticket to TechDays here.
MEET is [...]]]></description>
			<content:encoded><![CDATA[<p>As a proud member of the Microsoft Extended Experts Team &#8211; MEET, I am really looking forward to meet many of them at Techdays 2012 in Örebro this week. If you haven’t booked you ticket to TechDays Sweden yet, I think you should because there’s still some available!<br />
<a href="http://www.techdays.se/">Go get your ticket to TechDays here</a>.</p>
<p>MEET is a network which consists of 30 individuals, all experts within one or more areas of Microsoft technology from development to security, virtualization, System Center and more, for more information about meet : <a href="http://technet.microsoft.com/sv-se/cc299419">MEET</a>.</p>
<p>Here is a list of most of the other members blogs, it was put together by Ola and Henrik and the original post can be found <a href="http://blogs.technet.com/b/itprola/archive/2012/04/16/meet-techdays.aspx">Here</a></p>
<ul>
<li><a href="http://geekswithblogs.net/asmith" target="_blank">Alan Smith (Azure)</a></li>
<li><a href="http://www.theexperienceblog.com" target="_blank">Andreas Stenhall (Windows)</a> &#8211; <a href="http://www.theexperienceblog.com/2012/04/23/killer-features-in-windows-8-dare-to-miss-them-on-techdays/">Killer features in Windows 8 – Dare to miss them on TechDays?</a></li>
<li><a href="http://blog.advisec.com" target="_blank">Björn      Axell (System Center)</a></li>
<li><a href="http://ceciliasharp.blogspot.com" target="_blank">Cecilia Wiren (.NET)</a></li>
<li><a href="http://chris.59north.com" target="_blank">Chris      Klug (.NET)</a></li>
<li><a href="http://www.bybugday.com" target="_blank">Daniel      Bugday (Sharepoint)</a> &#8211; <a href="http://www.bybugday.com/Lists/Posts/Post.aspx?ID=82" target="_blank">See      you on TechDays 2012 Örebro #MSDN #TD2012</a></li>
<li><a href="http://secadmins.com/" target="_blank">Hasain      Alshakarti (Security)</a> &#8211; <a href="http://secadmins.com/index.php/meettechdays-2012-in-orebro/" target="_blank">MEET@TechDays 2012 in Örebro</a></li>
<li><a href="http://idmcrisis.com/" target="_blank">Henrik      Nilsson (FIM, ADFS, Security)</a> &#8211; <a href="http://idmcrisis.com/post/2012/04/23/Microsoft-Extended-Experts-Team%E2%80%93MEET.aspx" target="_blank">Microsoft Extended Experts Team – MEET</a></li>
<li><a href="http://www.deploymentresearch.com/" target="_blank">Johan Arwidmark (System Center)</a> - <a href="http://www.deploymentresearch.com/Blog/tabid/62/EntryId/58/Networking-at-TechDays-2012-in-Sweden-The-Microsoft-Extended-Experts-Team-MEET.aspx">Networking at TechDays 2012 in Sweden &#8211; The Microsoft Extended Experts Team (MEET)</a></li>
<li><a href="http://www.joinsights.com" target="_blank">Johan      Åhlén (SQL Server)</a> &#8211; <a href="http://joinsights.com/2012/04/24/sql-server-sessions-at-techdays-sweden-2012/">SQL Server sessions at TechDays Sweden 2012</a></li>
<li><a href="http://mailmaster.se/blog/" target="_blank">Magnus      Björk (Exchange)</a> &#8211; <a href="http://mailmaster.se/blog/?p=744" target="_blank">#td2012 here I come</a></li>
<li><a href="http://www.magnusmartensson.com" target="_blank">Magnus Mårtensson (Azure)</a> - <a href="http://www.magnusmartensson.com/post/2012/04/22/TechDays-se-2012-About-Windows-Azure.aspx" target="_blank">TechDays.se 2012 – About Windows Azure</a></li>
<li><a href="http://blog.lowendahl.net" target="_blank">Patrik      Löwendahl (.NET)</a></li>
<li><a href="http://msmvps.com/blogs/molausson/" target="_blank">Mathias Olausson (ALM)</a> &#8211; <a href="http://msmvps.com/blogs/molausson/archive/2012/04/24/techdays-2012-sweden-come-see-visual-studio-alm-11-and-tfs-11-in-action.aspx">TechDays 2012 Sweden – Come see Visual Studio ALM 11 and TFS 11 in action!</a></li>
<li><a href="http://ccmexec.com" target="_blank">Jörgen      Nilsson (System Center)</a> &#8211; <a href="http://ccmexec.com/2012/04/microsoft-extended-experts-team-meet/" target="_blank">Microsoft Extended Experts Team – MEET</a></li>
<li><a href="http://blogs.technet.com/b/itprola/" target="_blank">Ola Skoog (IT Pro Evanglist)</a> – <a href="http://blogs.technet.com/b/itprola/archive/2012/04/16/meet-techdays.aspx" target="_blank">MEET@TechDays</a></li>
<li><a href="http://www.forefrontbloggen.se" target="_blank">Anders Olsson (Security)</a> &#8211; <a href="http://svenskaforefront.wordpress.com/2012/04/24/f-mer-ut-av-techdays/">Få mer ut av TechDays</a></li>
<li><a href="http://nullsession.com" target="_blank">Joakim      Nässlander (Windows Server, Cluster)</a></li>
<li><a href="http://mlidholm.blogspot.se/" target="_blank">Martin Lidholm (Unified Communication, Lync)</a></li>
<li><a href="http://blog.konab.com/">Kent Nordström (Information Security and Identity Management</a>) &#8211; <a href="http://blog.konab.com/2012/04/techdays-in-sweden/">TechDays in Sweden</a></li>
</ul>
<p>I hope to see you all at Techdays 2012!!</p>
<p><a href="http://ccmexec.com/wp-content/uploads/2012/04/meet.png"><img class="aligncenter size-full wp-image-1907" title="meet" src="http://ccmexec.com/wp-content/uploads/2012/04/meet.png" alt="meet" width="400" height="176" /></a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F04%2Fmicrosoft-extended-experts-team-meet%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/04/microsoft-extended-experts-team-meet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System Center 2012 Configuration Manager forums are now live!</title>
		<link>http://ccmexec.com/2012/04/system-center-2012-configuration-manager-forums-are-now-live/</link>
		<comments>http://ccmexec.com/2012/04/system-center-2012-configuration-manager-forums-are-now-live/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 19:02:51 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[System Center Configuration Manager]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1901</guid>
		<description><![CDATA[System Center 2012 Configuration Manager 2012 is now released and that means that the Technet Forums for Configuration Manager 2012 is also live. Be sure to bookmark them!
http://social.technet.microsoft.com/Forums/en-US/category/systemcenter2012configurationmanager





]]></description>
			<content:encoded><![CDATA[<p>System Center 2012 Configuration Manager 2012 is now released and that means that the Technet Forums for Configuration Manager 2012 is also live. Be sure to bookmark them!</p>
<p><a href="http://social.technet.microsoft.com/Forums/en-US/category/systemcenter2012configurationmanager">http://social.technet.microsoft.com/Forums/en-US/category/systemcenter2012configurationmanager</a></p>
<p style="text-align: center;"><a href="http://ccmexec.com/wp-content/uploads/2012/04/cm2012forums.PNG"><img class="aligncenter size-full wp-image-1902" title="cm2012forums" src="http://ccmexec.com/wp-content/uploads/2012/04/cm2012forums.PNG" alt="cm2012forums" width="587" height="503" /></a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F04%2Fsystem-center-2012-configuration-manager-forums-are-now-live%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/04/system-center-2012-configuration-manager-forums-are-now-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heading for MMS 2012</title>
		<link>http://ccmexec.com/2012/04/heading-for-mms-2012/</link>
		<comments>http://ccmexec.com/2012/04/heading-for-mms-2012/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 09:44:23 +0000</pubDate>
		<dc:creator>Jörgen Nilsson</dc:creator>
				<category><![CDATA[MMS 2012]]></category>

		<guid isPermaLink="false">http://ccmexec.com/?p=1884</guid>
		<description><![CDATA[On Friday the 13/4 I will be leaving for Microsoft Management Summit(MMS) 2012. MMS is the largest, coolest and most exiting System Center event in the world! This year with System Center 2012 coming round the corner it is extra exiting.
Don&#8217;t miss the two keynotes which will be streamed live from the event:
 
Microsoft Private [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday the 13/4 I will be leaving for Microsoft Management Summit(MMS) 2012. MMS is the largest, coolest and most exiting System Center event in the world! This year with System Center 2012 coming round the corner it is extra exiting.</p>
<p>Don&#8217;t miss the two keynotes which will be streamed live from the event:<br />
<em><strong> </strong></em></p>
<p><em><strong>Microsoft Private Cloud. Built for the Future. Ready Now.</strong></em><br />
April 17 | 8:30AM &#8211; 9:45AM</p>
<p><em><strong>A World of Connected Devices</strong></em><br />
April 18 | 8:30AM &#8211; 9:45AM<br />
<a href="http://www.mms-2012.com/digitalmms">http://www.mms-2012.com/digitalmms</a></p>
<p>I have the great honor to be proctoring two hands on labs at MMS this year, I hope to see some of you attend these labs:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Venetian Ballroom B Wed 4:00PM &#8211; 5:15PM Lab Proctor CD-IL316 Managing Content with Configuration Manager 2012</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Venetian Ballroom C Thu 11:45AM &#8211; 1:00PM Lab Proctor CD-IL321 Advanced Software Distribution in Configuration Manager 2012</div>
<ul>
<li>CD-IL316 Managing Content with Configuration Manager 2012 &#8211;Venetian Ballroom B Wed 4:00PM &#8211; 5:15PM</li>
<li>CD-IL321 Advanced Software Distribution in Configuration Manager 2012 &#8211; Venetian Ballroom C Thu 11:45AM &#8211; 1:00PM</li>
</ul>
<p>MMS is also a great opportunity to meet people in the business, I look forward to see as many of you there as well!</p>
<p>MMS here I come!</p>
<p style="text-align: center;"><a href="http://ccmexec.com/wp-content/uploads/2012/04/mms2012.PNG"><img class="aligncenter size-full wp-image-1886" title="mms2012" src="http://ccmexec.com/wp-content/uploads/2012/04/mms2012.PNG" alt="mms2012" width="608" height="56" /></a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fccmexec.com%2F2012%2F04%2Fheading-for-mms-2012%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ccmexec.com/2012/04/heading-for-mms-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

