<?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>Brian Jones IT</title>
	<atom:link href="http://www.brianjonesit.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.brianjonesit.co.uk</link>
	<description>A helpful technology blog</description>
	<lastBuildDate>Tue, 14 Apr 2015 17:56:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.2</generator>
	<item>
		<title>Build and Capture in Configuration Manager 2012 SP1 using HTTPS</title>
		<link>http://www.brianjonesit.co.uk/index.php/build-and-capture-in-configuration-manager-2012-sp1-using-https/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/build-and-capture-in-configuration-manager-2012-sp1-using-https/#comments</comments>
		<pubDate>Tue, 29 Oct 2013 22:13:55 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[What works for me - SCCM]]></category>
		<category><![CDATA[Windows Deployment]]></category>
		<category><![CDATA[build & capture]]></category>
		<category><![CDATA[certificates]]></category>
		<category><![CDATA[OSD]]></category>
		<category><![CDATA[Workgroup]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=377</guid>
		<description><![CDATA[I&#8217;ve recently had a hell of a time getting build and capture to work to create a reference image for use with some workgroup machines that I&#8217;m going to need to build. My SCCM environment is entirely HTTPS, as I have to support internet based clients. This brings up some certificate issues, and I found this post from @jamesbannan. This post covers the whole process needed]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve recently had a hell of a time getting build and capture to work to create a reference image for use with some workgroup machines that I&#8217;m going to need to build. My SCCM environment is entirely HTTPS, as I have to support internet based clients. This brings up some certificate issues, and I found <a title="James Bannan's blog" href="http://www.jamesbannanit.com/2012/05/how-to-build-and-capture-in-configuration-manager-2012-using-https/" target="_blank">this</a> post from <a href="http://twitter.com/jamesbannan" class="tweet-username">@jamesbannan</a>. This post covers the whole process needed to workaround the issues with this particular scenario, but it attacks it from an MDT point of view. Reading through the comments, I came up with a slightly rejigged solution and so have written this blog post to pass on how I did it.</p>
<p>First, I copied the folder that I keep the unattend.xml files to my programs share. I keep x86 and x64 unattend.xml&#8217;s in the same folder, named appropriately. As I have specific requirements (keyboard settings, etc.), and I hope that this solution will make my workgroup deployments easier, I decided that I should duplicate these files and add in the xml for the certificates to each one. I then created the certificates as per James&#8217; blog:</p>
<blockquote><p><strong>Step 1 – Generate a Client Certificate</strong></p>
<p>This is the easy bit.  You just need a valid PKI client certificate which gets exported, along with its private key for importing later on.  For this you just need a domain-joined system which can talk to the CA.</p>
<p>The certificate template I used was the same as the ConfigMgr Client Certificate template I created to support HTTPS communications in CM12.  So, in the Certification Authority console:</p>
<ol>
<li>Right-click “Certificate Templates” and select “Manage”;</li>
<li>Right-click “ConfigMgr Client Certificate” and select “Duplicate Template”;</li>
<li>Select “Windows Server 2003 Enterprise”;</li>
<li>In the General tab, change the certificate Template Display Name to “ConfigMgr Workgroup Client Certificate”;</li>
<li>In the Request Handling tab, tick “Allow private key to be exported”;</li>
<li>In the Subject Name tab, select “Supply in the request”;</li>
<li>In the Security tab, select “Domain Computers” and untick the “Autoenroll” permission;</li>
<li>Select OK.</li>
</ol>
<p>Back in the Certificate Authority console, right-click Certificate Templates and choose “New” –&gt; “Certificate Template to Issue”.  Choose the newly-created template from the list and select OK.</p>
<p>Now, on a domain system (it can even be the CA), launch the Certificate MMC snap-in for the Local Computer:</p>
<ol>
<li>Go to Personal –&gt; Certificates;</li>
<li>Right-click Certificates and select “All Tasks”, “Request New Certificate”;</li>
<li>Select “Active Directory Enrolment Policy” and click Next;</li>
<li>Tick “ConfigMgr Workgroup Client Certificate” and click the link directly underneath which is prompting for more information;</li>
<li>In the Subject tab, select “Common Name” from the Subject Name drop-down and type in “Workgroup PKI” in the Value field;</li>
<li>Select Add, and OK;</li>
<li>Select Enrol.</li>
</ol>
<p>The new certificate should now appear in the MMC window.  Right-click the certificate and select All Tasks –&gt; Export:</p>
<ol>
<li>In the Export Private Key window, select “Yes, export the private key”;</li>
<li>In the Export File Format windows, tick “Include all the certificates….” and “Export all extended permissions”;</li>
<li>Select and confirm a password, and then a location for the PFX file;</li>
<li>Export completed.</li>
</ol>
</blockquote>
<p>Once I had the exported certificate, I copied this into the folder with the unattend.xml files. I then made the edits to the unattend.xml files, according to the relevant architecture as per James&#8217; blog, but with a slight change, as per the comments, which I have bolded:</p>
<blockquote><p>On a system with the Windows Automated Installation Kit (WAIK) installed, launch System Image Manager and open the Unattend.xml.  Make sure that it’s associated with a Windows catalog for the correct architecture version of Windows (eg: x86 or x64)</p>
<p>In the Windows Image section:</p>
<ol>
<li>Expand Components;</li>
<li>Expand amd64_Microsoft-Windows-Deployment_6.1.7600.16385_neutral (assuming your architecture is x64);</li>
<li>Expand RunSynchronous;</li>
<li>Right-click RunSynchronousCommand and select “Add setting to Pass 4 specialize”.</li>
</ol>
<p>In the Answer File section:</p>
<ol>
<li>Navigate to the newly-added setting under pass 4 specialize;</li>
<li>Change the Description to “Import PFX”;</li>
<li>Change the Order to the last in the list (eg: Order = 3);</li>
<li>Change the Path to “<code><strong>cmd /c certutil -f -p {password} -importpfx c:\_SMSTaskSequence\Packages\{PackageID}\nameofyourcert.pfx</strong></code>” (without the quotes);</li>
<li>Ensure the Will Reboot is set to “Never”;</li>
<li>Expand RunSynchronousCommand and right-click “Credentials” and select Delete.</li>
</ol>
<p>Save and exit System Image Manager.  Make sure that the Settings package is updated in the Configuration Manager console so that the latest version is copied to the distribution point.</p></blockquote>
<p>Once I had saved the unattend.xml files, I then created a package in SCCM from these files and called it &#8220;workgroup settings&#8221;.</p>
<p>I didn&#8217;t need to create a new Configuration Manager Workgroup Package as per James&#8217;s instructions (well, I created one, but due to an oversight, I didn&#8217;t actually use it!).</p>
<p>Once the package is complete and distributed, create a new &#8220;build and capture task sequence&#8221;. I used the install.wim file from each operating systems DVD&#8217;s sources folder for the task sequence, and the Configuration Manager Client Package. Once you&#8217;ve created the task sequence, follow the below steps:</p>
<p>1: Go to the step &#8220;Partition Disk 0 &#8211; BIOS&#8221; and delete the BCD partition, and then mark the Windows primary partition as the boot partition.<br />
2. In the &#8220;Apply Operating System&#8221; step, tick the box &#8220;use an unattended or Sysprep answer file for a custom installation&#8221; box, and then select your &#8220;workgroup settings&#8221; and choose the unattend.xml relevant to your architecture.<br />
3. In the &#8220;Setup Windows and Configuration Manager&#8221;, change the installation properties for the Configuration Manager Client Package to <code>DNSSUFFIX={your dns suffix} CCMHTTPSSTATE=31</code>.</p>
<p>I then proceeded to deploy the task sequence to the collection I was targeting, making sure that on the distribution tab, I ticked the &#8220;when no local distribution point is available&#8221; box.</p>
<p>Once I had done this, I was able to build and capture machines for Windows 7, 8 and 8.1 (and I&#8217;ve not even installed 2012 R2 yet!). Next step is to see if I can apply what I have learned here to building workgroup clients. I&#8217;ll let you know how it goes!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/build-and-capture-in-configuration-manager-2012-sp1-using-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the &#8220;Other User&#8221; prompt from ctrl+alt+del</title>
		<link>http://www.brianjonesit.co.uk/index.php/removing-the-other-user-prompt-from-ctrlaltdel/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/removing-the-other-user-prompt-from-ctrlaltdel/#comments</comments>
		<pubDate>Thu, 24 Oct 2013 20:34:29 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[authentec]]></category>
		<category><![CDATA[fingerprint]]></category>
		<category><![CDATA[other user]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=375</guid>
		<description><![CDATA[On some Windows 7 computers, after pressing ctrl+alt+del the user can be presented with a blank &#8220;other user&#8221; picture, before they are able to enter their authentication details. Some users can find this to be quite annoying. I&#8217;ve noticed this particularly on Toshiba laptops that have the Authentec finger printing software installed. In order to remove this, the software must be uninstalled and the laptop]]></description>
				<content:encoded><![CDATA[<p>On some Windows 7 computers, after pressing ctrl+alt+del the user can be presented with a blank &#8220;other user&#8221; picture, before they are able to enter their authentication details. Some users can find this to be quite annoying. I&#8217;ve noticed this particularly on Toshiba laptops that have the Authentec finger printing software installed. In order to remove this, the software must be uninstalled and the laptop rebooted twice.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/removing-the-other-user-prompt-from-ctrlaltdel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repairing the Windows 8 right click &#8220;Start&#8221; menu</title>
		<link>http://www.brianjonesit.co.uk/index.php/repairing-the-windows-8-right-click-start-menu/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/repairing-the-windows-8-right-click-start-menu/#comments</comments>
		<pubDate>Thu, 24 Oct 2013 20:17:22 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Right-Click Menu]]></category>
		<category><![CDATA[Start]]></category>
		<category><![CDATA[WinX]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=370</guid>
		<description><![CDATA[Recently I had an incident where the menu that comes up when you right click on start in Windows 8 had disappeared. &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; I was able to fix this by downloading this program. By running the exe file, I was able to restore the default settings for this menu and even add]]></description>
				<content:encoded><![CDATA[<p>Recently I had an incident where the menu that comes up when you right click on start in Windows 8 had disappeared.</p>
<p><a href="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/10/winx.png"><img class="alignleft size-full wp-image-371" alt="winx" src="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/10/winx.png?resize=274%2C441" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>I was able to fix this by downloading <a title="Win+X Menu Editor for Windows 8" href="http://winaero.com/download.php?view.21" target="_blank">this</a> program. By running the exe file, I was able to restore the default settings for this menu and even add in some more entries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/repairing-the-windows-8-right-click-start-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orchestrator Runbook for creating a new mail enabled user</title>
		<link>http://www.brianjonesit.co.uk/index.php/orchestrator-runbook-for-creating-a-new-mail-enabled-user/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/orchestrator-runbook-for-creating-a-new-mail-enabled-user/#comments</comments>
		<pubDate>Tue, 11 Jun 2013 22:31:38 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[What works for me - Orchestrator]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[Orchestrator]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=353</guid>
		<description><![CDATA[In this guide I will be explaining the process I have used to create a new user, allocate it to the correct OU, and define settings such as login script. The runbook looks like this: First drag an Initiate Data unit from the runbook control section. I renamed this to &#8220;User Info&#8221;. You can use whatever fields you want here, but the ones I used]]></description>
				<content:encoded><![CDATA[<p>In this guide I will be explaining the process I have used to create a new user, allocate it to the correct OU, and define settings such as login script. The runbook looks like this:</p>
<p><a href="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/NewUserRunbook.png"><img class="alignleft  wp-image-354" src="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/NewUserRunbook.png?resize=480%2C217" alt="NewUserRunbook" data-recalc-dims="1" /></a></p>
<p>First drag an Initiate Data unit from the runbook control section. I renamed this to &#8220;User Info&#8221;. You can use whatever fields you want here, but the ones I used are as below:</p>
<p><a href="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/UserInfo.png"><img class="alignleft size-full wp-image-355" src="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/UserInfo.png?resize=480%2C329" alt="UserInfo" data-recalc-dims="1" /></a></p>
<p>These will be linked to later in the runbook. Click finish and then drag and link a generate random text control from the utilities section.</p>
<p><a href="http://i0.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/GeneratePassword.png"><img class="alignleft size-full wp-image-356" src="http://i0.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/GeneratePassword.png?resize=480%2C329" alt="GeneratePassword" data-recalc-dims="1" /></a></p>
<p>Set this up according to your complexity requirements, I did this as above. The next step is to create a some variables. Drag a run .net script control from the system section, and link it to the password step. I used a basic PowerShell script to allocate a SamName from the first name and last name. You can edit this according to your organisations specifications, but my organisation uses first initial, last name, so this script is geared to that. It also truncates the SamName so that it doesn&#8217;t exceed the 20 character maximum.</p>
<p>This is the script:</p>
<p><code>$Fname = "First Name"<br />
$Lname = "Last name"<br />
$Phone = "Phone Number"<br />
$Title = "Title"<br />
$Department = "Department"<br />
$Sam=$FName.substring(0,1)+$LName<br />
$max=$Sam.Length<br />
if ($max -gt 20) {$max=20}<br />
$Sam=$Sam.Substring(0,$max)<br />
$Alias=$Sam</code></p>
<p>Where there are descriptions between the quote marks, these need to be replaced with subscriptions to the corresponding data from the User Info step. To do this, delete the description and then right click between the quote marks, and choose subscribe &gt; publish data. From the drop down choose UserInfo and then select the corresponding piece of data. This will end up looking something like this:</p>
<p><a href="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/VariablesScript.png"><img class="alignleft size-full wp-image-358" src="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/VariablesScript.png?resize=480%2C329" alt="VariablesScript" data-recalc-dims="1" /></a></p>
<p>I tried scripting more information such as address details, OU and profile data, but I found that for some reason Orchestrator was pulling the wrong data for the variable, so I decided to use a different approach. However, if you are interested in how I did this, please let me know and I will update the post.</p>
<p>Next we need to publish these variables so that we can use them for the create user step. Click on the Published Data tab, and then click on add. This presents the box below:</p>
<p><a href="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/VariablePublishedData.png"><img class="alignleft size-full wp-image-357" src="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/VariablePublishedData.png?resize=480%2C330" alt="VariablePublishedData" data-recalc-dims="1" /></a></p>
<p>This small script only needs to have department and SamName published, but depending on what you script, you can publish anything you need here. Notice that the variable name does not have the $ at the beginning.</p>
<p>For the next step bring a create user control from the Active Directory section. Link this to the variables control, and then right click on the link, and choose properties. This is where you can insert a condition based on the department variable so that users in that department get a specific set of properties.</p>
<p><img class="alignleft size-full wp-image-360" src="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/LinkProperties.png?resize=480%2C329" alt="LinkProperties" data-recalc-dims="1" /></p>
<p>You can specify the details for the new user, and the rest of the process, and then copy those controls, and paste them in again, link them with a different condition and then change anything that needs to be different in the create user control for the new branch.</p>
<p>Open the Create User control and on the properties tab, specify the AD connection of the domain you want the user added to (you can use this to create one runbook that creates users across multiple domains based entirely on their department!). There are instructions for connecting to AD <a title="Connecting System Center Orchestrator – Part 1: Active Directory" href="http://www.geckostech.co.uk/?p=325" target="_blank">here</a>.</p>
<p>Click on Optional Properties, and choose the ones that are relevant to your organisation. I went with:</p>
<p><a href="http://i0.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/adprops.png"><img class="alignleft size-full wp-image-361" src="http://i0.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/adprops.png?resize=219%2C278" alt="adprops" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Here is how I configured each of the fields. Words within {} are subscriptions from previous controls:</p>
<p>Common Name: &#8220;{last name from userinfo}\, {first name from userinfo}&#8221;</p>
<p>I should point out this is for last name, first name, and that the \ is required for powershell to recognise the comma. The quotes are also required.</p>
<p>City: Enter the City<br />
Company: Enter the Company<br />
Department: {Department from userinfo}<br />
Description: Whatever you want, however I used {Title from userinfo}<br />
Display Name: &#8220;{last name from userinfo}\, {first name from userinfo}&#8221;<br />
First Name: {First Name from userinfo}<br />
Home Directory: \\servername\sharename\{SamName from variables}<br />
Home Drive: Map your drive letter here if you use this.<br />
Last Name: {Last Name from userinfo}<br />
Container Distinguished Name: This is the OU for the users department in the format OU=Sales,OU=Users,DC=int,DC=domain,DC=local<br />
Password: {Random Text from generate password}<br />
Office: Enter the Office Name<br />
Postal Code: Enter the Office Post Code/Zip<br />
Profile Path: \\servername\sharename\{SamName from Variables}<br />
SAM Account Name: {SamName from variables}<br />
Login Script: Enter login script name (script.bat)<br />
Phone Number: {Phone from userinfo}<br />
Title: {Title from userinfo}<br />
Web Page: Enter default website<br />
User Principle Name: {SamName from Variables}@int.domain.local</p>
<p>Next drag an enable user control over from the AD section and link this to create user. Set the AD connection and subscribe Distinguished Name to {Distinguished name from create user}.</p>
<p>Next drag an enable mailbox control from the Exchange Admin section and link to enable user, set the Exchange connection and subscribe Distinguished Name to {Distinguished name from enable user}.</p>
<p>For the last step, drag a send email control over from the email section. I set this up as below:</p>
<p><a href="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/sendemail.png"><img class="alignleft size-full wp-image-362" src="http://i1.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/sendemail.png?resize=480%2C329" alt="sendemail" data-recalc-dims="1" /></a></p>
<p>On the connect tab, add your SMTP details and send from address, and then specify any required security details. Once you have done this, run it through the runbook tester, and you should be ready to go.</p>
<p>I&#8217;ll do a post on connecting the runbook to System Center System Manager at a later date.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/orchestrator-runbook-for-creating-a-new-mail-enabled-user/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Connecting System Center Orchestrator – Part 3: System Center Operations Manager and System Manager</title>
		<link>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-2-system-center-operations-manager-and-system-manager/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-2-system-center-operations-manager-and-system-manager/#comments</comments>
		<pubDate>Tue, 11 Jun 2013 20:39:19 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[What works for me - Orchestrator]]></category>
		<category><![CDATA[Orchestrator]]></category>
		<category><![CDATA[SCOM]]></category>
		<category><![CDATA[SCSM]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=342</guid>
		<description><![CDATA[In part 2 of this series explained how to connect Orchestrator to SCCM. In this post I will explain connecting Operations Manager and System Manager. After opening Runbook Designer, go to Options and select either System Center Operations Manager or System Center System Manager depending on which one you want to configure. Click add on the dialogue box and you will be presented with this box: &#160;]]></description>
				<content:encoded><![CDATA[<p>In <a title="Connecting System Center Orchestrator – Part 2: System Center Configuration Manager" href="http://www.geckostech.co.uk/?p=331" target="_blank">part 2</a> of this series explained how to connect Orchestrator to SCCM. In this post I will explain connecting Operations Manager and System Manager.</p>
<p>After opening Runbook Designer, go to Options and select either System Center Operations Manager or System Center System Manager depending on which one you want to configure. Click add on the dialogue box and you will be presented with this box:</p>
<p><a href="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/SCOM_SCSM.jpg"><img class="alignleft size-full wp-image-343" alt="SCOM_SCSM" src="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/SCOM_SCSM.jpg?resize=444%2C405" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>In the name box, type the name you want to refer to the connection as.</p>
<p>Server is the FQDN of your SCOM/SCSM server.</p>
<p>Domain is your domain name, username is in the format &lt;username&gt;, which is an administrative user of that server and the password is the password for that account.</p>
<p>Adjust the monitoring intervals according to your needs, bearing in mind that this will affect network traffic.</p>
<p>Once you have input all the information, test the connection and you&#8217;re ready to start creating runbooks for SCOM and SCSM.</p>
<p>In the next post I will describe connecting <a title="Connecting System Center Orchestrator – Part 4: System Center Virtual Machine Manager" href="http://www.geckostech.co.uk/?p=348" target="_blank">System Center Virtual Machine Manager</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-2-system-center-operations-manager-and-system-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting System Center Orchestrator – Part 2: System Center Configuration Manager</title>
		<link>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-2-system-center-configuration-manager/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-2-system-center-configuration-manager/#comments</comments>
		<pubDate>Tue, 11 Jun 2013 20:11:53 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[What works for me - Orchestrator]]></category>
		<category><![CDATA[What works for me - SCCM]]></category>
		<category><![CDATA[Orchestrator]]></category>
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=331</guid>
		<description><![CDATA[In Part One of this guide, I explained where to find installation instructions for Orchestrator integration packs, and then how to connect Orchestrator to Active Directory. In this post I will cover how to connect to System Center Configuration Manager. Open Runbook Designer, click options and then &#8220;System Center Configuration Manager&#8221;. In the dialogue box click add, then you will be presented with this box:]]></description>
				<content:encoded><![CDATA[<p>In <a title="Connecting System Center Orchestrator – Part 1: Active Directory" href="http://www.geckostech.co.uk/?p=325" target="_blank">Part One</a> of this guide, I explained where to find installation instructions for Orchestrator integration packs, and then how to connect Orchestrator to Active Directory. In this post I will cover how to connect to System Center Configuration Manager.</p>
<p>Open Runbook Designer, click options and then &#8220;System Center Configuration Manager&#8221;. In the dialogue box click add, then you will be presented with this box:</p>
<p><a href="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/sccm.jpg"><img class="alignleft size-full wp-image-332" alt="sccm" src="http://i2.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/sccm.jpg?resize=349%2C223" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Name should be the name of the connection.</p>
<p>Server is the FQDN SCCM CAS or Primary Server depending on your infrastructure.</p>
<p>Username is an SCCM administrator in the format domain\username</p>
<p>The password is the password for the above account.</p>
<p>After you have input the information you can click on Test Connection to make sure everything is good!</p>
<p>The next post will deal with <a title="Connecting System Center Orchestrator – Part 3: System Center Operations Manager and System Manager" href="http://www.geckostech.co.uk/?p=342" target="_blank">System Center Operations Manager and System Manager</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-2-system-center-configuration-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting System Center Orchestrator &#8211; Part 1: Active Directory</title>
		<link>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-1-active-directory/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-1-active-directory/#comments</comments>
		<pubDate>Tue, 11 Jun 2013 19:43:20 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[What works for me - Orchestrator]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Orchestrator]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=325</guid>
		<description><![CDATA[Microsoft System Center Orchestrator 2012 SP1 is a fantastic tool for automating many tasks within your datacenter. I&#8217;ll be posting guides as and when I figure them out for myself! In order to integrate it with Active Directory, you need to first download and install the integration packs to your runbook server. There is a guide to this here. You should note that if you]]></description>
				<content:encoded><![CDATA[<p>Microsoft System Center Orchestrator 2012 SP1 is a fantastic tool for automating many tasks within your datacenter. I&#8217;ll be posting guides as and when I figure them out for myself!</p>
<p>In order to integrate it with Active Directory, you need to first <a title="System Center 2012 Service Pack 1 - Orchestrator Component Add-ons and Extensions" href="http://www.microsoft.com/en-us/download/details.aspx?id=34611" target="_blank">download</a> and install the integration packs to your runbook server. There is a guide to this <a title="How to Install an Integration Pack" href="http://technet.microsoft.com/en-us/library/hh420346.aspx" target="_blank">here</a>. You should note that if you already have System Center 2012 integration packs installed, you will need to un-deploy them and delete them from the runbook server before you can install the SP1 integration packs.</p>
<p>After you have deployed the integration packs, you will need to open runbook designer and go to Options &gt; Active Directory. Click add on the box that comes up, and you will be presented with the following box:</p>
<p><a href="http://i0.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/ActiveDirectory.jpg"><img class="alignleft size-full wp-image-326" alt="ActiveDirectory" src="http://i0.wp.com/www.geckostech.co.uk/wp-content/uploads/2013/06/ActiveDirectory.jpg?resize=480%2C335" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The settings should be entered in the following format:</p>
<p>Username: domain\username &#8211; This user must be one with domain administrator rights.</p>
<p>Password: This is the password for the account used in the above step.</p>
<p>Configuration Domain Controller Name (FQDN): domaincontroller.domainsuffix.com &#8211; This should ideally be your primary domain controller as this will reduce the amount of time needed for Orchestrator steps to replicate.</p>
<p>Configuration Default Parent Container: This is the distinguished name of your user container, and should be in the format &#8220;OU=Users,DC=int,DC=domain,DC=local&#8221;.</p>
<p>You will need to add an Active Directory instance for every domain in your forest.</p>
<p>Click OK and you are ready to automate Active Directory tasks. <a title="Connecting System Center Orchestrator – Part 2: System Center Configuration Manager" href="http://www.geckostech.co.uk/?p=331" target="_blank">The next post will cover SCCM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/connecting-system-center-orchestrator-part-1-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Management Shell useful scripts</title>
		<link>http://www.brianjonesit.co.uk/index.php/exchange-management-shell-useful-scripts/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/exchange-management-shell-useful-scripts/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 08:21:28 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[EMS]]></category>
		<category><![CDATA[Exchange Management Shell]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=319</guid>
		<description><![CDATA[Check back here from time to time, I&#8217;ll be updating this as and when I find new one: When a user sends mail from a delegated mailbox, by default, the sent item goes into their own mailbox. To change this behavior so that the mail goes into the delegated mailbox&#8217;s sent items: Set-MailboxSentItemsConfiguration –Identity ‘CEO Mailbox’ –SendAsItemsCopiedTo SenderAndFrom –SendOnBehalfOfItemsCopiedTo SenderAndFrom To grant a user editor rights to]]></description>
				<content:encoded><![CDATA[<p>Check back here from time to time, I&#8217;ll be updating this as and when I find new one:</p>
<p>When a user sends mail from a delegated mailbox, by default, the sent item goes into their own mailbox. To change this behavior so that the mail goes into the delegated mailbox&#8217;s sent items:</p>
<p><code>Set-MailboxSentItemsConfiguration –Identity ‘CEO Mailbox’ –SendAsItemsCopiedTo SenderAndFrom –SendOnBehalfOfItemsCopiedTo SenderAndFrom</code></p>
<p>To grant a user editor rights to a shared calendar on a mailbox:</p>
<p><code>Add-MailboxFolderPermission -Identity ‘alias:\Calendar’ -User ‘username’  -AccessRights Reviewer</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/exchange-management-shell-useful-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying Windows 8 Tablets via SCCM</title>
		<link>http://www.brianjonesit.co.uk/index.php/deploying-windows-8-tablets-via-sccm/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/deploying-windows-8-tablets-via-sccm/#comments</comments>
		<pubDate>Sun, 24 Mar 2013 09:33:15 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[What works for me - SCCM]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Deployment]]></category>
		<category><![CDATA[Windows Tablets]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[ElitePad 900]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[Surface]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=306</guid>
		<description><![CDATA[Recently I need to deploy some HP ElitePad 900 tablets. These come partitioned and full of HP&#8217;s usual bloatware, so we wanted to start with a clean &#8220;slate&#8221; as it were. I&#8217;ve always found the posts at www.windows-noob.com to be a bit of a godsend. This post by @ncbrady was particularly helpful. With a few minor adjustments, you can make this work for the ElitePad too,]]></description>
				<content:encoded><![CDATA[<p>Recently I need to deploy some HP ElitePad 900 tablets. These come partitioned and full of HP&#8217;s usual bloatware, so we wanted to start with a clean &#8220;slate&#8221; as it were.</p>
<p>I&#8217;ve always found the posts at <a title="Windows-Noob.com" href="http://www.windows-noob.com" target="_blank">www.windows-noob.com</a> to be a bit of a godsend. <a title="Deploying Surface on Windows-Noob.com" href="http://www.windows-noob.com/forums/index.php?/topic/7638-how-can-i-deploy-windows-8-x64-to-the-microsoft-surface-pro-using-configuration-manager-2012-sp1/" target="_blank">This post</a> by <a href="http://twitter.com/ncbrady" class="tweet-username">@ncbrady</a> was particularly helpful. With a few minor adjustments, you can make this work for the ElitePad too, and presumably any other windows tablet.</p>
<p>Firstly, make sure you are deploying the correct architecture. The ElitePad is 32-bit, so make sure you are using the x86 Windows 8 image.</p>
<p>Secondly, you don&#8217;t need to add any of the HP WinPE drivers to the boot image. Honestly, they do more harm than good. Don&#8217;t do it. A clean boot image will happily do the job.</p>
<p>If you don&#8217;t have the attachable keyboard, make sure you do use a USB hub and attach a keyboard and mouse. The touch screen doesn&#8217;t work from the boot image, and so you need to find a way to click the all important &#8220;next&#8221; button and also set the variable.</p>
<p>Once the machine is built, the drive is bitlockered, but you still need to go in and actually turn it on.</p>
<p>Make some adjustments to your process according to your environment, but the above blog post has everything in it you need to get started.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/deploying-windows-8-tablets-via-sccm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete the Windows.old folder from a server</title>
		<link>http://www.brianjonesit.co.uk/index.php/delete-the-windows-old-folder-from-a-server/</link>
		<comments>http://www.brianjonesit.co.uk/index.php/delete-the-windows-old-folder-from-a-server/#comments</comments>
		<pubDate>Sun, 24 Mar 2013 08:57:19 +0000</pubDate>
		<dc:creator><![CDATA[Brian Jones]]></dc:creator>
				<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Server 2012]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[in-place upgrade]]></category>
		<category><![CDATA[windows.old]]></category>

		<guid isPermaLink="false">http://www.geckostech.co.uk/?p=303</guid>
		<description><![CDATA[When performing an in place upgrade of your server, you are left with a folder called windows.old which you are unable to delete, even if you take ownership of it. Whereas in a client version of windows, you can remove this using the disk cleanup tool, this is not possible on Windows Server. For this you will need to follow the below procedure. From the]]></description>
				<content:encoded><![CDATA[<p>When performing an in place upgrade of your server, you are left with a folder called windows.old which you are unable to delete, even if you take ownership of it.</p>
<p>Whereas in a client version of windows, you can remove this using the disk cleanup tool, this is not possible on Windows Server.</p>
<p>For this you will need to follow the below procedure.</p>
<p>From the start menu, type CMD into the search facility or run box, and then right click on it and &#8220;run as administrator&#8221;.</p>
<p>Type the following at the command prompt, type the following and run then in sequence:</p>
<p><code>takeown /F <var>&lt;DriveLetter&gt;</var>:\<var>&lt;FolderName&gt;</var>\* /R /A</code></p>
<p><code>cacls &lt;DriveLetter&gt;:\&lt;FolderName&gt;\*.* /T /grant administrators:F</code></p>
<p><code>rmdir /S /Q  &lt;DriveLetter&gt;:\&lt;FolderName&gt;\</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianjonesit.co.uk/index.php/delete-the-windows-old-folder-from-a-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
