<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Sccm-2012 on Anything About IT</title><link>https://www.verboon.info/tags/sccm-2012/</link><description>Recent content in Sccm-2012 on Anything About IT</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Tue, 04 Jun 2013 20:14:48 +0000</lastBuildDate><atom:link href="https://www.verboon.info/tags/sccm-2012/index.xml" rel="self" type="application/rss+xml"/><item><title>SCCM 2012 SP1 Client Settings only configurable within the Default Client Settings</title><link>https://www.verboon.info/2013/06/sccm-2012-sp1-client-settings-only-configurable-within-the-default-client-settings/</link><pubDate>Tue, 04 Jun 2013 20:14:48 +0000</pubDate><guid>https://www.verboon.info/2013/06/sccm-2012-sp1-client-settings-only-configurable-within-the-default-client-settings/</guid><description>&lt;p&gt;While preparing and documenting the System Center Configuration Manager 2012 SP1 Client settings for our clients and servers I noticed that there are a few settings that cannot be configured within custom client settings meaning they can only be configured within the Default Settings.&lt;/p&gt;
&lt;p&gt;The following table lists the settings I identified as only configurable within the Default Client Settings.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; **Agent** **Setting** Compliance Settings Schedule compliance evaluation Hardware Inventory Maximum custom MIF File Size in KB   Collect MIF Files Software Inventory Configure the display names for manufacturer or product Related content: [About Client Settings in Configuration Manager](http://technet.microsoft.com/en-us/library/gg682067.aspx#BKMK_Compliance)
&lt;/code&gt;&lt;/pre&gt;</description></item><item><title>How to change the SCCM 2012 Package Source Path with PowerShell</title><link>https://www.verboon.info/2013/05/how-to-change-the-sccm-2012-package-source-path-with-powershell/</link><pubDate>Mon, 13 May 2013 20:08:57 +0000</pubDate><guid>https://www.verboon.info/2013/05/how-to-change-the-sccm-2012-package-source-path-with-powershell/</guid><description>&lt;p&gt;Let’s assume you’ve just created a larger number of packages within SCCM 2012 and then you’re asked to move the package sources to a different location. I guess no-one on earth would want to visit each package and update the data source manually, So I wrote 2 scripts that automate this task. It could actually be done with one script, but when it comes to changing such things I prefer to validate things.&lt;/p&gt;</description></item><item><title>PowerShell: Script to Retrieve SCCM 2012 Client Settings</title><link>https://www.verboon.info/2013/04/powershell-script-to-retrieve-sccm-2012-client-settings/</link><pubDate>Tue, 30 Apr 2013 22:16:54 +0000</pubDate><guid>https://www.verboon.info/2013/04/powershell-script-to-retrieve-sccm-2012-client-settings/</guid><description>&lt;p&gt;&lt;strong&gt;4/3/2017 - Update:  here&amp;rsquo;s a better version:&lt;/strong&gt; &lt;a href="https://www.verboon.info/2017/03/configmgr-client-policy-settings-get-cmclientpolicysettings/"&gt;https://www.verboon.info/2017/03/configmgr-client-policy-settings-get-cmclientpolicysettings/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;To make documenting the configured SCCM Client configuration settings a bit easier I wrote a small script that retrieves all the configured settings for the Default and custom  configuration settings.&lt;/p&gt;
&lt;p&gt;To run this script the Configuration Manager powershell module must be loaded and connected to the site.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-powershell" data-lang="powershell"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#6272a4"&gt;# Get the different Client settings Names&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#8be9fd;font-style:italic"&gt;$a&lt;/span&gt; = &lt;span style="color:#8be9fd;font-style:italic"&gt;Get-CMClientSetting&lt;/span&gt; | &lt;span style="color:#8be9fd;font-style:italic"&gt;select &lt;/span&gt;Name
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#ff79c6"&gt;foreach&lt;/span&gt; (&lt;span style="color:#8be9fd;font-style:italic"&gt;$a&lt;/span&gt; &lt;span style="color:#ff79c6"&gt;in&lt;/span&gt; &lt;span style="color:#8be9fd;font-style:italic"&gt;$a&lt;/span&gt; ) 
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;{
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;	&lt;span style="color:#6272a4"&gt;# Get all possible values for the Get-CMClientSetting -Setting parameter&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;	&lt;span style="color:#8be9fd;font-style:italic"&gt;$xsettings&lt;/span&gt; = [Enum]::GetNames( [Microsoft.ConfigurationManagement.Cmdlets.ClientSettings.Commands.SettingType])
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;	&lt;span style="color:#6272a4"&gt;# dump the detailed configuration settings&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;	&lt;span style="color:#ff79c6"&gt;foreach&lt;/span&gt; (&lt;span style="color:#8be9fd;font-style:italic"&gt;$xsettings&lt;/span&gt; &lt;span style="color:#ff79c6"&gt;in&lt;/span&gt; &lt;span style="color:#8be9fd;font-style:italic"&gt;$xsettings&lt;/span&gt; ) {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; 	&lt;span style="color:#6272a4"&gt;#write-host $a.Name&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;	 &lt;span style="color:#8be9fd;font-style:italic"&gt;Get-CMClientSetting&lt;/span&gt; -Setting &lt;span style="color:#8be9fd;font-style:italic"&gt;$xsettings&lt;/span&gt; -Name &lt;span style="color:#8be9fd;font-style:italic"&gt;$a&lt;/span&gt;.Name | &lt;span style="color:#8be9fd;font-style:italic"&gt;format-table&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>Integrating DaRT 8.0 SP1 Remote Connection into the SCCM 2012 OSD Process</title><link>https://www.verboon.info/2013/04/integrating-dart-8-0-sp1-remote-connection-into-the-sccm-2012-osd-process/</link><pubDate>Mon, 22 Apr 2013 22:13:09 +0000</pubDate><guid>https://www.verboon.info/2013/04/integrating-dart-8-0-sp1-remote-connection-into-the-sccm-2012-osd-process/</guid><description>&lt;p&gt;While preparing for an SCCM 2012 upgrade, I thought it might be a good idea to consider implementing some of the best practices that are around such as integrating the DaRT Remote Connection tool into the OSD deployment process. I’m sure it comes in handy when having to troubleshoot OSD related tings, as it allows us to access the client remotely without having to give lengthy instructions to an onsite engineer.&lt;/p&gt;</description></item><item><title>How to automate SCCM 2012 Task Sequence Media Creation</title><link>https://www.verboon.info/2013/04/how-to-automate-sccm-2012-task-sequence-media-creation/</link><pubDate>Mon, 15 Apr 2013 20:46:29 +0000</pubDate><guid>https://www.verboon.info/2013/04/how-to-automate-sccm-2012-task-sequence-media-creation/</guid><description>&lt;p&gt;Just recently I went through the CM12 Console Task Sequence media creation wizard several times a day, so at some point I thought, this is a good candidate for automation.&lt;/p&gt;
&lt;p&gt;If you have &lt;a href="http://support.microsoft.com/kb/2817245/en-us"&gt;CU1&lt;/a&gt; for SCCM 2012 SP1 already installed, you can take advantage of the new cmdlet **New-CMTaskSequenceMedia **Below an example.&lt;/p&gt;
&lt;p&gt;CreateTaskMedia.ps1&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-powershell" data-lang="powershell"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#8be9fd;font-style:italic"&gt;import-module&lt;/span&gt; (&lt;span style="color:#8be9fd;font-style:italic"&gt;$Env:SMS_ADMIN_UI_PATH&lt;/span&gt;.Substring(&lt;span style="color:#bd93f9"&gt;0&lt;/span&gt;,&lt;span style="color:#8be9fd;font-style:italic"&gt;$Env:SMS_ADMIN_UI_PATH&lt;/span&gt;.Length-&lt;span style="color:#bd93f9"&gt;5&lt;/span&gt;) + &lt;span style="color:#f1fa8c"&gt;&amp;#39;\ConfigurationManager.psd1&amp;#39;&lt;/span&gt;)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#8be9fd;font-style:italic"&gt;cd &lt;/span&gt;NL1:
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#8be9fd;font-style:italic"&gt;New-CMTaskSequenceMedia&lt;/span&gt; -BootableMediaOption -MediaInputType CDDVD -ProtectPassword &lt;span style="color:#8be9fd;font-style:italic"&gt;$false&lt;/span&gt; -BootImageId NL100002 -DistributionPointServerName labsccm01.labhome.local -ManagementPointServerName labsccm01.labhome.local -MediaMode Dynamic -MediaPath C:\Sources\TSMedia\batchcreatedmedia1.iso -MediaSize SizeUnlimited -EnableUnknownSupport &lt;span style="color:#8be9fd;font-style:italic"&gt;$false&lt;/span&gt;  -CreateMediaSelfCertificate &lt;span style="color:#8be9fd;font-style:italic"&gt;$true&lt;/span&gt; -AllowUnattendedDeployment &lt;span style="color:#8be9fd;font-style:italic"&gt;$false&lt;/span&gt; -UserDeviceAffinity DoNotAllow
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;If you haven’t installed CU1 yet, no worries. the command line tool CreateMedia.exe located in the SCCM Administrator Console’s bin directory does the same thing.&lt;/p&gt;</description></item><item><title>How to create a custom antimalware policy in SCCM 2012 for your App-V sequencing clients</title><link>https://www.verboon.info/2013/02/how-to-create-a-custom-antimalware-policy-in-sccm-2012-for-your-app-v-sequencing-clients/</link><pubDate>Fri, 22 Feb 2013 16:33:44 +0000</pubDate><guid>https://www.verboon.info/2013/02/how-to-create-a-custom-antimalware-policy-in-sccm-2012-for-your-app-v-sequencing-clients/</guid><description>&lt;p&gt;Today I wanted to start sequencing an application for App-V within my lab environment where I have deployed SCCM 2012 SP1 including Endpoint Protection. As I went through the Sequencing Wizard I got the well-known warning that I have Antivirus software running.&lt;/p&gt;
&lt;p&gt;
 &lt;img src="images/image_thumb2.png" alt="image"&gt;

&lt;/p&gt;
&lt;p&gt;Not an issue, just turn it off right?. Well since I have configured a custom Antimalware policy that is applied to all my clients to not allow configure the real-time protection settings, this setting can’t be changed. .&lt;/p&gt;</description></item><item><title>How to create a SCCM 2012 SP1 Configuration Baseline with Security Compliance Manager (SCM) 3.0</title><link>https://www.verboon.info/2013/02/how-to-create-a-sccm-2012-sp1-configuration-baseline-with-security-compliance-manager-scm-3-0/</link><pubDate>Mon, 04 Feb 2013 12:56:59 +0000</pubDate><guid>https://www.verboon.info/2013/02/how-to-create-a-sccm-2012-sp1-configuration-baseline-with-security-compliance-manager-scm-3-0/</guid><description>&lt;p&gt;Most enterprises take advantage of Group Policies to manage security configuration settings across their server and desktop infrastructure. Usually once tested and implemented it’s assumed they get applied correctly. But can we be 100% sure that our clients and servers do actually receive these settings?&lt;/p&gt;
&lt;p&gt;With the help of the Microsoft Security Compliance Manager 3.0 and SCCM 2012 SP1 we can configure a security baseline to monitor security group policy settings compliance. To do so we need the following:&lt;/p&gt;</description></item></channel></rss>