<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>When Software Attacks!</title><link>https://rikhepworth.com/</link><description>Recent content on When Software Attacks!</description><generator>Hugo -- gohugo.io</generator><language>en_GB</language><copyright>&amp;copy; Rik Hepworth</copyright><lastBuildDate>Sun, 23 Aug 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://rikhepworth.com/index.xml" rel="self" type="application/rss+xml"/><item><title>About</title><link>https://rikhepworth.com/about/</link><pubDate>Sun, 23 Aug 2026 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/about/</guid><description>&lt;p&gt;As CEO and co-founder of &lt;a href="https://zure.com" target="_blank" rel="noreferrer"&gt;Zure&lt;/a&gt; in the UK, Rik helps organisations
large and small use cloud better. Whether that&amp;rsquo;s a new adoption where governance and
management are key, or an application modernisation project where technology choice and
team knowledge are the deciding factors in success.&lt;/p&gt;</description></item><item><title>Privacy</title><link>https://rikhepworth.com/privacy/</link><pubDate>Sun, 23 Aug 2026 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/privacy/</guid><description>&lt;p&gt;This is a personal blog. I am not selling anything, and I have no interest in
building a profile of you. What follows is the whole picture.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Your current choice
 &lt;div id="your-current-choice" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#your-current-choice" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;


&lt;div class="consent-status" id="consent-status"&gt;
 &lt;p class="consent-status__label"&gt;
 Microsoft Clarity is currently
 &lt;span class="consent-status__value" id="consent-status-value"&gt;running without cookies&lt;/span&gt;.
 &lt;/p&gt;</description></item><item><title>Speaking</title><link>https://rikhepworth.com/speaking/</link><pubDate>Sun, 23 Aug 2026 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/speaking/</guid><description>&lt;p&gt;
 I speak regularly at conferences and user groups on Azure, infrastructure-as-code and
 the realities of running cloud platforms. The list below is generated live from my
 &lt;a href="https://sessionize.com/rikhepworth/" rel="noopener"&gt;Sessionize profile&lt;/a&gt;.
&lt;/p&gt;

&lt;div id="speaking-embed"&gt;
 &lt;script type="text/javascript" src="https://sessionize.com/api/speaker/events/0d377ccb-8b39-455c-bc19-aa685c1d3cf9/0x1x3fb393x"&gt;&lt;/script&gt;
&lt;/div&gt;

&lt;script type="text/javascript"&gt;
// Regroup the Sessionize embed from month headings into year headings with
// tiles. Progressive enhancement: if anything here fails, the original embed
// is left exactly as Sessionize rendered it.
(function () {
 "use strict";

 var MONTHS = ["january","february","march","april","may","june",
 "july","august","september","october","november","december"];

 try {
 var root = document.getElementById("speaking-embed");
 if (!root) return;

 var dl = root.querySelector("dl.sz-group");
 if (!dl) return;

 // Walk the flat &lt;dt&gt;/&lt;dd&gt; list and bucket events by year.
 var years = [], byYear = {}, current = null;

 Array.prototype.forEach.call(dl.children, function (node) {
 var tag = node.tagName.toLowerCase();

 if (tag === "dt") {
 var parts = (node.textContent || "").trim().split(/\s+/);
 var month = parts[0] || "";
 var year = parts[parts.length - 1] || "";
 if (!/^\d{4}$/.test(year)) { current = null; return; }
 current = { year: year, month: month };
 if (!byYear[year]) { byYear[year] = []; years.push(year); }
 return;
 }

 if (tag === "dd" &amp;&amp; current) {
 var link = node.querySelector("a");
 if (!link) return;
 byYear[current.year].push({
 title: (link.textContent || "").trim(),
 href: link.getAttribute("href") || "#",
 month: current.month,
 monthIndex: MONTHS.indexOf(current.month.toLowerCase()),
 meta: (function () {
 var m = node.querySelector(".sz-item__meta");
 return m ? (m.textContent || "").trim() : "";
 })()
 });
 }
 });

 if (!years.length) return;

 // Anything later than the current month counts as upcoming.
 var now = new Date();
 var nowKey = now.getFullYear() * 12 + now.getMonth();

 var frag = document.createDocumentFragment();

 years.forEach(function (year) {
 var events = byYear[year];
 if (!events.length) return;

 var heading = document.createElement("h2");
 heading.className = "speaking-year";
 heading.appendChild(document.createTextNode(year));

 var count = document.createElement("span");
 count.className = "speaking-year__count";
 count.textContent = events.length + (events.length === 1 ? " event" : " events");
 heading.appendChild(count);
 frag.appendChild(heading);

 var grid = document.createElement("ul");
 grid.className = "speaking-grid";

 events.forEach(function (ev) {
 var li = document.createElement("li");
 li.className = "speaking-card";

 if (ev.monthIndex &gt;= 0 &amp;&amp;
 (parseInt(year, 10) * 12 + ev.monthIndex) &gt; nowKey) {
 var badge = document.createElement("span");
 badge.className = "speaking-card__upcoming";
 badge.textContent = "Upcoming";
 li.appendChild(badge);
 }

 var a = document.createElement("a");
 a.className = "speaking-card__title";
 a.href = ev.href;
 a.target = "_blank";
 a.rel = "noopener noreferrer";
 a.textContent = ev.title;
 li.appendChild(a);

 var meta = document.createElement("div");
 meta.className = "speaking-card__meta";

 if (ev.month) {
 var mo = document.createElement("span");
 mo.className = "speaking-card__month";
 mo.textContent = ev.month;
 meta.appendChild(mo);
 }
 if (ev.meta) {
 var loc = document.createElement("span");
 loc.textContent = ev.meta;
 meta.appendChild(loc);
 }

 li.appendChild(meta);
 grid.appendChild(li);
 });

 frag.appendChild(grid);
 });

 dl.parentNode.replaceChild(frag, dl);
 } catch (e) {
 // Leave the original Sessionize markup in place.
 }
})();
&lt;/script&gt;</description></item><item><title>Private endpoints when using Azure Service Bus geo-replication</title><link>https://rikhepworth.com/posts/private-endpoints-when-using-azure-servicebus-geo-replication/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/private-endpoints-when-using-azure-servicebus-geo-replication/</guid><description>Connectivity gotcha when using private endpoints with Azure Service Bus georeplication</description></item><item><title>Microsoft Copilot in Azure - Review</title><link>https://rikhepworth.com/posts/microsoft-copilot-in-azure-review/</link><pubDate>Sat, 03 Jan 2026 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/microsoft-copilot-in-azure-review/</guid><description>Reviewing David Rendón and Steve Miles&amp;rsquo; book Microsoft Copliot in Azure: AI-powered cloud automation and optimization</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://rikhepworth.com/posts/microsoft-copilot-in-azure-review/feature.jpg"/></item><item><title>Azure for Developers - Review</title><link>https://rikhepworth.com/posts/azure-for-developers-review/</link><pubDate>Thu, 01 Jan 2026 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/azure-for-developers-review/</guid><description>Reviewing Kamil Mrzygłód&amp;rsquo;s book Azure for Developers</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://rikhepworth.com/posts/azure-for-developers-review/feature.jpg"/></item><item><title>The Azure Cloud Native Architecture Mapbook - Review</title><link>https://rikhepworth.com/posts/the-azure-cloud-native-architecture-mapbook-review/</link><pubDate>Mon, 08 Dec 2025 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/the-azure-cloud-native-architecture-mapbook-review/</guid><description>Reviewing Stéphane Eyskens book The Azure Cloud Native Architecture Mapbook</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://rikhepworth.com/posts/the-azure-cloud-native-architecture-mapbook-review/feature.jpg"/></item><item><title>Using PagerDuty Orchestration with Azure Alerts</title><link>https://rikhepworth.com/posts/using-pagerduty-orchestration-with-azure-alerts/</link><pubDate>Sat, 22 Mar 2025 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/using-pagerduty-orchestration-with-azure-alerts/</guid><description>Configuring Azure alert action groups with the PagerDuty v2 api</description></item><item><title>Configuring diagnostic settings for Azure services using bicep</title><link>https://rikhepworth.com/posts/configuring-diagnostic-settings-for-azure-services-using-bicep/</link><pubDate>Fri, 17 May 2024 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/configuring-diagnostic-settings-for-azure-services-using-bicep/</guid><description>If you&amp;rsquo;re hosting your application infrastructure in Azure and consolidate the diagnostic and audit information from your services into Log Analytics or elsewhere, it&amp;rsquo;s pretty easy to do using Bicep. It&amp;rsquo;s not very well documented, however, which is the reason for this post.</description></item><item><title>Deploying an Azure Container App Environment within a virtual network using bicep</title><link>https://rikhepworth.com/posts/deploying-an-azure-container-app-environment-within-a-virtual-network-using-bicep/</link><pubDate>Fri, 17 May 2024 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/deploying-an-azure-container-app-environment-within-a-virtual-network-using-bicep/</guid><description>When working on a project recently I needed to deploy a Container App Environment within a virtual network in Azure. Thanks to the joys of internet search, I started off reading the wrong bits of the official documention and got incredibly confused, and much of the community content about this uses out of date schemas and code. This article is so I don&amp;rsquo;t need to go through that again, and hopefully it will help others, too.</description></item><item><title>Using bicep to define Service Bus scaling rules for Azure Container Apps</title><link>https://rikhepworth.com/posts/using-bicep-to-define-service-bus-scaling-rules-for-azure-container-apps/</link><pubDate>Fri, 17 May 2024 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/using-bicep-to-define-service-bus-scaling-rules-for-azure-container-apps/</guid><description>I recently needed to set KEDA scaling rules on an Azure Container app that used the number of messages in a Service Bus queue. There&amp;rsquo;s plenty of info out there on the internet about scaling rules, but not when it comes to Service Bus, so I&amp;rsquo;m writing up what I learned here.</description></item><item><title>Accessing a local Hyper-V environment from the Android emulator</title><link>https://rikhepworth.com/posts/accessing-a-local-hyper-v-environment-from-the-android-emulator/</link><pubDate>Sat, 17 Feb 2024 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/accessing-a-local-hyper-v-environment-from-the-android-emulator/</guid><description>Not every project can host services in the cloud. If you have a local environment running on virtual machines, connecting to that from the Android emulator running on the same host can be tricky. This post details the solution I use and the tools needed to enable it.</description></item><item><title>Importing bicep lint output as test results in Azure DevOps pipelines</title><link>https://rikhepworth.com/posts/importing-bicep-lint-output-as-test-results-in-azure-devops-pipelines/</link><pubDate>Mon, 05 Feb 2024 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/importing-bicep-lint-output-as-test-results-in-azure-devops-pipelines/</guid><description>Bicep is a great improvement over ARM Templates but doesn&amp;rsquo;t remove the need to validate our code at build time. I could continue to use the ARM-TTK and validate the generated template, but bicep has it&amp;rsquo;s own built in rules. Getting build errors in a way that can provide meaningful information in my CI/CD tooling is an interesting challenge.</description></item><item><title>Calling Application Insights API using Powershell</title><link>https://rikhepworth.com/posts/calling-application-insights-api-using-powershell/</link><pubDate>Sat, 06 Aug 2022 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/calling-application-insights-api-using-powershell/</guid><description>If you have an application, instrumenting it with something like Application Insights to emit useful data is something I cannot espouse the benefits of enough. As a service, however, Application Insights can offer other benefits, such as Availability Tests to tell you if the application is accessible to your users.</description></item><item><title>Configuring BizTalk 2020 Application Insights telemetry behind a firewall</title><link>https://rikhepworth.com/posts/firewall-rules-for-biztalk-2020-application-insights-telemetry/</link><pubDate>Sat, 06 Aug 2022 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/firewall-rules-for-biztalk-2020-application-insights-telemetry/</guid><description>BizTalk 2020 allows you to connect it to an Application Insights instance, where it will send tracking data as customEvents so you see what&amp;rsquo;s going on. However, getting it working in an environment where security is important and the network team want to open the fewest paths through the firewall as possible is an exercise in patience. This blog post is as much aide memoire for me as an information post for you.</description></item><item><title>Deploying the ASDK for effective development use</title><link>https://rikhepworth.com/posts/deploying-the-asdk-for-effective-development-use/</link><pubDate>Sat, 22 Sep 2018 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/deploying-the-asdk-for-effective-development-use/</guid><description>&lt;p&gt;&lt;a href="https://azure.microsoft.com/en-us/overview/azure-stack/" target="_blank" rel="noreferrer"&gt;Microsoft Azure Stack&lt;/a&gt; is a truly unique beast in terms of the capabilities it can bring to an organisation, and the efficiencies it can bring to a project that spans Public Cloud and on-premises infrastructure through it’s consistency with public Azure.&lt;/p&gt;</description></item><item><title>Configure Server 2016 ADFS and WAP with custom ports using Powershell</title><link>https://rikhepworth.com/posts/configure-server-2016-adfs-and-wap-with-custom-ports-using-powershell/</link><pubDate>Fri, 24 Aug 2018 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/configure-server-2016-adfs-and-wap-with-custom-ports-using-powershell/</guid><description>&lt;p&gt;A pull request for Chris Gardner&amp;rsquo;s WebApplicationProxyDSC is now inbound after a frustrating week of trying to automate the configuration of ADFS and WAP on a Server 2016 lab.&lt;/p&gt;
&lt;p&gt;With Server 2016, the PowerShell commands to configure the ADFS and WAP servers include switches to specify a non-default port. I need to do this because the servers are behind a NetNat on a server hosting several labs, so port 443 is not available to me and I must use a different port.&lt;/p&gt;</description></item><item><title>Define Once, Deploy Everywhere (Sort of...)</title><link>https://rikhepworth.com/posts/define-once-deploy-everywhere-sort-of/</link><pubDate>Thu, 02 Mar 2017 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/define-once-deploy-everywhere-sort-of/</guid><description>&lt;h1 class="relative group"&gt;Using Lability, DSC and ARM to define and deploy multi-VM environments
 &lt;div id="using-lability-dsc-and-arm-to-define-and-deploy-multi-vm-environments" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#using-lability-dsc-and-arm-to-define-and-deploy-multi-vm-environments" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h1&gt;
&lt;p&gt;Configuration as code crops up a lot in conversation these days. We are searching for that DevOps Nirvana of a single definition of our environment that we can deploy anywhere.&lt;/p&gt;</description></item><item><title>Setting Enroll Permissions on ADCS Certificate Template using DSC</title><link>https://rikhepworth.com/posts/setting-enroll-permissions-on-adcs-certificate-template-using-dsc/</link><pubDate>Thu, 02 Mar 2017 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/setting-enroll-permissions-on-adcs-certificate-template-using-dsc/</guid><description>&lt;p&gt;As part of the work I have been doing around generating and managing &lt;a href="https://rikhepworth.com/post/2017/03/2017-03-02-define-once-deploy-everywhere-sort-of" &gt;lab environments using Lability&lt;/a&gt; and DSC, one of the things I needed to do was change the permissions on a certificate template within a DSC configuration. Previously, when deploying to Azure, I used the &lt;a href="https://rikhepworth.com/post/2015/08/2015-08-30-complex-azure-template-odyssey-part-two-domain-controller" &gt;PSPKI PowerShell modules within code executed by the Custom Script extension&lt;/a&gt;. I was very focused on sticking with DSC this time, which ruled out PSPKI. Whilst there is a DSC module available to configure Certificate Services itself, this does not extend to managing Certificate Templates.&lt;/p&gt;</description></item><item><title>Creating Website Slots and SQL Elastic Pools using Azure Resource Templates</title><link>https://rikhepworth.com/posts/creating-website-slots-and-sql-elastic-pools-using-azure-resource-templates/</link><pubDate>Wed, 18 Jan 2017 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/creating-website-slots-and-sql-elastic-pools-using-azure-resource-templates/</guid><description>&lt;p&gt;Recently I have been helping a number of organisations automate the deployment of their applications to Azure and came across a couple of scenarios that were not documented: Deploying an App Services web site with slots and SQL connection string settings, and the creation of a SQL Elastic Pool. Of those, the SQL Elastic Pool I found to be written up already by Vincent-Philipe Lauzon and all credit to him - my template draws on his &lt;a href="https://vincentlauzon.com/2016/12/21/azure-sql-elastic-pool-arm-templates/" target="_blank" rel="noreferrer"&gt;excellent article&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Notes from the field: Using Hyper-V Nat Switch in Windows 10</title><link>https://rikhepworth.com/posts/notes-from-the-field-using-hyper-v-nat-switch-in-windows-10/</link><pubDate>Fri, 08 Apr 2016 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/notes-from-the-field-using-hyper-v-nat-switch-in-windows-10/</guid><description>&lt;p&gt;The new NAT virtual switch that can be created on Windows 10 for Hyper-V virtual machines is a wonderful thing if you&amp;rsquo;re an on-the-go evangelist like myself. For more information on how to create one, see &lt;a href="http://www.thomasmaurer.ch/2015/11/hyper-v-virtual-switch-using-nat-configuration/" target="_blank" rel="noreferrer"&gt;Thomas Maurer&amp;rsquo;s post&lt;/a&gt; on the subject.&lt;/p&gt;</description></item><item><title>Unblocking a stuck Lab Manager Environment (the hard way)</title><link>https://rikhepworth.com/posts/unblocking-a-stuck-lab-manager-environment-the-hard-way/</link><pubDate>Thu, 17 Mar 2016 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/unblocking-a-stuck-lab-manager-environment-the-hard-way/</guid><description>&lt;p&gt;This is a post so I don’t forget how I fixed access to one of our environments yesterday, and hopefully it will be useful to some of you.&lt;/p&gt;
&lt;p&gt;We have a good many pretty complex environments deployed to our lab hyper-V servers, controlled by Lab manager. Operations such as starting, stopping or repairing those environments can take a long, long time, but this time we had one that was quite definitely stuck. The lab view showed the many servers in the lab with green progress bars about halfway across but after many hours we saw no progress. The trouble is, at this point you can’t issue any other commands to the environment from within the Lab Manager console – it’s impossible to cancel the operation and regain access to the environment.&lt;/p&gt;</description></item><item><title>Net Writer: A great UWP blog editor</title><link>https://rikhepworth.com/posts/net-writer-a-great-uwp-blog-editor/</link><pubDate>Sun, 13 Mar 2016 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/net-writer-a-great-uwp-blog-editor/</guid><description>&lt;p&gt;I came across Net Writer some months ago, when it&amp;rsquo;s creator, Ed Anderson blogged about how he&amp;rsquo;d taken the newly-released &lt;a href="http://openlivewriter.org/" target="_blank" rel="noreferrer"&gt;Open Live Writer&lt;/a&gt; code and used it in his just-started Universal Windows Platform (UWP) app for Windows 10. In January it only supported blogger accounts, which meant that I was unable to use it. However, I checked again this weekend and discovered that it now supports a wide range of blog software including &lt;a href="http://dotnetblogengine.net/" target="_blank" rel="noreferrer"&gt;BlogEngine.net&lt;/a&gt; that powers &lt;a href="http://blogs.blackmarble.co.uk/" target="_blank" rel="noreferrer"&gt;blogs.blackmarble.co.uk&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>My Resource Templates from demos are now on GitHub</title><link>https://rikhepworth.com/posts/my-resource-templates-from-demos-are-now-on-github/</link><pubDate>Fri, 26 Feb 2016 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/my-resource-templates-from-demos-are-now-on-github/</guid><description>&lt;p&gt;I’ve had a number of people ask me if I can share the templates I use in my Resource Template sessions at conferences. It’s taken me a while to find the time, but I have created a &lt;a href="https://github.com/rikhepworth/ResourceTemplates" target="_blank" rel="noreferrer"&gt;repo on GitHub&lt;/a&gt; and there is a new Visual Studio solution and deployment project with my code.&lt;/p&gt;</description></item><item><title>Installing Windows 10 RSAT Tools on EN-GB Media-Installed Systems</title><link>https://rikhepworth.com/posts/installing-windows-10-rsat-tools-on-en-gb-media-installed-systems/</link><pubDate>Fri, 13 Nov 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/installing-windows-10-rsat-tools-on-en-gb-media-installed-systems/</guid><description>&lt;p&gt;This post is an aide memoir so I don’t have to suffer the same annoyance and frustration at what should be an easy task.&lt;/p&gt;
&lt;p&gt;I’ve now switched to my Surface Pro 3 as my only system, thanks to the lovely new Pro 4 Type Cover and Surface Dock. That meant that I needed the Remote Server Administration Tools installing. Doing that turned out to be much more of an odyssey that it should have been and I’m writing this in the hope that it will allow others to quickly find the information I struggled to.&lt;/p&gt;</description></item><item><title>Convert new VM’s dynamic IP address to static with Azure Resource Templates</title><link>https://rikhepworth.com/posts/convert-new-vms-dynamic-ip-address-to-static-with-azure-resource-templates/</link><pubDate>Sun, 01 Nov 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/convert-new-vms-dynamic-ip-address-to-static-with-azure-resource-templates/</guid><description>&lt;p&gt;Over the past few posts on this blog I’ve been documenting the templates I have been working on for Black Marble. In a previous sequence I showed how you can use nested deployments to keep your templates simple and still push out complex environments. The problem with those examples is that they are very fixed in what they do. The templates create a number of virtual machines on a virtual network, with static IP addresses for each machine.&lt;/p&gt;</description></item><item><title>Optimising IaaS deployments in Azure Resource Templates</title><link>https://rikhepworth.com/posts/optimising-iaas-deployments-in-azure-resource-templates/</link><pubDate>Sun, 01 Nov 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/optimising-iaas-deployments-in-azure-resource-templates/</guid><description>&lt;p&gt;Unlike most of my recent posts this one won’t have code in it. Instead I want to talk about concepts and how you should look long and hard at your templates to optimise deployment.&lt;/p&gt;</description></item><item><title>Useful links from The ART of Modern Azure Deployments</title><link>https://rikhepworth.com/posts/useful-links-from-the-art-of-modern-azure-deployments/</link><pubDate>Sun, 01 Nov 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/useful-links-from-the-art-of-modern-azure-deployments/</guid><description>&lt;p&gt;Within a few days of each other I spoke about Azure Resource Templates at both &lt;a href="http://www.dddnorth.co.uk/" target="_blank" rel="noreferrer"&gt;DDDNorth&lt;/a&gt; 2015 and Integration Mondays run by the &lt;a href="http://www.integrationusergroup.com/" target="_blank" rel="noreferrer"&gt;Integration User Group&lt;/a&gt;. I’d like to thank all of you who attended both and have been very kind in your feedback afterwards.&lt;/p&gt;</description></item><item><title>Using Objects in Azure Resource Templates</title><link>https://rikhepworth.com/posts/using-objects-in-azure-resource-templates/</link><pubDate>Sun, 01 Nov 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/using-objects-in-azure-resource-templates/</guid><description>&lt;p&gt;Over the past few weeks I’ve been refactoring and improving the templates that I have been creating for Black Marble to deploy environments in Azure. This is the first post of a few talking about some of the more advanced stuff I’m now doing.&lt;/p&gt;</description></item><item><title>Using References and Outputs in Azure Resource Templates</title><link>https://rikhepworth.com/posts/using-references-and-outputs-in-azure-resource-templates/</link><pubDate>Sun, 01 Nov 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/using-references-and-outputs-in-azure-resource-templates/</guid><description>&lt;p&gt;As you work more with Azure Resource Templates you will find that you need to pass information from one resource you have created into another. This is fine if you had the information to begin with within your variables and parameters, but what if it’s something you &lt;em&gt;cannot&lt;/em&gt; know before deploy, such as the dynamic IP address of your new VM, or the FQDN of your new public IP address for your service?&lt;/p&gt;</description></item><item><title>Complex Azure Odyssey Part Four: WAP Server</title><link>https://rikhepworth.com/posts/complex-azure-odyssey-part-four-wap-server/</link><pubDate>Sun, 30 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/complex-azure-odyssey-part-four-wap-server/</guid><description>&lt;p&gt;&lt;a href="https://rikhepworth.com/post/2015/08/2015-08-23-complex-azure-template-odyssey-part-one-the-environment/" &gt;Part One&lt;/a&gt; of this series covered the project itself and the overall template structure. &lt;a href="https://rikhepworth.com/post/2015/08/2015-08-30-complex-azure-template-odyssey-part-two-domain-controller/" &gt;Part Two&lt;/a&gt; went through how I deploy the Domain Controller in depth. &lt;a href="post/2015/08/2015-08-30-complex-azure-template-odyssey-part-three-adfs-server/" &gt;Part Three&lt;/a&gt; talks about deploying my ADFS server and in this final part I will show you how to configure the WAP server that faces the outside world.&lt;/p&gt;</description></item><item><title>Complex Azure Template Odyssey Part Three: ADFS Server</title><link>https://rikhepworth.com/posts/complex-azure-template-odyssey-part-three-adfs-server/</link><pubDate>Sun, 30 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/complex-azure-template-odyssey-part-three-adfs-server/</guid><description>&lt;p&gt;&lt;a href="http://blogs.blackmarble.co.uk/blogs/rhepworth/post/2015/08/23/Complex-Azure-Template-Odyssey-Part-One-The-Environment.aspx" target="_blank" rel="noreferrer"&gt;Part One&lt;/a&gt; of this series covered the project itself and the overall template structure. &lt;a href="http://blogs.blackmarble.co.uk/blogs/rhepworth/post/2015/08/30/Complex-Azure-Template-Odyssey-Part-Two-Domain-Controller.aspx" target="_blank" rel="noreferrer"&gt;Part Two&lt;/a&gt; went through how I deploy the Domain Controller in depth. This post will focus on the next server in the chain: The ADFS server that is required to enable authentication in the application which will eventually be installed on this environment.&lt;/p&gt;</description></item><item><title>Complex Azure Template Odyssey Part Two: Domain Controller</title><link>https://rikhepworth.com/posts/complex-azure-template-odyssey-part-two-domain-controller/</link><pubDate>Sun, 30 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/complex-azure-template-odyssey-part-two-domain-controller/</guid><description>&lt;p&gt;In &lt;a href="http://blogs.blackmarble.co.uk/rhepworth/2015/08/23/complex-azure-template-odyssey-part-one-the-environment/" target="_blank" rel="noreferrer"&gt;part one&lt;/a&gt; of this series of posts I talked about the project driving my creation of these Azure Resource Templates, the structure of the template and what resource I was deploying. This post will go through the deployment and configuration of the first VM which will become my domain controller and certificate server. In order to achieve my goals I need to deploy the VM, the DSC extension and finally the custom script extension to perform actions that current DSC modules can’t. I’ll show you the template code, the DSC code and the final scripts and talk about the gotchas I encountered on the way.&lt;/p&gt;</description></item><item><title>An Introduction To Azure Resource Templates</title><link>https://rikhepworth.com/posts/an-introduction-to-azure-resource-templates/</link><pubDate>Sun, 23 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/an-introduction-to-azure-resource-templates/</guid><description>&lt;p&gt;I have spent a good deal of time over the last month or two building an Azure Resource Template to deploy a relatively complicated IaaS environment. In doing so I’ve hit a variety of problems along the way and I though that a number of blog posts were in order to share what I’ve learned. I will write a detailed post on certain specific servers within the environment shortly. This post will describe Azure Resource Template basics, problems I hit and some decisions I made to overcome issues. Further posts will detail my environment and specific solutions to creating my configuration.&lt;/p&gt;</description></item><item><title>Complex Azure Template Odyssey Part One: The Environment</title><link>https://rikhepworth.com/posts/complex-azure-template-odyssey-part-one-the-environment/</link><pubDate>Sun, 23 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/complex-azure-template-odyssey-part-one-the-environment/</guid><description>&lt;p&gt;&lt;a href="https://rikhepworth.com/post/2015/08/2015-08-30-complex-azure-template-odyssey-part-two-domain-controller" &gt;Part Two&lt;/a&gt; | &lt;a href="https://rikhepworth.com/post/2015/08/2015-08-30-complex-azure-template-odyssey-part-three-adfs-server" &gt;Part Three&lt;/a&gt; | &lt;a href="https://rikhepworth.com/post/2015/08/2015-08-30-complex-azure-odyssey-part-four-wap-server" &gt;Part Four&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Over the past month or two I’ve been creating an Azure Resource Template to deploy and environment which, previously, we’d created old-style PowerShell scripts to deploy. In theory, the Resource Template approach would make the deployment quicker, easier to trigger from tooling like Release Manager and make the code easier to read.&lt;/p&gt;</description></item><item><title>Speaking at CloudBurst in September</title><link>https://rikhepworth.com/posts/speaking-at-cloudburst-in-september/</link><pubDate>Sun, 23 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-cloudburst-in-september/</guid><description>&lt;p&gt;I’ve never been to Sweden, so I’m really looking forward to September, when I’ll be speaking at &lt;a href="http://t.co/bMjL5geWfi" target="_blank" rel="noreferrer"&gt;CloudBurst&lt;/a&gt;. Organised by the Swedish Azure User Group (SWAG – love it!), this conference is also streamed and recorded and the sessions will be available on Channel 9. The list of speakers and topics promise some high-quality and interesting sessions and I urge you to attend if you can, and tune in to the live stream if you can’t.&lt;/p&gt;</description></item><item><title>Using the customScriptExtension in Azure Resource Templates</title><link>https://rikhepworth.com/posts/using-the-customscriptextension-in-azure-resource-templates/</link><pubDate>Sun, 23 Aug 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/using-the-customscriptextension-in-azure-resource-templates/</guid><description>&lt;p&gt;Documentation for using the customScriptExtension for Virtual Machines in Azure through Resource Templates is pretty much non-existent at time of writing, and the articles on using it through PowerShell are just plain wrong when it comes to templates. This post is accurate at time of writing and will show you how to deploy PowerShell scripts and resources to an Azure Virtual Machine through a Resource Template.&lt;/p&gt;</description></item><item><title>My Future Decoded session is now online</title><link>https://rikhepworth.com/posts/my-future-decoded-session-is-now-online/</link><pubDate>Tue, 27 Jan 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/my-future-decoded-session-is-now-online/</guid><description>&lt;p&gt;&lt;a href="https://twitter.com/susan_a_smith" target="_blank" rel="noreferrer"&gt;Susan Smith&lt;/a&gt; has posted an interesting &lt;a href="http://blogs.technet.com/b/uktechnet/archive/2015/01/27/what-is-devops_3f00_.aspx" target="_blank" rel="noreferrer"&gt;DevOps article&lt;/a&gt; on the TechNet UK blog. Hidden away in a footnote is a link to recordings and slide decks for the DevOps track at Future Decoded, including my own session. Both the &lt;a href="https://onedrive.live.com/?cid=C70F51B3B88D348E&amp;amp;id=C70F51B3B88D348E%21242240&amp;amp;authkey=%21AKRGQkzSgHday7A#cid=C70F51B3B88D348E&amp;amp;id=C70F51B3B88D348E%21281786&amp;amp;v=3&amp;amp;authkey=%21AKRGQkzSgHday7A" target="_blank" rel="noreferrer"&gt;video&lt;/a&gt; and my &lt;a href="https://onedrive.live.com/view.aspx?cid=C70F51B3B88D348E&amp;amp;resid=C70F51B3B88D348E%21242244&amp;amp;app=WordPdf&amp;amp;authkey=%21AKRGQkzSgHday7A&amp;amp;wdo=1" target="_blank" rel="noreferrer"&gt;deck&lt;/a&gt; are available for you to view online or download.&lt;/p&gt;</description></item><item><title>Speaking at Techorama 2015</title><link>https://rikhepworth.com/posts/speaking-at-techorama-2015/</link><pubDate>Tue, 27 Jan 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-techorama-2015/</guid><description>&lt;p&gt;&lt;a href="http://www.techorama.be/" target="_blank" rel="noreferrer"&gt;&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt="website-header-22[1]"
 src="images/website-header-22%5B1%5D.jpg"
 &gt;&lt;figcaption&gt;website-header-22[1]&lt;/figcaption&gt;&lt;/figure&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I’m excited to be speaking at the &lt;a href="http://www.techorama.be/" target="_blank" rel="noreferrer"&gt;Techorama&lt;/a&gt; conference in Belgium this May. Richard spoke last year (&lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/post/2015/01/27/Speaking-at-Techorama-in-May1.aspx" target="_blank" rel="noreferrer"&gt;and is doing so again&lt;/a&gt;) and came back raving about the great time he had, so I’m really looking forward to it. Go on, take a look at the site (the &lt;a href="http://www.techorama.be/agenda-2015/" target="_blank" rel="noreferrer"&gt;agenda&lt;/a&gt; is steadily filling out) and register!&lt;/p&gt;</description></item><item><title>Get informed with TechDays Online 2015</title><link>https://rikhepworth.com/posts/get-informed-with-techdays-online-2015/</link><pubDate>Tue, 20 Jan 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/get-informed-with-techdays-online-2015/</guid><description>&lt;p&gt;Block out your diary from February 3rd until February 5th. The great guys at Microsoft DX are running another TechDays Online event and it’s absolutely worth your time. I had the absolute pleasure to be involved last year and will again this year, both in front of and behind the camera.&lt;/p&gt;</description></item><item><title>Speaking at SQLBits 2015</title><link>https://rikhepworth.com/posts/speaking-at-sqlbits-2015/</link><pubDate>Tue, 20 Jan 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-sqlbits-2015/</guid><description>&lt;p&gt;We’re only half way through January and this year is already busy. I am really excited to be speaking at SQLBits this year!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sqlbits.com/" target="_blank" rel="noreferrer"&gt;SQLBits&lt;/a&gt; is a conference that various members of the Black Marble team attend regularly and rave about. It’s &lt;em&gt;the&lt;/em&gt; event if you want to gain knowledge and insight into all aspects of databases and data management, reporting, BI and more. Microsoft are a platinum sponsor of the event this year and a whole heap of big names are flying in to present.&lt;/p&gt;</description></item><item><title>Want to know what’s going on? Come to the Black Marble Tech Update</title><link>https://rikhepworth.com/posts/want-to-know-whats-going-on-come-to-the-black-marble-tech-update/</link><pubDate>Tue, 20 Jan 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/want-to-know-whats-going-on-come-to-the-black-marble-tech-update/</guid><description>&lt;p&gt;It’s January, which can only mean one thing. It’s time for the annual Black Marble Tech Update. If you’re an IT or development manager, come along to hear the stuff you need to know about Microsoft’s releases and updates last year and what we know so far about what is coming this year.&lt;/p&gt;</description></item><item><title>Why you should attend a Microsoft IT Camp</title><link>https://rikhepworth.com/posts/why-you-should-attend-a-microsoft-it-camp/</link><pubDate>Tue, 20 Jan 2015 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/why-you-should-attend-a-microsoft-it-camp/</guid><description>&lt;p&gt;I’ve posted before about helping out at the IT Camps run by the Microsoft DX team. I’m a fervent supporter of them – they are hands-on days of technical content run by great people who know their stuff and, importantly, they are run around the country.&lt;/p&gt;</description></item><item><title>Speaking on DevOps at Future Decoded</title><link>https://rikhepworth.com/posts/speaking-on-devops-at-future-decoded/</link><pubDate>Thu, 06 Nov 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-on-devops-at-future-decoded/</guid><description>&lt;p&gt;I am now going to speaking on the DevOps track at &lt;a href="http://www.microsoft.com/en-gb/about/future-decoded-2014" target="_blank" rel="noreferrer"&gt;Future Decoded&lt;/a&gt;. I’ll be channelling &lt;a href="https://blogs.blackmarble.co.uk/blogs/rfennell" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt; to talk about how our dev-release pipeline is constructed at Black Marble and how the various Microsoft tools that we use could be swapped out for alternatives in a heterogeneous environment.&lt;/p&gt;</description></item><item><title>A week with the Surface Pro 3</title><link>https://rikhepworth.com/posts/a-week-with-the-surface-pro-3/</link><pubDate>Sat, 26 Jul 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/a-week-with-the-surface-pro-3/</guid><description>&lt;p&gt;&lt;a href="http://blogs.blackmarble.co.uk/blogs/boss/" target="_blank" rel="noreferrer"&gt;Robert&lt;/a&gt; unexpectedly (gotta love him!) gave me a surprise present in the form of a Microsoft Surface Pro 3. I’ve now been using it for a week and I thought it was time to put my thoughts into words.&lt;/p&gt;</description></item><item><title>Automating TFS Build Server deployment with SCVMM and PowerShell</title><link>https://rikhepworth.com/posts/automating-tfs-build-server-deployment-with-scvmm-and-powershell/</link><pubDate>Thu, 17 Jul 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/automating-tfs-build-server-deployment-with-scvmm-and-powershell/</guid><description>&lt;p&gt;&lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt; and I have been busy this week. It started with a conversation about automating the installation of new build servers. Richard was looking at writing PowerShell to install and configure the TFS build agent, along with all the various SDKs that we use across all out projects. Our current array of build servers have all been built by hand and each has a different set of SDKs to build specific project types. Richard’s aim is to make a single, homogenous build server configuration so we can then scale out for capacity much more quickly than before.&lt;/p&gt;</description></item><item><title>SharePoint 2013: Creating Managed Metadata Columns that allow Fill-In Choices</title><link>https://rikhepworth.com/posts/sharepoint-2013-creating-managed-metadata-columns-that-allow-fill-in-choices/</link><pubDate>Thu, 17 Jul 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-2013-creating-managed-metadata-columns-that-allow-fill-in-choices/</guid><description>&lt;p&gt;This is a relatively quick post. There’s a fair bunch of stuff written about creating columns in SharePoint 2013 that use Managed Metadata termsets. However, some of it is a pain to find and then some. I have had to deal with two frustrating issues lately, both of which boil down to poor sharepoint documentation.&lt;/p&gt;</description></item><item><title>Safely modify SharePoint 2013 Web.Config files using PowerShell</title><link>https://rikhepworth.com/posts/safely-modify-sharepoint-2013-web-config-files-using-powershell/</link><pubDate>Tue, 01 Jul 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/safely-modify-sharepoint-2013-web-config-files-using-powershell/</guid><description>&lt;p&gt;One of the things we learn early in our SharePoint careers was not to manually edit the web.config files of a web application. SharePoint involves multiple servers and has its own mechanisms for managing web.config updates.&lt;/p&gt;</description></item><item><title>Adding USB 3 to my Lenovo X220 Tablet</title><link>https://rikhepworth.com/posts/adding-usb-3-to-my-lenovo-x220-tablet/</link><pubDate>Sun, 08 Jun 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/adding-usb-3-to-my-lenovo-x220-tablet/</guid><description>&lt;p&gt;My X220 is a stalwart machine. It’s built like a tank and can be upgraded in a numb of ways. Mine now has 16Gb of RAM and two SSDs which allow me to run multi-VM environments for development and demo. Unfortunately, however, there is no USB 3 on the laptop. That’s a pain if I need to copy stuff on and off via USB, or run VMs from a USB 3 pod.&lt;/p&gt;</description></item><item><title>Enabling Data Deduplication on my Windows 8.1 Laptop</title><link>https://rikhepworth.com/posts/enabling-data-deduplication-on-my-windows-8-1-laptop/</link><pubDate>Sun, 08 Jun 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/enabling-data-deduplication-on-my-windows-8-1-laptop/</guid><description>&lt;p&gt;&lt;strong&gt;Lets get the disclaimer out of the way first:&lt;/strong&gt; What I’ve done is absolutely unsupported by Microsoft. Just because it works for me does not guarantee it will work for you and I am not in any way recommending that you follow my lead!&lt;/p&gt;</description></item><item><title>Microsoft People-centric IT Roadshow</title><link>https://rikhepworth.com/posts/microsoft-people-centric-it-roadshow/</link><pubDate>Sun, 08 Jun 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/microsoft-people-centric-it-roadshow/</guid><description>&lt;p&gt;Microsoft UK have been running technical events around the UK for a couple of years now, and it’s a great thing. Too many events are focused in the south of England and there are lots of IT pros north of the M25!&lt;/p&gt;</description></item><item><title>Our TFS Lab Management Infrastructure</title><link>https://rikhepworth.com/posts/our-tfs-lab-management-infrastructure/</link><pubDate>Sun, 08 Jun 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/our-tfs-lab-management-infrastructure/</guid><description>&lt;p&gt;Richard and I spend a good deal of time talking about Lab Manager and our environments. I’ve written here before about our migration to the latest versions of the various components of Lab and both Richard and I have delivered sessions at user groups and conferences.&lt;/p&gt;</description></item><item><title>Getting ready for Global Windows Azure Bootcamp 2</title><link>https://rikhepworth.com/posts/getting-ready-for-global-windows-azure-bootcamp-2/</link><pubDate>Wed, 26 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/getting-ready-for-global-windows-azure-bootcamp-2/</guid><description>&lt;p&gt;It’s a busy week. I’m speaking at the [Black Marble-hosted GWAB2 event](&lt;a href="http://www.blackmarble.co.uk/events.aspx?event=" target="_blank" rel="noreferrer"&gt;http://www.blackmarble.co.uk/events.aspx?event=&lt;/a&gt; Global Windows Azure Bootcamp 2) this Saturday, along with &lt;a href="http://blogs.blackmarble.co.uk/blogs/sspencer" target="_blank" rel="noreferrer"&gt;Steve Spencer&lt;/a&gt; and &lt;a href="http://www.andrewwestgarth.co.uk/Blog/default.aspx" target="_blank" rel="noreferrer"&gt;Andy Westgarth&lt;/a&gt;. &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt; and &lt;a href="http://blogs.blackmarble.co.uk/blogs/boss" target="_blank" rel="noreferrer"&gt;Robert&lt;/a&gt; will also be on hand which means between us we should be able to cover questions on much of the newly re-monikered Microsoft Azure.&lt;/p&gt;</description></item><item><title>Migrating to SCVMM 2012 R2 in a TFS Lab Scenario</title><link>https://rikhepworth.com/posts/migrating-to-scvmm-2012-r2-in-a-tfs-lab-scenario/</link><pubDate>Thu, 20 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/migrating-to-scvmm-2012-r2-in-a-tfs-lab-scenario/</guid><description>&lt;p&gt;Last week I moved our SCVMM from 2012 with service pack 1 to 2012 R2. Whilst the actual process was much simpler than I expected, we had a pretty big constraint imposed upon us by Lab Manager that largely dictated our approach.&lt;/p&gt;</description></item><item><title>Creating Azure Virtual Networks using Powershell and XML Part 4: Local networks and site-site connectivity</title><link>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml-part-4-local-networks-and-site-site-connectivity/</link><pubDate>Sun, 09 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml-part-4-local-networks-and-site-site-connectivity/</guid><description>&lt;p&gt;This is part 4 of a series of posts building powershell functions to create and modify Azure Virtual Networks. Previous posts have covered functions to &lt;a href="https://rikhepworth.com/post/2014/03/2014-03-04-Creating-Azure-Virtual-Networks-using-Powershell-and-XML-Part-2-Powershell-functions" &gt;create virtual networks&lt;/a&gt; and then &lt;a href="https://rikhepworth.com/post/2014/03/2014-03-04-Creating-Azure-Virtual-Networks-using-Powershell-and-XML-Part-3-Powershell-functions-for-deletion" &gt;delete them&lt;/a&gt;. In this part, I’m going to show you functions that will define local networks and configure site-site VPN connectivity between a local and virtual network.&lt;/p&gt;</description></item><item><title>Gary Lapointe to the rescue: Using his Office 365 powershell tools to recover from a corrupted masterpage</title><link>https://rikhepworth.com/posts/gary-lapointe-to-the-rescue-using-his-office-365-powershell-tools-to-recover-from-a-corrupted-masterpage/</link><pubDate>Fri, 07 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/gary-lapointe-to-the-rescue-using-his-office-365-powershell-tools-to-recover-from-a-corrupted-masterpage/</guid><description>&lt;p&gt;I also need to give credit to the Office 365 support team over this. They were very quick in their response to my support incident, but I was quicker!&lt;/p&gt;
&lt;p&gt;Whilst working on an Office 365 site for a customer today I had a moment of blind panic. The site is using custom branding and I was uploading a new version of the master page to the site when things went badly wrong. The upload appeared to finish OK but the dialog that was shown post upload was not the usual content type/fill in the fields form, but a plain white box. I left it for a few minutes but nothing changed. Unperturbed, I returned to the mater page gallery… Except I couldn’t. All I got was a white page. No errors, nothing. No pages worked at all – no settings pages, no content pages, nothing at all.&lt;/p&gt;</description></item><item><title>Creating Azure Virtual Networks using Powershell and XML Part 2: Powershell functions</title><link>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml-part-2-powershell-functions/</link><pubDate>Tue, 04 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml-part-2-powershell-functions/</guid><description>&lt;p&gt;In my previous post I talked about what &lt;a href="https://rikhepworth.com/post/2014/03/2014-03-03-Creating-Azure-Virtual-Networks-using-Powershell-and-XML" &gt;was involved in creating an Azure network configuration using Powershell&lt;/a&gt;. In this post I’ll cover where I’ve got so so far, which is a series of functions that do the following:&lt;/p&gt;</description></item><item><title>Creating Azure Virtual Networks using Powershell and XML Part 3: Powershell functions for deletion</title><link>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml-part-3-powershell-functions-for-deletion/</link><pubDate>Tue, 04 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml-part-3-powershell-functions-for-deletion/</guid><description>&lt;p&gt;This is part three of a series of posts about using powershell to script the creation, deletion and (hopefully) modification of Azure Virtual Networks. In &lt;a href="https://rikhepworth.com/post/2014/03/2014-03-03-Creating-Azure-Virtual-Networks-using-Powershell-and-XML" &gt;part 1&lt;/a&gt; I went through the key steps with some rough code. &lt;a href="https://rikhepworth.com/post/2014/03/2014-03-04-Creating-Azure-Virtual-Networks-using-Powershell-and-XML-Part-2-Powershell-functions" &gt;Part 2&lt;/a&gt; showed the much tidier functions I’ve now written to create virtual network elements. This is part 3, and I will present functions to remove elements. Hopefully I will manage to get the modification functions to work which be a fourth installment!&lt;/p&gt;</description></item><item><title>Creating Azure Virtual Networks using Powershell and XML</title><link>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml/</link><pubDate>Mon, 03 Mar 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/creating-azure-virtual-networks-using-powershell-and-xml/</guid><description>&lt;p&gt;I’ll be honest, I expected this task to be easier than it is. What I’m working on is some powershell that we might use as part of automated build processes that will create a new Virtual Network in an Azure subscription. What I’m after is to &lt;em&gt;add&lt;/em&gt; a new network to the existing configuration.&lt;/p&gt;</description></item><item><title>Declaratively create Composed Looks in SharePoint 2013 with elements.xml</title><link>https://rikhepworth.com/posts/declaratively-create-composed-looks-in-sharepoint-2013-with-elements-xml/</link><pubDate>Fri, 28 Feb 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/declaratively-create-composed-looks-in-sharepoint-2013-with-elements-xml/</guid><description>&lt;p&gt;This is really a follow-up to my earlier post about &lt;a href="https://rikhepworth.com/post/2014/022/2014-02-03-Six-tips-when-deploying-SharePoint-2013-masterpages-page-layouts-and-display-templatesx" &gt;tips with SharePoint publishing customisations&lt;/a&gt;. Composed looks have been a part of a couple of projects recently. In the first, a solution for on-premise, we used code in a feature receiver to add a number of items to the Composed Looks list. In the second, for Office 365, a bit of research offered an alternative approach with no code.&lt;/p&gt;</description></item><item><title>Speaking at NEBytes on February 19th</title><link>https://rikhepworth.com/posts/speaking-at-nebytes-on-february-19th/</link><pubDate>Sat, 08 Feb 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-nebytes-on-february-19th/</guid><description>&lt;p&gt;I’m pleased to have been asked to &lt;a href="http://nebytes.net/post/.aspx" target="_blank" rel="noreferrer"&gt;speak at NEBytes again&lt;/a&gt; – a great user group that meets in Newcastle. I’ll be speaking about customising SharePoint 2013 using master pages, themes and search templates, along the same lines as my &lt;a href="https://rikhepworth.com/post/2014/02/2014-02-03-Six-tips-when-deploying-SharePoint-2013-masterpages-page-layouts-and-display-templates" &gt;recent blog post&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Using the Dell Venue 8 Pro Stylus</title><link>https://rikhepworth.com/posts/using-the-dell-venue-8-pro-stylus/</link><pubDate>Wed, 05 Feb 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/using-the-dell-venue-8-pro-stylus/</guid><description>&lt;p&gt;You will recall from my &lt;a href="http://blogs.blackmarble.co.uk/blogs/rhepworth/post/2014/01/26/Living-with-the-Dell-Venue-8-Pro.aspx" target="_blank" rel="noreferrer"&gt;earlier post&lt;/a&gt; how much I like my Dell Venue 8 Pro and how disappointed I was that the stylus was on back-order until March.&lt;/p&gt;
&lt;p&gt;Imagine my surprise, then, when a package arrived at the beginning of this week with a shiny new stylus in it!&lt;/p&gt;</description></item><item><title>Six tips when deploying SharePoint 2013 masterpages, page layouts and display templates</title><link>https://rikhepworth.com/posts/six-tips-when-deploying-sharepoint-2013-masterpages-page-layouts-and-display-templates/</link><pubDate>Mon, 03 Feb 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/six-tips-when-deploying-sharepoint-2013-masterpages-page-layouts-and-display-templates/</guid><description>&lt;p&gt;I’ve been hat-swapping again since just before christmas (which explains the lack of Azure IaaS posts I’m afraid). I’ve been working on a large SharePoint 2013 project, most lately on customising a number of elements around publishing. Getting those custom elements into SharePoint from my solution raised a number of little snags, most of which were solved by the great internet hive mind. It took me a long time to find some of those fixes, however, so I thought I’d collect them here and reference the original posts where appropriate.&lt;/p&gt;</description></item><item><title>BlogEngine.Net automatically tweeting on new posts</title><link>https://rikhepworth.com/posts/blogengine-net-automatically-tweeting-on-new-posts/</link><pubDate>Mon, 27 Jan 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/blogengine-net-automatically-tweeting-on-new-posts/</guid><description>&lt;p&gt;I sadly miss Twitter Notify, the plugin for Windows Live Writer that would tweet when I published a new post. Fortunately, there are a couple of plugins for BlogEngine.Net that purport to do the same thing. I’ve just deployed SocialPublish to our server. Configuration is a bit fiddly, and I’m not sure yet how well it will work with our multi-tennant structure. This is my first post after activation so I’m keen to see if it tweets when I publish!&lt;/p&gt;</description></item><item><title>Living with the Dell Venue 8 Pro</title><link>https://rikhepworth.com/posts/living-with-the-dell-venue-8-pro/</link><pubDate>Sun, 26 Jan 2014 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/living-with-the-dell-venue-8-pro/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="venu8prohq"
 width="480"
 height="480"
 src="https://rikhepworth.com/posts/living-with-the-dell-venue-8-pro/images/venu8prohq.jpg"
 srcset="https://rikhepworth.com/posts/living-with-the-dell-venue-8-pro/images/venu8prohq.jpg 800w, https://rikhepworth.com/posts/living-with-the-dell-venue-8-pro/images/venu8prohq.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/living-with-the-dell-venue-8-pro/images/venu8prohq.jpg"&gt;&lt;figcaption&gt;venu8prohq&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;Some time ago I wrote about how disappointed I was with the Acer W3 tablet. I really wanted that small form factor device, but the Acer fell short in pretty much every regard. Late last year Dell launched the Venue 8 Pro – the first of the new generation of 8” Windows tablets out of the gate. I sat on the fence for a while, looking at community comments on the the device, then finally ordered one after speaking to Simon May about &lt;a href="http://simon-may.com/device-review-dell-venue-8-pro/" target="_blank" rel="noreferrer"&gt;his impressions of it&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Dealing with AD sync issues in an Azure hybrid deployment</title><link>https://rikhepworth.com/posts/dealing-with-ad-sync-issues-in-an-azure-hybrid-deployment/</link><pubDate>Tue, 05 Nov 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/dealing-with-ad-sync-issues-in-an-azure-hybrid-deployment/</guid><description>&lt;p&gt;I’ve been building demo environments for Tech.Days Online for the past few days. I had been blogging as I built, but then I hit problems and time pressure meant I had to pause my series on building the hybrid network. I will pick up the remainder of those posts in the near future but in the meantime, I want to give you all the heads up on one of my problems.&lt;/p&gt;</description></item><item><title>Building an Azure IaaS and on-premise hybrid environment Part 2: DC and servers in the cloud</title><link>https://rikhepworth.com/posts/building-an-azure-iaas-and-on-premise-hybrid-environment-part-2-dc-and-servers-in-the-cloud/</link><pubDate>Mon, 04 Nov 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/building-an-azure-iaas-and-on-premise-hybrid-environment-part-2-dc-and-servers-in-the-cloud/</guid><description>&lt;p&gt;This is part 2 of a series of posts bout building a hybrid network connecting Windows Azure and on-premise. For more background on what the goals are, and for information on how to create the Azure Network and connect the VPN tunnel between on-premise and cloud see &lt;a href="https://rikhepworth.com/post/2013/11/2013-11-03-Building-an-Azure-IaaS-and-on-premise-hybrid-environment-Part-1-The-plan-and-Azure-Network-Connection/" &gt;part 1&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Building an Azure IaaS and on-premise hybrid environment Part 1: The plan and Azure Network Connection</title><link>https://rikhepworth.com/posts/building-an-azure-iaas-and-on-premise-hybrid-environment-part-1-the-plan-and-azure-network-connection/</link><pubDate>Sun, 03 Nov 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/building-an-azure-iaas-and-on-premise-hybrid-environment-part-1-the-plan-and-azure-network-connection/</guid><description>&lt;p&gt;I’ve been meaning to build a test lab to kick the tyres of Windows Azure Networks for a while. Two things combined together to make me get it done, however: First was the need to build exactly that for a customer as part of proof-of-concepts; the second was an invitation to present at Tech.Days Online on the subject.&lt;/p&gt;</description></item><item><title>Connecting Azure Network Site-Site VPN to a SonicWall Appliance</title><link>https://rikhepworth.com/posts/connecting-azure-network-site-site-vpn-to-a-sonicwall-appliance/</link><pubDate>Mon, 28 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/connecting-azure-network-site-site-vpn-to-a-sonicwall-appliance/</guid><description>&lt;p&gt;I am with a customer this week, building a test Azure Network+IaaS/Azure AD/Office 365 environment. We struggled to get the site-site VPN connection up for a while and there wasn’t a great deal on the greater internet to help, save for a couple of posts in a discussion forum by the marvellous Marcus Robinson. We finally got it working when we found a tech note from SonicWall, published just a few days ago on the 7th October.&lt;/p&gt;</description></item><item><title>Speaking at UK Tech.Days Online 2013</title><link>https://rikhepworth.com/posts/speaking-at-uk-tech-days-online-2013/</link><pubDate>Sat, 26 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-uk-tech-days-online-2013/</guid><description>&lt;p&gt;I’ve been supporting the great team of evangelists at Microsoft with their UK Tech.Days events for some time now. I am chuffed to bits that they have asked me to contribute to the fantastic &lt;a href="https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032564581&amp;amp;Culture=en-GB&amp;amp;community=0/default.aspx" target="_blank" rel="noreferrer"&gt;UK Tech.Days Online event&lt;/a&gt;. If you haven’t heard about it, go look at the agenda right now! Three days of great content on the latest technologies covering client, server, cloud and dev. The whole thing will be streamed live thanks to the wonder of the internet and includes a live interview with Steve Ballmer.&lt;/p&gt;</description></item><item><title>Generation 2 Virtual Machines on Windows 8.1 and Server 2012 R2 plus other nice new features</title><link>https://rikhepworth.com/posts/generation-2-virtual-machines-on-windows-8-1-and-server-2012-r2-plus-other-nice-new-features/</link><pubDate>Tue, 15 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/generation-2-virtual-machines-on-windows-8-1-and-server-2012-r2-plus-other-nice-new-features/</guid><description>&lt;p&gt;DDD North 2013 was a fantastic community conference but sadly I didn’t get chance to deliver my grok talk on Generation 2 virtual machines. A few people came up to me beforehand to say they were interested in the topic, and a few more spoke to me afterwards to ask if I would blog. I had planned to write a post anyway, but when you know it’s something people want to read you get a bit more of a push.&lt;/p&gt;</description></item><item><title>Unexpectedly now doing a session at DDD North 2013</title><link>https://rikhepworth.com/posts/unexpectedly-now-doing-a-session-at-ddd-north-2013/</link><pubDate>Thu, 10 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/unexpectedly-now-doing-a-session-at-ddd-north-2013/</guid><description>&lt;p&gt;I had a surprise exchange of text messages last night with &lt;a href="http://www.andrewwestgarth.co.uk/Blog/default.aspx" target="_blank" rel="noreferrer"&gt;Andy Westgarth&lt;/a&gt;. Sadly, one of the people who was to speak in one of the first session slots has had to pull out. Andy did the thing all the best conference organisers do – he called his friends! As a result, &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt; and myself will be presenting a session about our experience with Lab Manager on Saturday morning.&lt;/p&gt;</description></item><item><title>Grok talking at DDDNorth 2013</title><link>https://rikhepworth.com/posts/grok-talking-at-dddnorth-2013/</link><pubDate>Tue, 08 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/grok-talking-at-dddnorth-2013/</guid><description>&lt;p&gt;&lt;a href="http://www.dddnorth.co.uk/" target="_blank" rel="noreferrer"&gt;DDD North 2013&lt;/a&gt; is almost upon us and I hope you’re all converging on Sunderland for what should be a great for devs. I’ll be helping out during the day, and I will also be doing a short Grok Talk on how Generation 2 Virtual Machines in Windows 8.1 and Server 2012 are new, different and cool. Come along and heckle, why don’t you?&lt;/p&gt;</description></item><item><title>Miracast with Surface Pro, Windows 8.1 release and Netgear Push2TV</title><link>https://rikhepworth.com/posts/miracast-with-surface-pro-windows-8-1-release-and-netgear-push2tv/</link><pubDate>Tue, 08 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/miracast-with-surface-pro-windows-8-1-release-and-netgear-push2tv/</guid><description>&lt;p&gt;One of the most useful features of Windows 8.1 for me is the native support for Miracast (which is compatible with Intel Widi) for connecting to a wireless projector or display. Being able to wander around with my tablet whilst speaking is really handy.&lt;/p&gt;</description></item><item><title>Take care installing firmware updates on your Surface Pro if it’s bitlocker encrypted</title><link>https://rikhepworth.com/posts/take-care-installing-firmware-updates-on-your-surface-pro-if-its-bitlocker-encrypted/</link><pubDate>Sun, 06 Oct 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/take-care-installing-firmware-updates-on-your-surface-pro-if-its-bitlocker-encrypted/</guid><description>&lt;p&gt;A quick tip, this one. I downloaded the latest firmware update to my Surface Pro this evening. It rebooted and promptly requested my bitlocker unlock code. I don’t keep those to hand – they’re stored in our Active Directory. Fortunately I had another laptop with DirectAccess so I could find the key. Be ready with your recovery key if you too have enabled bitlocker and perform firmware updates.&lt;/p&gt;</description></item><item><title>Being allowed out in public: Forthcoming events</title><link>https://rikhepworth.com/posts/being-allowed-out-in-public-forthcoming-events/</link><pubDate>Sun, 29 Sep 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/being-allowed-out-in-public-forthcoming-events/</guid><description>&lt;p&gt;It’s autumn again, and that means event season is upon us once more. In the next few months I’m getting around a bit, so this post is a plug for the events I’m either attending or speaking at.&lt;/p&gt;</description></item><item><title>Building environments for Lab Manager: Why bare metal scripting fails</title><link>https://rikhepworth.com/posts/building-environments-for-lab-manager-why-bare-metal-scripting-fails/</link><pubDate>Sun, 29 Sep 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/building-environments-for-lab-manager-why-bare-metal-scripting-fails/</guid><description>&lt;p&gt;In the world of DevOps it’s all about the scripts: I’ve seen some great work done by some clever people to create complex environments with multiple VMs all from scratch using PowerShell. That’s great, but unfortunately in the world of Lab Manager it just doesn’t work well at all.&lt;/p&gt;</description></item><item><title>Links from presentation on Server 2012 R2</title><link>https://rikhepworth.com/posts/links-from-presentation-on-server-2012-r2/</link><pubDate>Wed, 25 Sep 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/links-from-presentation-on-server-2012-r2/</guid><description>&lt;p&gt;Thanks to all who attended the ReBuild and TechEd revisited event today. I promised that I would post the links from the final slide to this blog so you can all start evaluating Server 2012 R2 and System Center 2012 R2.&lt;/p&gt;</description></item><item><title>I wouldn’t be where I am today… How encouraging kids in computing is important</title><link>https://rikhepworth.com/posts/i-wouldnt-be-where-i-am-today-how-encouraging-kids-in-computing-is-important/</link><pubDate>Sat, 31 Aug 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/i-wouldnt-be-where-i-am-today-how-encouraging-kids-in-computing-is-important/</guid><description>&lt;p&gt;I’ve been mulling this blog post for a while. Those of you who know Black Marble will have seen that we all believe very strongly in encouraging young people to take up computing and put time into sharing our knowledge and expertise. I thought it was worth sharing how I got to where I am today, which would not have been possible without the help and encouragement of three key people who worked with technology. There’s a message in the story though, about how we need to help the next generation of computing professionals in the same way.&lt;/p&gt;</description></item><item><title>Installing .Net 3.5 onto Windows 8 and 8.1 using DISM</title><link>https://rikhepworth.com/posts/installing-net-3-5-onto-windows-8-and-8-1-using-dism/</link><pubDate>Sat, 31 Aug 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/installing-net-3-5-onto-windows-8-and-8-1-using-dism/</guid><description>&lt;p&gt;This is one of those posts to save me searching the web &lt;em&gt;every&lt;/em&gt; time I need to install .Net 3.5 on a Windows 8 (and now 8.1) system. If the automated installation via add/remove features fails then you need the correct DISM command.&lt;/p&gt;</description></item><item><title>Life with a Lenovo IdeaPad Yoga 13</title><link>https://rikhepworth.com/posts/life-with-a-lenovo-ideapad-yoga-13/</link><pubDate>Sat, 31 Aug 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/life-with-a-lenovo-ideapad-yoga-13/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="yoga"
 width="778"
 height="438"
 src="https://rikhepworth.com/posts/life-with-a-lenovo-ideapad-yoga-13/images/yoga.jpg"
 srcset="https://rikhepworth.com/posts/life-with-a-lenovo-ideapad-yoga-13/images/yoga.jpg 800w, https://rikhepworth.com/posts/life-with-a-lenovo-ideapad-yoga-13/images/yoga.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/life-with-a-lenovo-ideapad-yoga-13/images/yoga.jpg"&gt;&lt;figcaption&gt;yoga&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;My wife’s desktop computer is eight years old. In fairness, it was good kit at the time, and the dual core, 64-bit AMD CPU and it’s four gigabytes of RAM are still more than enough to run her apps today. But the disks are slow and, frankly, it’s just getting tired. Time to get a new one…&lt;/p&gt;</description></item><item><title>Editing Windows Server 2012 Group Policies for Direct Access with Windows 8.1 Enterprise Preview</title><link>https://rikhepworth.com/posts/editing-windows-server-2012-group-policies-for-direct-access-with-windows-8-1-enterprise-preview/</link><pubDate>Tue, 13 Aug 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/editing-windows-server-2012-group-policies-for-direct-access-with-windows-8-1-enterprise-preview/</guid><description>&lt;p&gt;I finally got time to upgrade my Surface Pro to Windows 8.1 Enterprise. One of the things I most want to test is DirectAccess, as I live and die by this on my main laptop. However, despite the computer object for my machine being in the group that the DA group policies are applied to, no DA settings appeared.&lt;/p&gt;</description></item><item><title>Installing Windows 8.1 Enterprise on Surface Pro</title><link>https://rikhepworth.com/posts/installing-windows-8-1-enterprise-on-surface-pro/</link><pubDate>Tue, 13 Aug 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/installing-windows-8-1-enterprise-on-surface-pro/</guid><description>&lt;p&gt;Windows 8.1 Enterprise preview was released a week or two ago. Being on holiday prevented me trying it out until I returned to the office. Everyone has different methods for installing Windows 8/8.1 on a Surface Pro. It’s actually pretty simple. Windows 8 can be done in the same way as I list here. However, you will need to download the Surface Pro Driver pack from Microsoft – Windows 8 doesn’t automatically find all the hardware; Windows 8.1 does.&lt;/p&gt;</description></item><item><title>The Acer Iconia W3: An object lesson in how NOT to design a tablet</title><link>https://rikhepworth.com/posts/the-acer-iconia-w3-an-object-lesson-in-how-not-to-design-a-tablet/</link><pubDate>Mon, 08 Jul 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/the-acer-iconia-w3-an-object-lesson-in-how-not-to-design-a-tablet/</guid><description>&lt;p&gt;As you may have seen from my recent tweets, I was fortunate enough to attend //Build again this year in lovely San Francisco. In what appears to be an emerging tradition, conference attendees received not one, but two Windows 8 tablets: A 128Gb Microsoft Surface Pro with Type Cover, and an Acer Iconia W3 with keyboard dock.&lt;/p&gt;</description></item><item><title>Tech Update for Public Sector</title><link>https://rikhepworth.com/posts/tech-update-for-public-sector/</link><pubDate>Tue, 14 May 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-update-for-public-sector/</guid><description>&lt;p&gt;Right now I am putting the finishing touches to my deck for an event Black Marble are running at Cardinal Place next week. As many of you will know, for the past ten years we have run the annual Tech Update covering moves and changes across the entire Microsoft spectrum of products. Until now that has only taken place in Leeds but for the first time we are taking that show on the road.&lt;/p&gt;</description></item><item><title>Speaking at NEBytes about TFS 2012 Lab and SCVMM 2012</title><link>https://rikhepworth.com/posts/speaking-at-nebytes-about-tfs-2012-lab-and-scvmm-2012/</link><pubDate>Wed, 08 May 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-nebytes-about-tfs-2012-lab-and-scvmm-2012/</guid><description>&lt;p&gt;On Wednesday 15th May 2013, Black Marble travels north, as &lt;a href="http://blogs.blackmarble.co.uk/blogs/sspencer" target="_blank" rel="noreferrer"&gt;Steve Spencer&lt;/a&gt; and I will both present sessions for the great guys at NEBytes.&lt;/p&gt;
&lt;p&gt;Whilst Steve covers fun hardware and software dev using Gadgeteer, I will be talking about our experiences with TFS 2012 Lab and SCVMM 2012.&lt;/p&gt;</description></item><item><title>Fixing a dodgy proximity sensor on my Nokia Lumia 920</title><link>https://rikhepworth.com/posts/fixing-a-dodgy-proximity-sensor-on-my-nokia-lumia-920/</link><pubDate>Tue, 05 Mar 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/fixing-a-dodgy-proximity-sensor-on-my-nokia-lumia-920/</guid><description>&lt;p&gt;I’ve just had a really infuriating half an hour trying to figure out why I couldn’t get the keypad to appear during a call on my Lumia 920. When I took my phone away form my ear the screen stayed black. Pushing the power button made the display switch on and then immediately switch off. Power cycling and even resetting made no difference.&lt;/p&gt;</description></item><item><title>Fixing Lab Manager environments with brute force</title><link>https://rikhepworth.com/posts/fixing-lab-manager-environments-with-brute-force/</link><pubDate>Tue, 05 Mar 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/fixing-lab-manager-environments-with-brute-force/</guid><description>&lt;p&gt;As you’ve probably seen, our Lab Manager/SCVMM 2008 R2 &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/post/2013/03/04/Upgrading-our-TFS-2012-Lab-Management-to-use-SC-VMM-2012-SP1.aspx" target="_blank" rel="noreferrer"&gt;upgrade to SCVMM 2012 SP1&lt;/a&gt; was not the smoothest in the world. The end result was a clean lab manager and SCVMM install, but a raft of virtual machines that had previously been part of environments.&lt;/p&gt;</description></item><item><title>Things to remember when building virtual machines for a lab manager environment</title><link>https://rikhepworth.com/posts/things-to-remember-when-building-virtual-machines-for-a-lab-manager-environment/</link><pubDate>Tue, 05 Mar 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/things-to-remember-when-building-virtual-machines-for-a-lab-manager-environment/</guid><description>&lt;p&gt;As you will have read on both mine and Richard’s blogs, we have recently upgraded our Lab environment and it wasn’t the smoothest of processes.&lt;/p&gt;
&lt;p&gt;However, as always it has been a learning experience and this post is all about building VM environments that can be sucked into Lab and turned into a Lab environment that can be pushed out multiple times.&lt;/p&gt;</description></item><item><title>Notes from the field on our SCVMM/Lab Manager environment upgrade</title><link>https://rikhepworth.com/posts/notes-from-the-field-on-our-scvmmlab-manager-environment-upgrade/</link><pubDate>Mon, 04 Mar 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/notes-from-the-field-on-our-scvmmlab-manager-environment-upgrade/</guid><description>&lt;p&gt;Richard has posted a group effort article on his blog about our &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/post/2013/03/04/Upgrading-our-TFS-2012-Lab-Management-to-use-SC-VMM-2012-SP1.aspx" target="_blank" rel="noreferrer"&gt;System Center 2008 R2/Lab Manager upgrade&lt;/a&gt; to System Center 2012 SP1/Lab Manager. All did not go swimmingly…&lt;/p&gt;
&lt;p&gt;I have more helpful notes that I am writing up myself and will post over the next few days around the steps to fix virtual machines that are part of an environment and tips on building complex multi-machine rigs for lab manager.&lt;/p&gt;</description></item><item><title>Notes from the North East: Imagine Cup Hackathon 2012</title><link>https://rikhepworth.com/posts/notes-from-the-north-east-imagine-cup-hackathon-2012/</link><pubDate>Tue, 05 Feb 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/notes-from-the-north-east-imagine-cup-hackathon-2012/</guid><description>&lt;p&gt;We had a great time at the &lt;a href="http://www.imaginecupnortheast.co.uk/" target="_blank" rel="noreferrer"&gt;Imagine Cup North East&lt;/a&gt; Hackathon this weekend. &lt;a href="http://www.blackmarble.com" target="_blank" rel="noreferrer"&gt;Black Marble&lt;/a&gt; turned out in force with myself, &lt;a href="http://blogs.blackmarble.co.uk/blogs/sspencer/" target="_blank" rel="noreferrer"&gt;Steve&lt;/a&gt;, &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt;, &lt;a href="http://blogs.blackmarble.co.uk/blogs/boss/" target="_blank" rel="noreferrer"&gt;Robert&lt;/a&gt;, &lt;a href="http://blogs.blackmarble.co.uk/blogs/linda/" target="_blank" rel="noreferrer"&gt;Linda&lt;/a&gt;, &lt;a href="http://blogs.blackmarble.co.uk/blogs/jwhittle/" target="_blank" rel="noreferrer"&gt;Josh&lt;/a&gt; and &lt;a href="http://blogs.blackmarble.co.uk/blogs/rviglianisi/" target="_blank" rel="noreferrer"&gt;Riccardo&lt;/a&gt; all helping out. &lt;a href="http://www.andrewwestgarth.co.uk/" target="_blank" rel="noreferrer"&gt;Andy Westgarth&lt;/a&gt; and the guys at &lt;a href="http://www.sunderlandsoftwarecity.com" target="_blank" rel="noreferrer"&gt;Sunderland Software City&lt;/a&gt; had done a solid job on the organisation and we were well looked after.&lt;/p&gt;</description></item><item><title>Looking forward to the Imagine Cup Hackathon</title><link>https://rikhepworth.com/posts/looking-forward-to-the-imagine-cup-hackathon/</link><pubDate>Sun, 27 Jan 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/looking-forward-to-the-imagine-cup-hackathon/</guid><description>&lt;p&gt;It’s a busy week this week and I’m really looking forward to being involved with the &lt;a href="http://www.imaginecupnortheast.co.uk/" target="_blank" rel="noreferrer"&gt;Imagine Cup Hackathon for the North East Region&lt;/a&gt; this Friday and Saturday (1st and 2nd February).&lt;/p&gt;</description></item><item><title>More UK TechDays on System Center 2012 and Windows 8</title><link>https://rikhepworth.com/posts/more-uk-techdays-on-system-center-2012-and-windows-8/</link><pubDate>Sun, 27 Jan 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/more-uk-techdays-on-system-center-2012-and-windows-8/</guid><description>&lt;p&gt;Our good friends in the &lt;a href="http://www.microsoft.com/en-gb/techdays/default.aspx" target="_blank" rel="noreferrer"&gt;UK TechDays&lt;/a&gt; team have announced another raft of events in their fantastic IT Camps series. I’m hoping to be there for at least on of them and if you’re at all interested in Windows 8 or System Center 2012 I cant recommend them highly enough.&lt;/p&gt;</description></item><item><title>Upcoming presentations</title><link>https://rikhepworth.com/posts/upcoming-presentations/</link><pubDate>Mon, 14 Jan 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/upcoming-presentations/</guid><description>&lt;p&gt;It’s the start of a new year and my engagement diary is filling rapidly. Once again I am covering a wide range of topics for an equally broad audience which is something I really enjoy.&lt;/p&gt;</description></item><item><title>User profile service failures caused by Distributed Cache on SharePoint 2013</title><link>https://rikhepworth.com/posts/user-profile-service-failures-caused-by-distributed-cache-on-sharepoint-2013/</link><pubDate>Mon, 14 Jan 2013 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/user-profile-service-failures-caused-by-distributed-cache-on-sharepoint-2013/</guid><description>&lt;p&gt;This is a relatively quick post, largely because I was not able to record the details of the error messages we saw in the farm before we fixed them.&lt;/p&gt;
&lt;p&gt;On a recent engagement we were investigating problems with a SharePoint 2013 farm that had been installed for our customer by a third party. There were a number of issues that we worked through but I wanted to record this one for the community.&lt;/p&gt;</description></item><item><title>Many upcoming speaking engagements</title><link>https://rikhepworth.com/posts/many-upcoming-speaking-engagements/</link><pubDate>Mon, 22 Oct 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/many-upcoming-speaking-engagements/</guid><description>&lt;p&gt;I seem to have been doing a lot of presenting lately, and the next few weeks are similarly busy. As a one-stop shop to plug them all, here is a list of upcoming events I will be presenting, co-presenting or supporting:&lt;/p&gt;</description></item><item><title>Speaking at Designing Beautiful Windows Apps in Dublin</title><link>https://rikhepworth.com/posts/speaking-at-designing-beautiful-windows-apps-in-dublin/</link><pubDate>Sat, 22 Sep 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-designing-beautiful-windows-apps-in-dublin/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt=""
 width="640"
 height="360"
 src="https://rikhepworth.com/posts/speaking-at-designing-beautiful-windows-apps-in-dublin/images/image.png"
 srcset="https://rikhepworth.com/posts/speaking-at-designing-beautiful-windows-apps-in-dublin/images/image.png 800w, https://rikhepworth.com/posts/speaking-at-designing-beautiful-windows-apps-in-dublin/images/image.png 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/speaking-at-designing-beautiful-windows-apps-in-dublin/images/image.png"&gt;&lt;/figure&gt;
&lt;p&gt;I’m really excited to be presenting at a &lt;a href="https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032527664&amp;amp;Culture=en-IE&amp;amp;community=0" target="_blank" rel="noreferrer"&gt;one day event on Windows 8 application design&lt;/a&gt; in Dublin on Wednesday 26th September. I’m excited because &lt;a href="http://billbuxton.com/" target="_blank" rel="noreferrer"&gt;Bill Buxton&lt;/a&gt; is delivering the keynote at the event and I’m a big fan.&lt;/p&gt;</description></item><item><title>A Virtual Ice Cream Sandwich: Android 4 x86 in a Hyper-V VM</title><link>https://rikhepworth.com/posts/a-virtual-ice-cream-sandwich-android-4-x86-in-a-hyper-v-vm/</link><pubDate>Mon, 18 Jun 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/a-virtual-ice-cream-sandwich-android-4-x86-in-a-hyper-v-vm/</guid><description>&lt;p&gt;More and more of our projects include a stipulation from the client that any web sites must work on the tablet devices of senior management. Up until recently that was exclusively iPads, but we are now seeing more Android devices out there. I wanted to find a straightforward way for us to test on such devices, preferably without needing to build up a collection of expensive physical kit.&lt;/p&gt;</description></item><item><title>Adding DHCP Option 119 (Domain Search List) to Windows Server 2008 R2</title><link>https://rikhepworth.com/posts/adding-dhcp-option-119-domain-search-list-to-windows-server-2008-r2/</link><pubDate>Mon, 18 Jun 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/adding-dhcp-option-119-domain-search-list-to-windows-server-2008-r2/</guid><description>&lt;p&gt;If you’ve seen my recent blog post on making Android work in Hyper-V you will have seen my problems around DNS resolution when in the office. That turned out to be down to the DHCP options being handed back by our Server 2008 R2 box. Or rather, it was what &lt;em&gt;wasn’t&lt;/em&gt; being handed back to the client that was the problem.&lt;/p&gt;</description></item><item><title>Tweaking my Lenovo x220 Tablet and running Windows 8</title><link>https://rikhepworth.com/posts/tweaking-my-lenovo-x220-tablet-and-running-windows-8/</link><pubDate>Tue, 12 Jun 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tweaking-my-lenovo-x220-tablet-and-running-windows-8/</guid><description>&lt;p&gt;A short while ago I replaced my trusted by heavy Acer laptop with a Lenovo x220 tablet. After a couple of months running windows 8 I’m ready to put my thoughts into words.&lt;/p&gt;</description></item><item><title>IT Camp Leeds Roundup</title><link>https://rikhepworth.com/posts/it-camp-leeds-roundup/</link><pubDate>Wed, 29 Feb 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/it-camp-leeds-roundup/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="WP_000140"
 width="914"
 height="768"
 src="https://rikhepworth.com/posts/it-camp-leeds-roundup/images/WP_000140_hu_c5e51f799b8b9bce.jpg"
 srcset="https://rikhepworth.com/posts/it-camp-leeds-roundup/images/WP_000140_hu_c5e51f799b8b9bce.jpg 800w, https://rikhepworth.com/posts/it-camp-leeds-roundup/images/WP_000140.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/it-camp-leeds-roundup/images/WP_000140.jpg"&gt;&lt;figcaption&gt;WP_000140&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;Yesterday was great fun and I was really pleased to see so many Black Marble event regulars at the IT Camp. It was great to hear so many requests for more events like it in Leeds. We’re all keen to run more, but we need people to attend and give us feedback in order to be able to do that.&lt;/p&gt;</description></item><item><title>My Boss has brought his iPad! Consumer devices in corporate networks</title><link>https://rikhepworth.com/posts/my-boss-has-brought-his-ipad-consumer-devices-in-corporate-networks/</link><pubDate>Wed, 29 Feb 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/my-boss-has-brought-his-ipad-consumer-devices-in-corporate-networks/</guid><description>&lt;p&gt;There’s a new term in town – Consumerisation of IT. All of us who work in IT should care about this because it’s going to have a deep impact on the approach many of us have taken when deploying services to our organisations.&lt;/p&gt;</description></item><item><title>Hands-on Microsoft IT Camps–we’ll be there and you should too!</title><link>https://rikhepworth.com/posts/hands-on-microsoft-it-camps-well-be-there-and-you-should-too/</link><pubDate>Fri, 24 Feb 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/hands-on-microsoft-it-camps-well-be-there-and-you-should-too/</guid><description>&lt;p&gt;&lt;a href="http://blogs.blackmarble.co.uk/blogs/adawson" target="_blank" rel="noreferrer"&gt;Andy&lt;/a&gt; and I are really pleased to be able to help our friends at Microsoft with their latest idea for engaging with IT Professionals. Next week (Tuesday 28th February) sees the first in a series of new IT Camps taking place in Leeds. The idea is to run a full day event that is very light on PowerPoint and heavy on the hands-on, roll up your sleeves and install things as a group.&lt;/p&gt;</description></item><item><title>Living with the Nokia Lumia 800</title><link>https://rikhepworth.com/posts/living-with-the-nokia-lumia-800/</link><pubDate>Mon, 16 Jan 2012 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/living-with-the-nokia-lumia-800/</guid><description>&lt;p&gt;If you call in at Black Marble you’ll see Nokia’s everywhere. They’re talking over the place. It takes me back… I remember when almost everybody I knew had some kind of Nokia or another. I started with the 5.1 on Orange, followed by a sequence of progressively smaller phones. Then came Series 60 and I walked away – I never liked the interface. I swapped to Sony Ericsson and the P800, P900 and P910. I moved to Windows Mobile for time, until I could stand it no more and swapped to an iPhone (much to the grumbling of folk round here!).&lt;/p&gt;</description></item><item><title>Fujitsu Stylistic Q550: A Tablet for the Enterprise</title><link>https://rikhepworth.com/posts/fujitsu-stylistic-q550-a-tablet-for-the-enterprise/</link><pubDate>Wed, 14 Dec 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/fujitsu-stylistic-q550-a-tablet-for-the-enterprise/</guid><description>&lt;p&gt;Every now and again, whilst I’m away from the office, the gadget pixies visit my desk and leave something interesting for me to play with. It’s a bit like Bagpuss, except stuff works when it arrives and I can never get the guys to wake up when I need them too.&lt;/p&gt;</description></item><item><title>Streaming video to XBOX 360 from Windows Home Server 2011</title><link>https://rikhepworth.com/posts/streaming-video-to-xbox-360-from-windows-home-server-2011/</link><pubDate>Fri, 09 Dec 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/streaming-video-to-xbox-360-from-windows-home-server-2011/</guid><description>&lt;p&gt;This one threw me for a while and I could find nothing specific on the web. I wanted to use my Xbox 360 to watch video streamed from my Windows Home Server. Streaming is switched on by default, I hear you say. Why, yes it is, but each time I tried to connect the Xbox I received an error.&lt;/p&gt;</description></item><item><title>Displaying a SharePoint 2010 library on a page in a different site within the same site collection</title><link>https://rikhepworth.com/posts/displaying-a-sharepoint-2010-library-on-a-page-in-a-different-site-within-the-same-site-collection/</link><pubDate>Wed, 07 Dec 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/displaying-a-sharepoint-2010-library-on-a-page-in-a-different-site-within-the-same-site-collection/</guid><description>&lt;p&gt;One of our customers contacted us the other day with a problem. They wanted to put a view of a document library that was located in the top level site of a site collection onto the landing pages of all the second level sites in that collection. The customer had consulted the internet hive mind and found a blog post with instructions which had been diligently followed and yet whenever a user clicked ‘New’ on the ribbon bar an error occurred.&lt;/p&gt;</description></item><item><title>Fundaments of planning your beautiful SharePoint web site</title><link>https://rikhepworth.com/posts/fundaments-of-planning-your-beautiful-sharepoint-web-site/</link><pubDate>Wed, 07 Dec 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/fundaments-of-planning-your-beautiful-sharepoint-web-site/</guid><description>&lt;p&gt;This article is all about preparation. It’s about the thinking and planning you need to do if you’re going to successfully build your wonderful, unique and striking website on the SharePoint platform.&lt;/p&gt;</description></item><item><title>Making SharePoint 2010 search pages work with a proper master page</title><link>https://rikhepworth.com/posts/making-sharepoint-2010-search-pages-work-with-a-proper-master-page/</link><pubDate>Thu, 12 May 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/making-sharepoint-2010-search-pages-work-with-a-proper-master-page/</guid><description>&lt;p&gt;If you talk to those who know me about my pet hates in SharePoint, the search pages will come up every time. It’s not that I hate search itself – that’s great, but the minimal.master is just plain annoying. It makes the search centre a black hole into which you can fall but not navigate out of – there’s no navigation and the portal site connection doesn’t work.&lt;/p&gt;</description></item><item><title>Content type replication not working on imported or migrated site collections</title><link>https://rikhepworth.com/posts/content-type-replication-not-working-on-imported-or-migrated-site-collections/</link><pubDate>Mon, 04 Apr 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/content-type-replication-not-working-on-imported-or-migrated-site-collections/</guid><description>&lt;p&gt;A while ago I &lt;a href="https://rikhepworth.com/post/2010/11/2010-11-11-enabling-the-taxonomyfieldadded-feature-to-fix-managedmetadata-column-errors" &gt;posted about a hidden feature&lt;/a&gt; that was needed if you want to use Managed Metadata columns in your SharePoint 2010 sites. We were doing some 2007-2010 migration work for a client recently that also involved exporting and importing sites and site collections to rework the content structure. Once we’d got the new structure sorted we discovered that content type replication was not occurring on the site collections we had imported. Some comparison of working and non-working SPSite properties with PowerShell later, we discovered that the culprit was the same hidden TaxonomyFieldAdded (ID 73ef14b1-13a9-416b-a9b5-ececa2b0604c) feature as I noted earlier. See my &lt;a href="https://rikhepworth.com/post/2010/11/2010-11-11-enabling-the-taxonomyfieldadded-feature-to-fix-managedmetadata-column-errors" &gt;earlier post&lt;/a&gt; for instructions on enabling the feature.&lt;/p&gt;</description></item><item><title>Content Types programmatically added to SharePoint libraries not appearing on New menu</title><link>https://rikhepworth.com/posts/content-types-programmatically-added-to-sharepoint-libraries-not-appearing-on-new-menu/</link><pubDate>Mon, 04 Apr 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/content-types-programmatically-added-to-sharepoint-libraries-not-appearing-on-new-menu/</guid><description>&lt;p&gt;This one caused some consternation, I can tell you. As usual, the solution could be found on the great wide web, but it took some digging, so as usual I am repeating it here.&lt;/p&gt;</description></item><item><title>Avviso Page Templates and Editing Video</title><link>https://rikhepworth.com/posts/avviso-page-templates-and-editing-video/</link><pubDate>Mon, 21 Feb 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/avviso-page-templates-and-editing-video/</guid><description>&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"&gt;
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/NFRWHAUky8w?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video"&gt;&lt;/iframe&gt;
 &lt;/div&gt;

&lt;p&gt;We’ve just put a &lt;a href="http://www.youtube.com/watch?v=NFRWHAUky8w" target="_blank" rel="noreferrer"&gt;video of the page templates and editing process&lt;/a&gt; up on the AvvisoSharePoint YouTube channel. Our plan is to add more videos over time to show the different things Avviso can do. Enjoy!&lt;/p&gt;</description></item><item><title>Demonstrating Avviso at NEBytes on 23rd February 2011</title><link>https://rikhepworth.com/posts/demonstrating-avviso-at-nebytes-on-23rd-february-2011/</link><pubDate>Tue, 15 Feb 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/demonstrating-avviso-at-nebytes-on-23rd-february-2011/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="avvisohead"
 width="1005"
 height="635"
 src="https://rikhepworth.com/posts/demonstrating-avviso-at-nebytes-on-23rd-february-2011/images/avvisohead_0FEFFF25_hu_f8360116c75495a4.png"
 srcset="https://rikhepworth.com/posts/demonstrating-avviso-at-nebytes-on-23rd-february-2011/images/avvisohead_0FEFFF25_hu_f8360116c75495a4.png 800w, https://rikhepworth.com/posts/demonstrating-avviso-at-nebytes-on-23rd-february-2011/images/avvisohead_0FEFFF25.png 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/demonstrating-avviso-at-nebytes-on-23rd-february-2011/images/avvisohead_0FEFFF25.png"&gt;&lt;figcaption&gt;avvisohead&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;I am really chuffed to have been invited back to &lt;a href="http://www.nebytes.net/" target="_blank" rel="noreferrer"&gt;NEBytes&lt;/a&gt; for a follow-up to my last session on content publishing with SharePoint 2010. This time I’ll be demonstrating Avviso and talking about the thought processes that lead to its development, the problems we are trying to solve and where we’d like to go next.&lt;/p&gt;</description></item><item><title>Errors with TMG + Exchange Edge Connector + FPE resulting in rejected emails</title><link>https://rikhepworth.com/posts/errors-with-tmg-exchange-edge-connector-fpe-resulting-in-rejected-emails/</link><pubDate>Wed, 26 Jan 2011 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/errors-with-tmg-exchange-edge-connector-fpe-resulting-in-rejected-emails/</guid><description>&lt;h2 class="relative group"&gt;Frustrating errors with little or no explanation…
 &lt;div id="frustrating-errors-with-little-or-no-explanation" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#frustrating-errors-with-little-or-no-explanation" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Once again I find myself wiring a blog post in order to save people the time we spent figuring out what was going on and getting help with our fault.&lt;/p&gt;</description></item><item><title>Avviso: A Content Publishing Framework for SharePoint 2010</title><link>https://rikhepworth.com/posts/avviso-a-content-publishing-framework-for-sharepoint-2010/</link><pubDate>Tue, 21 Dec 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/avviso-a-content-publishing-framework-for-sharepoint-2010/</guid><description>&lt;p&gt;&lt;a href="http://www.wordsandpics.co.uk/" target="_blank" rel="noreferrer"&gt;&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="words and pictures logo"
 width="240"
 height="222"
 src="https://rikhepworth.com/posts/avviso-a-content-publishing-framework-for-sharepoint-2010/images/words-and-pictures-logo_3EA9DF45.png"
 srcset="https://rikhepworth.com/posts/avviso-a-content-publishing-framework-for-sharepoint-2010/images/words-and-pictures-logo_3EA9DF45.png 800w, https://rikhepworth.com/posts/avviso-a-content-publishing-framework-for-sharepoint-2010/images/words-and-pictures-logo_3EA9DF45.png 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/avviso-a-content-publishing-framework-for-sharepoint-2010/images/words-and-pictures-logo_3EA9DF45.png"&gt;&lt;figcaption&gt;words and pictures logo&lt;/figcaption&gt;&lt;/figure&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Last week was really exciting for me and my colleagues here at Black Marble as the work we’ve been doing with a partner came to fruition.&lt;/strong&gt; &lt;a href="http://www.wordsandpics.co.uk/" target="_blank" rel="noreferrer"&gt;&lt;strong&gt;Words and Pictures&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;are a communications agency based not far from us, and we’ve been working together on a great product that builds upon SharePoint 2010 to greatly improve content publishing.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Server Core, Hyper-V and VLANs: An Odyssey</title><link>https://rikhepworth.com/posts/server-core-hyper-v-and-vlans-an-odyssey/</link><pubDate>Mon, 06 Dec 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/server-core-hyper-v-and-vlans-an-odyssey/</guid><description>&lt;h2 class="relative group"&gt;A sensible plan
 &lt;div id="a-sensible-plan" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#a-sensible-plan" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;This is a torrid tale of frustration and annoyance, tempered by the fun of digging through system commands and registry entries to try and get things working.&lt;/p&gt;</description></item><item><title>Powershell to find missing features in SharePoint 2010</title><link>https://rikhepworth.com/posts/powershell-to-find-missing-features-in-sharepoint-2010/</link><pubDate>Fri, 19 Nov 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/powershell-to-find-missing-features-in-sharepoint-2010/</guid><description>&lt;p&gt;When migrating from SharePoint 2007 to 2010, no matter how hard you try there’s always the chance the the content database upgrade process will throw out errors about features being referenced that are not present in the farm. We have used Stefan Goßner’s &lt;a href="http://code.msdn.microsoft.com/WssAnalyzeFeatures" target="_blank" rel="noreferrer"&gt;WssAnalyzeFeatures&lt;/a&gt; and &lt;a href="http://code.msdn.microsoft.com/WssRemoveFeatureFrom" target="_blank" rel="noreferrer"&gt;WSSRemoveFeatureFromSite&lt;/a&gt; (see his &lt;a href="http://blogs.technet.com/b/stefan_gossner/archive/2008/04/12/moss-common-issue-content-deployment-fails-with-failed-to-compare-two-elements-in-the-array.aspx" target="_blank" rel="noreferrer"&gt;original article&lt;/a&gt;) to track down the references and exterminate them. It’s not the fastest thing on two legs though, and I have a fondness for having my SharePoint 2010 tooling in PowerShell because of the flexibility it gives me.&lt;/p&gt;</description></item><item><title>Enabling the TaxonomyFieldAdded feature to fix ManagedMetadata Column errors</title><link>https://rikhepworth.com/posts/enabling-the-taxonomyfieldadded-feature-to-fix-managedmetadata-column-errors/</link><pubDate>Thu, 11 Nov 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/enabling-the-taxonomyfieldadded-feature-to-fix-managedmetadata-column-errors/</guid><description>&lt;p&gt;We’re working on a solution at the moment that uses a custom site definition. For various reasons we stated with the Blank Site definition and worked from there. Our customisations include content types using custom columns that link to managed metadata term sets. We create all those through features – great! The tricky bit came when after deployment our managed metadata columns were greyed out. Examining the column we say an error telling us that the feature supporting the functionality was not activated.&lt;/p&gt;</description></item><item><title>Speaking at NeBytes in November on SharePoint for Content Publishing</title><link>https://rikhepworth.com/posts/speaking-at-nebytes-in-november-on-sharepoint-for-content-publishing/</link><pubDate>Tue, 02 Nov 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-nebytes-in-november-on-sharepoint-for-content-publishing/</guid><description>&lt;p&gt;On the 17th of November I’ll be keeping Richard company on the drive up to Newcastle to speak at the &lt;a href="http://www.nebytes.net/" target="_blank" rel="noreferrer"&gt;NEBytes&lt;/a&gt; user group. My session will be a shortened version of the Using SharePoint for Content publishing I will deliver at the Black Marble event on November 3rd. I will be showing what can be done with SharePoint 2010 when the brief is for a content publishing site, be it internet- or intranet-facing and I will talk about the things we have learned along the way whilst delivering such projects – things to avoid as well as things that work well.&lt;/p&gt;</description></item><item><title>Living with the Acer Aspire 1420P</title><link>https://rikhepworth.com/posts/living-with-the-acer-aspire-1420p/</link><pubDate>Fri, 22 Oct 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/living-with-the-acer-aspire-1420p/</guid><description>&lt;p&gt;This blog has been a very quiet place for a long time now, reflecting somewhat how busy I have been elsewhere. During this period of heavy work I have found a new friend in my Aspire 1420P. In some ways it’s sad – my trusty and reliable Dell Mini 9 has been neglected in favour of a younger, sexier model.&lt;/p&gt;</description></item><item><title>Powershell script to rename files for use as SharePoint 2010 User Profile thumbnails</title><link>https://rikhepworth.com/posts/powershell-script-to-rename-files-for-use-as-sharepoint-2010-user-profile-thumbnails/</link><pubDate>Thu, 29 Jul 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/powershell-script-to-rename-files-for-use-as-sharepoint-2010-user-profile-thumbnails/</guid><description>&lt;p&gt;User profile photos have changed in SharePoint 2010 in that they are now stored in a single image library in the MySite Host root site collection. They have also changed in that when you change the profile photo, SharePoint takes the file and creates three new images at specific sizes, then discards the file you gave it. These files have specific names to link them to the user account and come in small, medium and large flavours.&lt;/p&gt;</description></item><item><title>Thoughts on the BCS EGM</title><link>https://rikhepworth.com/posts/thoughts-on-the-bcs-egm/</link><pubDate>Wed, 09 Jun 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/thoughts-on-the-bcs-egm/</guid><description>&lt;p&gt;Stepping along the path ploughed by Richard and Robert, I thought I’d try to order my thoughts on the BCS EGM through a blog post. Like Richard, I am (as I begin writing) uncertain as to my final leaning on this, although I have clear views on some of the issues.&lt;/p&gt;</description></item><item><title>It works! 8Gb RAM in my Acer TravelMate 6593</title><link>https://rikhepworth.com/posts/it-works-8gb-ram-in-my-acer-travelmate-6593/</link><pubDate>Tue, 08 Jun 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/it-works-8gb-ram-in-my-acer-travelmate-6593/</guid><description>&lt;p&gt;I thought I’d post this because so many like me might benefit from my experiment. We have a number of Acer TravelMate 6593 laptops here at Black Marble. They’re great machines – plenty of grunt, a lovely screen and most of the toys you could need in a laptop that’s used for a mix of IT admin, dev and technical sales (including demos). The only downside is that they only ship with up to 4Gb of memory, and Acer say it won’t take more.&lt;/p&gt;</description></item><item><title>Solving a mystery: Windows 7 games won’t work on HP TouchSmart TX2</title><link>https://rikhepworth.com/posts/solving-a-mystery-windows-7-games-wont-work-on-hp-touchsmart-tx2/</link><pubDate>Sat, 01 May 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/solving-a-mystery-windows-7-games-wont-work-on-hp-touchsmart-tx2/</guid><description>&lt;p&gt;This one has been nagging at me for a long time. My grandmother has an HP TouchSmart TX2 tablet. It was bought with Windows Vista, but as with her main computer, I upgraded it to Windows 7.&lt;/p&gt;</description></item><item><title>Unable to remote control Hyper-V VM after installing SharePoint 2010 on Windows 7</title><link>https://rikhepworth.com/posts/unable-to-remote-control-hyper-v-vm-after-installing-sharepoint-2010-on-windows-7/</link><pubDate>Fri, 30 Apr 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/unable-to-remote-control-hyper-v-vm-after-installing-sharepoint-2010-on-windows-7/</guid><description>&lt;p&gt;True to form, you only discover something isn’t working when you’re in a desperate hurry. We use lots of Hyper-V VMs here at Black Marble and they are mostly running on our four node cluster. I use Failover Cluster Manager and this morning I couldn’t connect remotely to any of the Hyper-V VMs. I kept getting an error:&lt;/p&gt;</description></item><item><title>Fixing SharePoint 2007 IIS WAMREG DCOM 10016 activation errors on Server 2008 R2</title><link>https://rikhepworth.com/posts/fixing-sharepoint-2007-iis-wamreg-dcom-10016-activation-errors-on-server-2008-r2/</link><pubDate>Mon, 08 Feb 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/fixing-sharepoint-2007-iis-wamreg-dcom-10016-activation-errors-on-server-2008-r2/</guid><description>&lt;p&gt;Anybody who works will SharePoint will grumble if you mention DCOM activation permissions. No matter how hard we try, how many patches we install (or how hard we try to ignore it), granting activation and launch permissions to the SharePoint service accounts is like plugging a dike with water-soluble filler.&lt;/p&gt;</description></item><item><title>Social Networking: The double-edged sword of maintaining an online presence</title><link>https://rikhepworth.com/posts/social-networking-the-double-edged-sword-of-maintaining-an-online-presence/</link><pubDate>Sun, 31 Jan 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/social-networking-the-double-edged-sword-of-maintaining-an-online-presence/</guid><description>&lt;h2 class="relative group"&gt;Exploring the new frontier
 &lt;div id="exploring-the-new-frontier" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#exploring-the-new-frontier" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;I’m writing this post whilst watching my Windows Home Server slowly copy data onto an external drive. I mention that not because of its pertinence, but to indicate why I found myself having time to join &lt;a href="http://www.facebook.com/rikhepworth" target="_blank" rel="noreferrer"&gt;Facebook&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>New and coming Microsoft technologies you need to look at</title><link>https://rikhepworth.com/posts/new-and-coming-microsoft-technologies-you-need-to-look-at/</link><pubDate>Thu, 28 Jan 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/new-and-coming-microsoft-technologies-you-need-to-look-at/</guid><description>&lt;p&gt;Yesterday was the annual Black Marble Tech Update event, where we try to cover every product in the Microsoft arsenal in half a day, telling local businesses what’s coming and what deserves attention.&lt;/p&gt;</description></item><item><title>Remote working solutions (or how I learned to stop worrying and love the snow)</title><link>https://rikhepworth.com/posts/remote-working-solutions-or-how-i-learned-to-stop-worrying-and-love-the-snow/</link><pubDate>Sun, 24 Jan 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/remote-working-solutions-or-how-i-learned-to-stop-worrying-and-love-the-snow/</guid><description>&lt;p&gt;We lost remarkably few days of productivity to the bad weather at Black Marble. That wasn’t because we were all intrepid, hardy types and all made it into the office. Far from it – some of us live in areas where they don’t grit very often and can’t make it to the main roads.&lt;/p&gt;</description></item><item><title>Solve ‘pending reboot’ setup show stopper for CRM 4 Client (with Update Rollup 7)</title><link>https://rikhepworth.com/posts/solve-pending-reboot-setup-show-stopper-for-crm-4-client-with-update-rollup-7/</link><pubDate>Mon, 11 Jan 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/solve-pending-reboot-setup-show-stopper-for-crm-4-client-with-update-rollup-7/</guid><description>&lt;p&gt;I’ve been extremely busy over the past week creating demo systems and updating our own internal Black Marble systems. Part of that long list of tasks was to get around to testing the CRM 4 Outlook client with Outlook 2010.&lt;/p&gt;</description></item><item><title>Twitter clients: Twinbox and Tweetz</title><link>https://rikhepworth.com/posts/twitter-clients-twinbox-and-tweetz/</link><pubDate>Mon, 11 Jan 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/twitter-clients-twinbox-and-tweetz/</guid><description>&lt;p&gt;Anybody who follows me on twitter will know that &lt;a href="http://twitter.com/rikhepworth/" target="_blank" rel="noreferrer"&gt;@rikhepworth&lt;/a&gt; is by no means a prolific tweeter. However, I do follow a number of people around the planet, and in addition to the ubiquitous Tweetie2 on my iPhone, I have found two clients to be useful and reliable.&lt;/p&gt;</description></item><item><title>Reassigning the correct SSL certificate to SharePoint 2010 Web Services IIS Site</title><link>https://rikhepworth.com/posts/reassigning-the-correct-ssl-certificate-to-sharepoint-2010-web-services-iis-site/</link><pubDate>Thu, 07 Jan 2010 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/reassigning-the-correct-ssl-certificate-to-sharepoint-2010-web-services-iis-site/</guid><description>&lt;h2 class="relative group"&gt;Prologue
 &lt;div id="prologue" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#prologue" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;This post is about assigning an SSL certificate to an IIS 7.5-hosted website which is not located in the Personal Certificate store. The steps shown are not SharePoint-specific, however. Hopefully this post will save you the large amount of time I spent hunting down the information on how to do this.&lt;/p&gt;</description></item><item><title>Berlin: Four storeys of Windows 7 goodness</title><link>https://rikhepworth.com/posts/berlin-four-storeys-of-windows-7-goodness/</link><pubDate>Fri, 13 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/berlin-four-storeys-of-windows-7-goodness/</guid><description>&lt;p&gt;As you walk out of the U-bahn at Potzdamer Platz right now, you are faced with the most enormous advertisement you have ever seen. Well done HP and Windows 7 – subtle it most certainly is not!&lt;/p&gt;</description></item><item><title>Berlin: Legoland Experience</title><link>https://rikhepworth.com/posts/berlin-legoland-experience/</link><pubDate>Fri, 13 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/berlin-legoland-experience/</guid><description>&lt;p&gt;I’d love to say that I enjoyed the Legoland Experience in Berlin, located beneath the Sony Centre in Potzdamer Platz. I’d love to, but I can’t – I’ve been to a conference you know; none of this sightseeing malarky for me.&lt;/p&gt;</description></item><item><title>Places to eat in Berlin: Coa</title><link>https://rikhepworth.com/posts/places-to-eat-in-berlin-coa/</link><pubDate>Fri, 13 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-berlin-coa/</guid><description>&lt;p&gt;It’s becoming a tradition that every time I attend a conference or travel anywhere interesting I post at least a couple of places to eat. Perhaps ironically, none of the places I am about to post about serve cuisine that you could reasonable call German.&lt;/p&gt;</description></item><item><title>Places to eat in Berlin: Grenander</title><link>https://rikhepworth.com/posts/places-to-eat-in-berlin-grenander/</link><pubDate>Fri, 13 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-berlin-grenander/</guid><description>&lt;p&gt;Lets get this straight right of the bat: &lt;a href="http://www.grenander.de" target="_blank" rel="noreferrer"&gt;Grenander&lt;/a&gt; is not a restaurant. Sure, it’s open in the evening and it does light meals (think: soup and a roll). However, it’s really a cafe (‘cafehaus and icecream’,  says  my receipt).&lt;/p&gt;</description></item><item><title>Places to eat in Berlin: La Sepia</title><link>https://rikhepworth.com/posts/places-to-eat-in-berlin-la-sepia/</link><pubDate>Fri, 13 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-berlin-la-sepia/</guid><description>&lt;p&gt;Anybody who knows me well will tell you that I am prone to waxing lyrical about Portugal. Whilst I haven’t been there for a good few years now, it was a regular destination for my family when I was younger and I have strong, fond memories of the place and its food.&lt;/p&gt;</description></item><item><title>Places to eat in Berlin: Mola</title><link>https://rikhepworth.com/posts/places-to-eat-in-berlin-mola/</link><pubDate>Fri, 13 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-berlin-mola/</guid><description>&lt;p&gt;Mola is opposite the Wittenbergplatz U-bahn station, just along the Ku’damme from KaDeWe. It’s not the most sophisticated restaurant you’ll find, but it’s a wonderfully authentic Italian restaurant.&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="IMAGE_039"
 width="640"
 height="480"
 src="https://rikhepworth.com/posts/places-to-eat-in-berlin-mola/images/IMAGE_039_560447C9.jpg"
 srcset="https://rikhepworth.com/posts/places-to-eat-in-berlin-mola/images/IMAGE_039_560447C9.jpg 800w, https://rikhepworth.com/posts/places-to-eat-in-berlin-mola/images/IMAGE_039_560447C9.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/places-to-eat-in-berlin-mola/images/IMAGE_039_560447C9.jpg"&gt;&lt;figcaption&gt;IMAGE_039&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;The first thing you’ll notice is the marvellously jovial owner (at least I think he was the owner) who welcomes you in Italian. The next thing that you’ll notice is the large traditional pizza oven, with the pizza chef making fresh pizza by hand right in front of you.&lt;/p&gt;</description></item><item><title>TechEd 2009: Finding technical content</title><link>https://rikhepworth.com/posts/teched-2009-finding-technical-content/</link><pubDate>Thu, 12 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/teched-2009-finding-technical-content/</guid><description>&lt;p&gt;Whilst TechEd this year has been rich with interesting content, most notably on SharePoint 2010, I’ve found it sadly thin on the ground when it comes to deep technical sessions. What exceptions to this rule there have been, however, were excellent and worthy of mention.&lt;/p&gt;</description></item><item><title>20 Jahre Mauerfall</title><link>https://rikhepworth.com/posts/20-jahre-mauerfall/</link><pubDate>Wed, 11 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/20-jahre-mauerfall/</guid><description>&lt;p&gt;Monday night saw the official celebration of the twentieth anniversary of the historic events which saw the fall of the Berlin Wall and paved the way for German reunification.&lt;/p&gt;
&lt;p&gt;Sadly, the night was cold and wet – the rain was falling in torrents as we made our way to Potsdamer Platz and walked towards the Brandenburg Gate. We managed to stand right next to one of the large screens on which proceedings were to be shown – next to the gate and near the dominoes which were to topple during the night.&lt;/p&gt;</description></item><item><title>Ich bin ein Berliner</title><link>https://rikhepworth.com/posts/ich-bin-ein-berliner/</link><pubDate>Mon, 09 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/ich-bin-ein-berliner/</guid><description>&lt;p&gt;As you may know, TechE d 2009 EMEA is in Berlin this year. You may also know that this year is the twentieth anniversary of the fall of the Berlin Wall. I’m here in Berlin, which means that I’ll try to blog what’s going on at TechEd. However, this post is all about the really cool idea Berlin has for the celebrations!&lt;/p&gt;</description></item><item><title>TechEd Europe has real Coke</title><link>https://rikhepworth.com/posts/teched-europe-has-real-coke/</link><pubDate>Mon, 09 Nov 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/teched-europe-has-real-coke/</guid><description>&lt;p&gt;For those of you who are confused by the title, Robert, our MD complained bitterly that the SharePoint Conference 2009 in Las Vegas only had Pepsi. I don’t know any geeks who like Pepsi, and a quick poll on twitter seemed to suggest that Robert and I aren’t alone. I just want to report that Berlin has restored my faith and has large fridges full of bottles of Coke. No Cherry Coke, however, so they don’t quite make a gold star.&lt;/p&gt;</description></item><item><title>SharePoint Search Gatherer Error 10032</title><link>https://rikhepworth.com/posts/sharepoint-search-gatherer-error-10032/</link><pubDate>Fri, 25 Sep 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-search-gatherer-error-10032/</guid><description>&lt;p&gt;We encountered a problem recently with a two server farm. One server was configured as index and query server. Both servers were delivering pages to users. If a user executed a search on the server which did not run the search services, the Search page returned an error, and we saw the following in the application log and SharePoint logs:&lt;/p&gt;</description></item><item><title>Kerberos for SharePoint on Server 2008 with IIS 7</title><link>https://rikhepworth.com/posts/kerberos-for-sharepoint-on-server-2008-with-iis-7/</link><pubDate>Mon, 06 Jul 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/kerberos-for-sharepoint-on-server-2008-with-iis-7/</guid><description>&lt;p&gt;UPDATE: Spence posted a great comment pointing out some issues with this post. Richard then restored our Community Server DB to a point in time before the post, so it’s been wiped. Post again, Spence, please, as I didn’t get chance to copy the text of the comment, I’m afraid.&lt;/p&gt;</description></item><item><title>@media Day 2 - Afternoon</title><link>https://rikhepworth.com/posts/media-day-2-afternoon/</link><pubDate>Fri, 26 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/media-day-2-afternoon/</guid><description>&lt;p&gt;I hadn’t really thought about it before, but Andy Budd has a very similar presentation style to my own. He’s incredibly enthusiastic and passionate about what he’s speaking about, and he wanders around waving his arms in an extremely animated way. Snap!&lt;/p&gt;</description></item><item><title>@media Day 2 - Morning</title><link>https://rikhepworth.com/posts/media-day-2-morning/</link><pubDate>Fri, 26 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/media-day-2-morning/</guid><description>&lt;p&gt;It’s a muggy day today. With thunderstorms expected, the morning air was thick as we walked over to the South Bank Centre.&lt;/p&gt;
&lt;p&gt;I found Douglas Crockford’s opening session thoughtful. It wasn’t what I was expecting – I had anticipated a focus more on methodologies and approaches to improving quality. instead, it was an interesting and sometimes humorous examination as to why quality in software is such a difficult area, with an informative walk through the history of software thrown in.&lt;/p&gt;</description></item><item><title>Joining in the background noise: I am now on Twitter</title><link>https://rikhepworth.com/posts/joining-in-the-background-noise-i-am-now-on-twitter/</link><pubDate>Fri, 26 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/joining-in-the-background-noise-i-am-now-on-twitter/</guid><description>&lt;p&gt;One of the reasons I enjoy conferences like @media is that I can be persuaded to change my mind on things. After a persuasive argument from &lt;a href="http://www.nicksmith.co.uk" target="_blank" rel="noreferrer"&gt;Nick&lt;/a&gt; I’ve decided to alter my stance on &lt;a href="http://twitter.com/" target="_blank" rel="noreferrer"&gt;twitter&lt;/a&gt; and give it a go for a while.&lt;/p&gt;</description></item><item><title>Places to eat on the South Bank in London</title><link>https://rikhepworth.com/posts/places-to-eat-on-the-south-bank-in-london/</link><pubDate>Fri, 26 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-on-the-south-bank-in-london/</guid><description>&lt;p&gt;A set of conference posts wouldn’t be complete without a run down of the local culinary delights. We haven’t strayed far from the South Bank Centre for the past few days, but we’ve had a great variety of meals.&lt;/p&gt;</description></item><item><title>@media 2009 Day 1 - Afternoon</title><link>https://rikhepworth.com/posts/media-2009-day-1-afternoon/</link><pubDate>Thu, 25 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/media-2009-day-1-afternoon/</guid><description>&lt;p&gt;Not providing lunch at the conference was perhaps a bit of a double edged sword. On the one hand, Wagamamas is just so close (mmm… chicken katsu curry); on the other hand, lots of people were nodding off in the warmth of the first session.&lt;/p&gt;</description></item><item><title>@media 2009 Day 1 - Morning</title><link>https://rikhepworth.com/posts/media-2009-day-1-morning/</link><pubDate>Thu, 25 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/media-2009-day-1-morning/</guid><description>&lt;p&gt;It’s good to see familiar faces once again here at @media. This year’s conference is around the same size as the first one in 2005 and it has a strangely familial feeling. &lt;a href="http://www.nicksmith.co.uk" target="_blank" rel="noreferrer"&gt;Nick’s&lt;/a&gt; here as a volunteer ‘@mediator’ so he was manning the desk as we registered.&lt;/p&gt;</description></item><item><title>See you at @media09? Tickets are still available</title><link>https://rikhepworth.com/posts/see-you-at-media09-tickets-are-still-available/</link><pubDate>Wed, 24 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/see-you-at-media09-tickets-are-still-available/</guid><description>&lt;p&gt;Lauren and I set off for London later to today. It’s &lt;a href="http://vivabit.com/atmedia2009/" target="_blank" rel="noreferrer"&gt;@media&lt;/a&gt; time again and I’ve been looking forward to this for a while. As usual Patrick Griffiths has lined up a fantastic group of really &lt;a href="http://vivabit.com/atmedia2009/speakers/" target="_blank" rel="noreferrer"&gt;inspirational speakers&lt;/a&gt; and, whilst smaller in the light of the current climate, I have no doubts that it will be useful.&lt;/p&gt;</description></item><item><title>Speaking at VBUG Newcastle in July</title><link>https://rikhepworth.com/posts/speaking-at-vbug-newcastle-in-july/</link><pubDate>Tue, 16 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/speaking-at-vbug-newcastle-in-july/</guid><description>&lt;p&gt;Andy Westgarth and the guys at &lt;a href="http://www.vbug.co.uk/events/default.aspx?region=Newcastle" target="_blank" rel="noreferrer"&gt;VBUG Newcastle&lt;/a&gt; very kindly invited me to speak about and demo some of what I consider to be key features in Windows 7 and Server 2008. If you read the blog and would like to see what I really look like, are interested in the topic of the talk or interested in VBUG in general, come along!&lt;/p&gt;</description></item><item><title>Things to do in Seattle: Gameworks</title><link>https://rikhepworth.com/posts/things-to-do-in-seattle-gameworks/</link><pubDate>Mon, 08 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/things-to-do-in-seattle-gameworks/</guid><description>&lt;p&gt;As you probably guess, Richard and myself were in Seattle for a short conference last week. The evening entertainment on one night was a trip to &lt;a href="http://www.gameworks.com/?tId=1&amp;amp;sId=16" target="_blank" rel="noreferrer"&gt;Gameworks&lt;/a&gt;. If you like playing video games with your mates, going head-to-head at things like Sega Rally, then you’ll have a good time in Gameworks.&lt;/p&gt;</description></item><item><title>Places to eat in Seattle: Etta’s Seafood</title><link>https://rikhepworth.com/posts/places-to-eat-in-seattle-ettas-seafood/</link><pubDate>Sun, 07 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-seattle-ettas-seafood/</guid><description>&lt;p&gt;On our arrival in Seattle, Richard and I had a great meal in &lt;a href="http://www.tomdouglas.com" target="_blank" rel="noreferrer"&gt;Etta’s Seafood&lt;/a&gt;, which is not far along the road from Pike’s Market, heading out with the bay on your left. The food was excellent – fantastic chowder and a burger cooked just to your taste. A warning though – if you’re a wee slip of a lad like I am you may find the portions daunting. It was a friendly, charming place and great welcome to the city.&lt;/p&gt;</description></item><item><title>Places to eat in Seattle: Marcella’s Cookery</title><link>https://rikhepworth.com/posts/places-to-eat-in-seattle-marcellas-cookery/</link><pubDate>Sun, 07 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-seattle-marcellas-cookery/</guid><description>&lt;p&gt;Tonight we ate in a place we’d seen &lt;a href="http://blogs.msdn.com/saraford/archive/2009/04/11/dear-seattle-please-support-new-orleans-by-eating-at-macrella-s-cookery.aspx" target="_blank" rel="noreferrer"&gt;recommended by Sara Ford&lt;/a&gt; in her blog: &lt;a href="http://marcelascookery.com/index.html" target="_blank" rel="noreferrer"&gt;Marcella’s Cookery&lt;/a&gt;. A fantastic little New Orleans-style eatery run by the eponymous (and very friendly) Marcella and her husband, Anthony. The food was fabulous, well cooked and happily discussed by the chef himself. Between us we tried a number of dishes and all were excellent. Anthony (the chef) told us that he moved to Seattle after Hurricane Katrina and I think it’s Seattle’s gain – we had a great time and I can wholeheartedly recommend the place.&lt;/p&gt;</description></item><item><title>Things to do in Seattle: Baseball</title><link>https://rikhepworth.com/posts/things-to-do-in-seattle-baseball/</link><pubDate>Thu, 04 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/things-to-do-in-seattle-baseball/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="Seattle 2009 008"
 width="244"
 height="184"
 src="https://rikhepworth.com/posts/things-to-do-in-seattle-baseball/images/Seattle2009008_thumb_0F063F6C.jpg"
 srcset="https://rikhepworth.com/posts/things-to-do-in-seattle-baseball/images/Seattle2009008_thumb_0F063F6C.jpg 800w, https://rikhepworth.com/posts/things-to-do-in-seattle-baseball/images/Seattle2009008_thumb_0F063F6C.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/things-to-do-in-seattle-baseball/images/Seattle2009008_thumb_0F063F6C.jpg"&gt;&lt;figcaption&gt;Seattle 2009 008&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;We had a great night tonight. Our visit to Seattle coincided with three home games for the Mariners, and I went to my first baseball game tonight. Not only was it a fantastic match, going right down to the last pitch, but one of the batters obviously realised I was a baseball newbie and kindly hit me a ball as keepsake!&lt;/p&gt;</description></item><item><title>Places to eat in Seattle: Lowell’s</title><link>https://rikhepworth.com/posts/places-to-eat-in-seattle-lowells/</link><pubDate>Wed, 03 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/places-to-eat-in-seattle-lowells/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt="slide1"
 width="244"
 height="156"
 src="https://rikhepworth.com/posts/places-to-eat-in-seattle-lowells/images/slide1_thumb_7DA0C1CD.jpg"
 srcset="https://rikhepworth.com/posts/places-to-eat-in-seattle-lowells/images/slide1_thumb_7DA0C1CD.jpg 800w, https://rikhepworth.com/posts/places-to-eat-in-seattle-lowells/images/slide1_thumb_7DA0C1CD.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://rikhepworth.com/posts/places-to-eat-in-seattle-lowells/images/slide1_thumb_7DA0C1CD.jpg"&gt;&lt;figcaption&gt;slide1&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;Richard’s an old hand in Seattle, so he suggested we ate breakfast at &lt;a href="http://www.eatatlowells.com/" target="_blank" rel="noreferrer"&gt;Lowell’s&lt;/a&gt; down at the Pike Place Market. I’m really glad he did – the eggs benedict were fantastic. We ate great food with a fantastic view of the bay. If you’re ever in Seattle I can wholeheartedly recommend that you try Lowell’s while you’re here.&lt;/p&gt;</description></item><item><title>UK Hotels take note – this how to do coffee in my room!</title><link>https://rikhepworth.com/posts/uk-hotels-take-note-this-how-to-do-coffee-in-my-room/</link><pubDate>Tue, 02 Jun 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/uk-hotels-take-note-this-how-to-do-coffee-in-my-room/</guid><description>&lt;p&gt;I’m in Seattle this week (just as a big heatwave has rolled in). As I type this I’m looking out from my room at the Westin over a great view of the bay. In the corner I hear my coffee brewing. None of your little kettles and sachets of instant coffee here. Look what I got:&lt;/p&gt;</description></item><item><title>Configuring IIS Bindings to include host headers with https on Windows Server 2008 (for SharePoint)</title><link>https://rikhepworth.com/posts/configuring-iis-bindings-to-include-host-headers-with-https-on-windows-server-2008-for-sharepoint/</link><pubDate>Wed, 27 May 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/configuring-iis-bindings-to-include-host-headers-with-https-on-windows-server-2008-for-sharepoint/</guid><description>&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; &lt;em&gt;We use a wildcard SSL certificate which makes our life much easier when dealing with multiple hostnames. I have not tested this approach with multiple SSL certificates for specific sites.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Incoming Email with SharePoint on Windows Server 2008</title><link>https://rikhepworth.com/posts/incoming-email-with-sharepoint-on-windows-server-2008/</link><pubDate>Wed, 27 May 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/incoming-email-with-sharepoint-on-windows-server-2008/</guid><description>&lt;p&gt;I’ve been meaning to write this up for a while, simply because it’s not quite as straightforward as with Server 2005.&lt;/p&gt;
&lt;p&gt;To configure incoming email on SharePoint when running on Server 2008 you’ll need to run through the following steps:&lt;/p&gt;</description></item><item><title>SharePoint Service Pack 2 Pains</title><link>https://rikhepworth.com/posts/sharepoint-service-pack-2-pains/</link><pubDate>Wed, 27 May 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-service-pack-2-pains/</guid><description>&lt;p&gt;I finally bit the bullet and decided to upgrade our SharePoint farm yesterday. I’d been holding off for a while because of time constraints and because of a &lt;a href="http://blogs.msdn.com/brismith/archive/2009/04/17/project-server-2007-upgrading-from-a-pre-october-cu-may-fail-during-psconfig-step-8.aspx" target="_blank" rel="noreferrer"&gt;known issue with Project Server&lt;/a&gt;, also part of our farm.&lt;/p&gt;</description></item><item><title>Creating a new Virtual PC using the Virtual Windows XP Base Disk</title><link>https://rikhepworth.com/posts/creating-a-new-virtual-pc-using-the-virtual-windows-xp-base-disk/</link><pubDate>Tue, 26 May 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/creating-a-new-virtual-pc-using-the-virtual-windows-xp-base-disk/</guid><description>&lt;p&gt;One of the most useful elements of the Virtual Windows XP feature in Windows 7 is that the VPC is easily replicated and you can have multiple virtual machines all publishing applications which run in their own sandboxes.&lt;/p&gt;</description></item><item><title>NewSID fails on Windows Server 2008 R2</title><link>https://rikhepworth.com/posts/newsid-fails-on-windows-server-2008-r2/</link><pubDate>Fri, 08 May 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/newsid-fails-on-windows-server-2008-r2/</guid><description>&lt;p&gt;The title says it all. I’m currently building a virtual lab to test DirectAccess and every time I run newsid on windows server 2008 R2 the system bluescreens irrevocably on reboot. I’ve now switched to using sysprep to change the SID. Here’s hoping the sysinternals guys update what is undoubtedly one of the most useful tools around!&lt;/p&gt;</description></item><item><title>Install System Center Capacity Planner 2007 on Windows 7</title><link>https://rikhepworth.com/posts/install-system-center-capacity-planner-2007-on-windows-7/</link><pubDate>Tue, 31 Mar 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/install-system-center-capacity-planner-2007-on-windows-7/</guid><description>&lt;p&gt;I’ve been using Windows 7 for a while now, but I’ve never needed to install the System Center Capacity Planner (Andy usually handles that side of our SharePoint engagements). He now has taken the plunge with Microsoft’s shiny OS and hit a problem: SCCP refused to install with an error message saying it was only supported on Windows XP (!)&lt;/p&gt;</description></item><item><title>Windows 7 on the 8Gb SSD Mini 9: Redux</title><link>https://rikhepworth.com/posts/windows-7-on-the-8gb-ssd-mini-9-redux/</link><pubDate>Fri, 20 Feb 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/windows-7-on-the-8gb-ssd-mini-9-redux/</guid><description>&lt;p&gt;You may remember that I ended my &lt;a href="https://rikhepworth.com/post/2009/02/2009-02-19-windows-7-on-the-dell-mini-9-with-only-the-8gb-ssd" &gt;previous post&lt;/a&gt; with about 1.6Gb free on the 8Gb SSD of the Mini 9 after installing Windows 7.&lt;/p&gt;
&lt;p&gt;I still needed to install Office 2007, or at the very least Word and Excel for the ‘book to be useful. I therefore rummaged out another 16Gb SD card and revisited my earlier vista post about &lt;a href="https://rikhepworth.com/post/2008/10/2008-10-17-vista-on-the-dell-mini-9-installing-applications-on-an-sd-card" &gt;installing apps to an SD card&lt;/a&gt;. This time I simply let the card allocate a drive letter and installed Office to d:\Program Files instead.&lt;/p&gt;</description></item><item><title>Windows 7 on the Dell Mini 9 with only the 8Gb SSD</title><link>https://rikhepworth.com/posts/windows-7-on-the-dell-mini-9-with-only-the-8gb-ssd/</link><pubDate>Thu, 19 Feb 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/windows-7-on-the-dell-mini-9-with-only-the-8gb-ssd/</guid><description>&lt;p&gt;In my &lt;a href="https://rikhepworth.com/post/2008/11/2008-11-10-windows-7-on-the-dell-mini-9" &gt;previous post&lt;/a&gt; about getting Windows 7 onto the fantastic Dell Mini 9 I talked about solving things like the driver issues and antivirus. This time I’m going to cover how I installed Windows 7 onto the 8Gb SSD version of the Mini 9.&lt;/p&gt;</description></item><item><title>Achieving HDMI audio output with ATI hardware on Windows 7 (and Vista)</title><link>https://rikhepworth.com/posts/achieving-hdmi-audio-output-with-ati-hardware-on-windows-7-and-vista/</link><pubDate>Sun, 08 Feb 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/achieving-hdmi-audio-output-with-ati-hardware-on-windows-7-and-vista/</guid><description>&lt;p&gt;The steps in this article were figured out with Windows 7. However, they should work just fine with Vista for anybody having the same issues. Note that whilst this is written for ATI hardware, it may be the case that NVidia gear suffers from the same problem and this solution should help.&lt;/p&gt;</description></item><item><title>Windows 7: Attempting to install to VHD – an odyssey</title><link>https://rikhepworth.com/posts/windows-7-attempting-to-install-to-vhd-an-odyssey/</link><pubDate>Sat, 07 Feb 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/windows-7-attempting-to-install-to-vhd-an-odyssey/</guid><description>&lt;p&gt;One of the things I am most impressed about with Windows 7 is the latest Media Center. As a result, I wanted to install the build 7000 beta release onto our media PC at home. However, I already have that working nicely with Windows Vista and, frankly, I didn’t want to have to repeatedly reinstall if the beta caused problems.&lt;/p&gt;</description></item><item><title>SharePoint 2007: Following Adobe Instructions Can Cause Problems</title><link>https://rikhepworth.com/posts/sharepoint-2007-following-adobe-instructions-can-cause-problems/</link><pubDate>Fri, 06 Feb 2009 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-2007-following-adobe-instructions-can-cause-problems/</guid><description>&lt;p&gt;Having just spent a long time examining the state of a new farm we’ve been working on for demonstrations, I would like to issue a warning…&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Problem:&lt;/strong&gt; None of the ‘New…’ menu items in our document libraries would work – we were seeing the error message:&lt;/p&gt;</description></item><item><title>Managing Remote Hyper-V Servers From Windows 7</title><link>https://rikhepworth.com/posts/managing-remote-hyper-v-servers-from-windows-7/</link><pubDate>Tue, 02 Dec 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/managing-remote-hyper-v-servers-from-windows-7/</guid><description>&lt;p&gt;I&amp;rsquo;m using the Mini9 quite a lot lately, at least in part to fiddle with Windows 7. I decided it would be nice to be able to access our Hyper-V servers so I went looking for the management tools&amp;hellip;&lt;/p&gt;</description></item><item><title>Windows 7 on the Dell Mini 9</title><link>https://rikhepworth.com/posts/windows-7-on-the-dell-mini-9/</link><pubDate>Mon, 10 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/windows-7-on-the-dell-mini-9/</guid><description>&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt="Windows7"
 src="images/Windows7ontheDellMini9_FDFCWindows7.png"
 &gt;&lt;/figure&gt;
&lt;p&gt;What better way to try Windows 7 then installing it on the Mini 9? Having read all the commentary about the smaller footprint of the new OS I couldn&amp;rsquo;t resist.&lt;/p&gt;</description></item><item><title>Tech Ed EMEA IT: Day 3 - Steve Riley</title><link>https://rikhepworth.com/posts/tech-ed-emea-it-day-3-steve-riley/</link><pubDate>Thu, 06 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-ed-emea-it-day-3-steve-riley/</guid><description>&lt;p&gt;The last session of the day was just incredible. A surfer-dude with boundless energy wandering around the audience in shorts, cracking jokes and telling stories and every single one related in some way to his point. Steve Riley is a fantastic presenter, and his session - &lt;em&gt;Do these ten things now or else get 0wned&lt;/em&gt; was a great session on security. Sadly, I don&amp;rsquo;t think it&amp;rsquo;s repeated or I would urge you all to attend the next viewing. If you have the chance to see Steve speak, grab it with both hands - especially if you are involved in any way with security or IT management.&lt;/p&gt;</description></item><item><title>Tech Ed EMEA IT: Day 4 - Guru Central</title><link>https://rikhepworth.com/posts/tech-ed-emea-it-day-4-guru-central/</link><pubDate>Thu, 06 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-ed-emea-it-day-4-guru-central/</guid><description>&lt;p&gt;So, we&amp;rsquo;re on the penultimate day of TechEd EMEA and I have to say that exhaustion is starting to creep in. However, the day had a great start with sessions by Steve Riley and then Mark Russinovich.&lt;/p&gt;</description></item><item><title>Tech Ed EMEA IT: Day 3 - Microsoft Enterprise Desktop Virtualisation (MED-V)</title><link>https://rikhepworth.com/posts/tech-ed-emea-it-day-3-microsoft-enterprise-desktop-virtualisation-med-v/</link><pubDate>Wed, 05 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-ed-emea-it-day-3-microsoft-enterprise-desktop-virtualisation-med-v/</guid><description>&lt;p&gt;OK, MED-V is cool! Sadly, cool though it is, it&amp;rsquo;s not something we&amp;rsquo;ll use3 at BM, but in my previous lives doing large organisation IT, MED-V would have been a killer.&lt;/p&gt;</description></item><item><title>Tech Ed EMEA IT: Day 3 - Server 2008 R2</title><link>https://rikhepworth.com/posts/tech-ed-emea-it-day-3-server-2008-r2/</link><pubDate>Wed, 05 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-ed-emea-it-day-3-server-2008-r2/</guid><description>&lt;p&gt;We were in early today, looking forward to a session on SharePoint with Bill Engolish. Sadly, that was cancelled so Andy and I sat in on the Server 2008 R2 overview session presented by Iain McDonald. That was very interesing, and we learned a bit more about BranchCache. It doesn&amp;rsquo;t look like it will replace WAN accelerators like Riverbved, because it doesn&amp;rsquo;t appear to function at their low level. However, it does a similar thing at the file level. The client requests a file from the remote server, which instead replies with hashes. The client PC the requests those hashes from the local cache, improving performance. The cache itself is built on request so does not need to be pre-populated (which is good). I think WAN accelerators have nothing to fear from this, but for smaller organisations or ones which aren&amp;rsquo;t able to put the accelerators in (perhaps their servers are hosted, for example) BranchCache looks like a very promising technology.&lt;/p&gt;</description></item><item><title>TechEd EMEA IT: Day 2 - Threat Management Gateway</title><link>https://rikhepworth.com/posts/teched-emea-it-day-2-threat-management-gateway/</link><pubDate>Tue, 04 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/teched-emea-it-day-2-threat-management-gateway/</guid><description>&lt;p&gt;Andy and I are now in a TMG preview demo. This looks really interesting - we spoke to the guys at ATE last night and saw a few items that I hope to see now in more detail. TMG is ISA Server vnext - codenamed &amp;lsquo;Nitrogen&amp;rsquo; and part of the &amp;lsquo;Stirling&amp;rsquo; next wave of Forefront.&lt;/p&gt;</description></item><item><title>TechEd EMEA IT: Day 2 - Windows 7 Feature Preview</title><link>https://rikhepworth.com/posts/teched-emea-it-day-2-windows-7-feature-preview/</link><pubDate>Tue, 04 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/teched-emea-it-day-2-windows-7-feature-preview/</guid><description>&lt;p&gt;So, the first session of the day was an extremely well-attended overview of Windows 7 features. When they talk about evolution rather than revolution with regard to Windows 7, I think that&amp;rsquo;s accurate. It was very much about developing and extending the foundations of Vista.&lt;/p&gt;</description></item><item><title>Tech Ed EMEA IT 2008: Day 1 - Keynote</title><link>https://rikhepworth.com/posts/tech-ed-emea-it-2008-day-1-keynote/</link><pubDate>Mon, 03 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-ed-emea-it-2008-day-1-keynote/</guid><description>&lt;p&gt;So, the keynote was interesting. Much of the content I had seen before, but there were some demos that were interesting and a few snippets that made me take note.&lt;/p&gt;</description></item><item><title>Tech ED EMEA IT: Day 1 - Waiting for the Keynote</title><link>https://rikhepworth.com/posts/tech-ed-emea-it-day-1-waiting-for-the-keynote/</link><pubDate>Mon, 03 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/tech-ed-emea-it-day-1-waiting-for-the-keynote/</guid><description>&lt;p&gt;It&amp;rsquo;s an exercise in surreality. I&amp;rsquo;ve just walked through tunnels reminiscent of THX1138, to emerge in a wonderful blue-bathed auditorium, and they&amp;rsquo;re playing the Akira soundtrack (specifically the bit from just after the first nuclear explosion). Weird.&lt;/p&gt;</description></item><item><title>TechEd EMEA IT: Day 1</title><link>https://rikhepworth.com/posts/teched-emea-it-day-1/</link><pubDate>Mon, 03 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/teched-emea-it-day-1/</guid><description>&lt;p&gt;It&amp;rsquo;s 7:25 AM. Andy and I are hoping to make a whistle-stop trip to the Cathedral before making it to the conference early enough to get good seats for the keynote.&lt;/p&gt;</description></item><item><title>TechEd EMEA IT: Day 0 - Greetings from Barcelona</title><link>https://rikhepworth.com/posts/teched-emea-it-day-0-greetings-from-barcelona/</link><pubDate>Sun, 02 Nov 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/teched-emea-it-day-0-greetings-from-barcelona/</guid><description>&lt;p&gt;Ola! &lt;a href="http://blogs.blackmarble.co.uk/blogs/adawson/default.aspx" target="_blank" rel="noreferrer"&gt;Andy&lt;/a&gt; and I are now in sunny Espana. Only it&amp;rsquo;s not sunny. Oh well&amp;hellip; However, true to form we started our trip, having registered at the conference centre, by eating hot dogs in a german fast food joint in a Spanish shopping centre! If you&amp;rsquo;re passing, &lt;a href="http://www.kurz-gut.com/" target="_blank" rel="noreferrer"&gt;Kurz &amp;amp; Gut&lt;/a&gt; does pretty good food.&lt;/p&gt;</description></item><item><title>Barcelona-bound</title><link>https://rikhepworth.com/posts/barcelona-bound/</link><pubDate>Fri, 31 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/barcelona-bound/</guid><description>&lt;p&gt;&lt;a href="http://blogs.blackmarble.co.uk/blogs/adawson/default.aspx" target="_blank" rel="noreferrer"&gt;Andy&lt;/a&gt; and I are travelling to Barcelona this weekend for TechEd EMEA IT. I’m really looking forward to some of the sessions on Hyper-V, SharePoint and Forefront.If you’re going to be there, feel free to drop us a line and say hi.&lt;/p&gt;</description></item><item><title>Mix Remixed</title><link>https://rikhepworth.com/posts/mix-remixed/</link><pubDate>Sun, 26 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/mix-remixed/</guid><description>&lt;p&gt;I don’t visit the &lt;a href="http://www.visitmix.com/" target="_blank" rel="noreferrer"&gt;Mix&lt;/a&gt; community site often – historically, the content has been of little interest and infrequently updated. Imagine my surprise, then, to find a relaunched Mix Online with a new &lt;a href="http://microformats.org/" target="_blank" rel="noreferrer"&gt;Microformats&lt;/a&gt; project – &lt;a href="http://www.codeplex.com/Oomph/" target="_blank" rel="noreferrer"&gt;Oomph&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Vista on Dell Mini 9: Using junctions to move files off the SSD</title><link>https://rikhepworth.com/posts/vista-on-dell-mini-9-using-junctions-to-move-files-off-the-ssd/</link><pubDate>Fri, 17 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/vista-on-dell-mini-9-using-junctions-to-move-files-off-the-ssd/</guid><description>&lt;p&gt;Flush with my success earlier in getting apps installed on the SD card now mounted as &amp;lsquo;c:\SD Program Files&amp;rsquo; I installed a few things. I then hit a snag.&lt;/p&gt;
&lt;p&gt;When you install apps using an MSI, the installation files get cached by Windows Installer. Steadily, c:\windows\installer gets bigger and bigger, so whilst my apps were no longer taking up space, the install files were (and some of those are quite large).&lt;/p&gt;</description></item><item><title>Vista on the Dell Mini 9: Installing applications on an SD card</title><link>https://rikhepworth.com/posts/vista-on-the-dell-mini-9-installing-applications-on-an-sd-card/</link><pubDate>Fri, 17 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/vista-on-the-dell-mini-9-installing-applications-on-an-sd-card/</guid><description>&lt;p&gt;I’m still trying new things with the Mini 9. I now have an image file that I can restore to the Mini which has my base install after running sysprep. The problem I have is storage space – the SSD isn’t &lt;em&gt;quite&lt;/em&gt; big enough.&lt;/p&gt;</description></item><item><title>Getting Vista on the Dell Mini 9</title><link>https://rikhepworth.com/posts/getting-vista-on-the-dell-mini-9/</link><pubDate>Tue, 14 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/getting-vista-on-the-dell-mini-9/</guid><description>&lt;p&gt;Our second Mini 9 arrived in the office today. This one is for Andy and myself to use whilst out of the office. Richard has successfully upgraded his to XP Professional, so we had to try to push the bar out a little further – we’re running Vista Business.&lt;/p&gt;</description></item><item><title>Vista on the Dell Mini 9: Redux</title><link>https://rikhepworth.com/posts/vista-on-the-dell-mini-9-redux/</link><pubDate>Tue, 14 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/vista-on-the-dell-mini-9-redux/</guid><description>&lt;p&gt;I&amp;rsquo;ve been chipping away at this for a while now today, and I&amp;rsquo;ve learned a few things on the way:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When Vista says it suggests installing the battery drivers for the system, don&amp;rsquo;t. The zip file it suggested I install broke power management.&lt;/li&gt;
&lt;li&gt;Patch the system fully as an admin user before logging in as a restricted user. It will save you hours of time.&lt;/li&gt;
&lt;li&gt;Sysinternals Diskmon doesn&amp;rsquo;t work with Vista - you need to run it as admin, and that certainly isn&amp;rsquo;t an option for my restricted users.&lt;/li&gt;
&lt;li&gt;Vista when hibernating just shows a black screen. That&amp;rsquo;s not very helpful the first time you try it, on a silent machine with no disk activity lights at all.&lt;/li&gt;
&lt;li&gt;think Vista takes longer to hibernate and come back from hibernation than XP, although coming back from sleep is much quicker than it&amp;rsquo;s older sibling.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Overall, I&amp;rsquo;m still happy. I have Vista, Office 2007 and Live Writer and 3.5Gb of disk space free. With no serious hacking the Dell runs at around 50% memory usage witrh a browser and live writer running. I can live with that. Battery life appears OK. It&amp;rsquo;s 10:30 and I&amp;rsquo;ve been using the Dell since 8pm, thrashing the disk (as much as there is one) and the wi-fi, and I&amp;rsquo;m at 38% battery. That puts me on track for about four hours or so and I can live with that.&lt;/p&gt;</description></item><item><title>First thoughts on the Acer Aspire One</title><link>https://rikhepworth.com/posts/first-thoughts-on-the-acer-aspire-one/</link><pubDate>Tue, 07 Oct 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/first-thoughts-on-the-acer-aspire-one/</guid><description>&lt;p&gt;You can’t say that things never change. I nipped out to Tesco last night for a few bits of shopping – you know, some beer, spices for cooking, etc – and came back with an Acer Aspire One. As you do…&lt;/p&gt;</description></item><item><title>Dell Mini 9: A Day In The Life</title><link>https://rikhepworth.com/posts/dell-mini-9-a-day-in-the-life/</link><pubDate>Tue, 30 Sep 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/dell-mini-9-a-day-in-the-life/</guid><description>&lt;p&gt;Colour me impressed. I managed well over four hours’ battery life today and found the Mini 9 a joy to use. I have encountered a snag, however, and it wasn’t one that I expected.&lt;/p&gt;</description></item><item><title>First thoughts on the Dell Mini 9</title><link>https://rikhepworth.com/posts/first-thoughts-on-the-dell-mini-9/</link><pubDate>Mon, 29 Sep 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/first-thoughts-on-the-dell-mini-9/</guid><description>&lt;p&gt;I’m down in London tomorrow, and rather than lug my laptop on the train I’ve borrowed &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/archive/2008/09/24/first-thoughts-on-the-dell-mini-9.aspx" target="_blank" rel="noreferrer"&gt;Richard’s shiny new Mini 9&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Overall, I’m quite impressed with it. I’m still not sure about the keyboard, even after a couple of hours typing away – the keys are small and some of them are smaller still, which makes typing an interesting experience. However, I’m sure I would get used to it with time. The thing is, a netbook is not aimed at being your everyday machine, so does a quirky keyboard become a barrier to use if that use is intermittent?&lt;/p&gt;</description></item><item><title>Browsers are like buses</title><link>https://rikhepworth.com/posts/browsers-are-like-buses/</link><pubDate>Tue, 02 Sep 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/browsers-are-like-buses/</guid><description>&lt;p&gt;You wait around for ages and then two come along, all at once! No sooner have I downloaded &lt;a href="http://www.microsoft.com/windows/products/winfamily/ie/ie8/getitnow.mspx" target="_blank" rel="noreferrer"&gt;IE8 beta 2&lt;/a&gt; than Google announce &lt;a href="http://google.com/chrome" target="_blank" rel="noreferrer"&gt;Chrome&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been using IE8 for a few days and I&amp;rsquo;m quite impressed. I&amp;rsquo;ve just downloaded Chrome and I have to say, it&amp;rsquo;s a darn good browser. The feature I most wanted from any tab-based browser and one I&amp;rsquo;ve mentioned before in the context of IE is present in Chrome - tabs you can drag between windows.&lt;/p&gt;</description></item><item><title>Workflow and SQL Error: Part 3</title><link>https://rikhepworth.com/posts/workflow-and-sql-error-part-3/</link><pubDate>Thu, 28 Aug 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/workflow-and-sql-error-part-3/</guid><description>&lt;p&gt;As you may remember from my &lt;a href="https://rikhepworth.com/post/2008/07/2008-07-03-workflow-history-and-sql-error.aspx" &gt;earlier post&lt;/a&gt; and subsequent &lt;a href="https://rikhepworth.com/post/2008/07/2008-07-14-workflow-and-sql-error-update.aspx" &gt;follow-up&lt;/a&gt;, we have been seeing an issue related to workflows and the Workflow History list in SharePoint 2007. As I&amp;rsquo;ve already mentioned, the case is with Microsoft and I also said that I would post updates as new information arrived. Today, more detail has emerged and, as promised, I am sharing.&lt;/p&gt;</description></item><item><title>Netware 6.5 on Hyper-V</title><link>https://rikhepworth.com/posts/netware-6-5-on-hyper-v/</link><pubDate>Thu, 14 Aug 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/netware-6-5-on-hyper-v/</guid><description>&lt;p&gt;As part of a customer project I needed to create a Netware environment for testing. It&amp;rsquo;s been a little while since I did any netware management and I quite enjoyed it. I did, however, encounter a couple of gotchas which I thought I&amp;rsquo;d write up for the greater good.&lt;/p&gt;</description></item><item><title>Configuring ActiveSync on Windows Mobile for Exchange Push</title><link>https://rikhepworth.com/posts/configuring-activesync-on-windows-mobile-for-exchange-push/</link><pubDate>Fri, 01 Aug 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/configuring-activesync-on-windows-mobile-for-exchange-push/</guid><description>&lt;p&gt;I&amp;rsquo;m not certain how many of you will find this useful, but I had a question about configuring the Touch Diamond to talk to Exchange which I regrettably failed to notice.&lt;/p&gt;</description></item><item><title>SharePoint Website Schematic</title><link>https://rikhepworth.com/posts/sharepoint-website-schematic/</link><pubDate>Fri, 01 Aug 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-website-schematic/</guid><description>&lt;p&gt;I find myself drawing the same diagram over and over again in meetings to explain how SharePoint sites relate to IIS web sites, how managed paths and alternate access mappings fit and why you need to extend the SharePoint web application if you want more than one authentication provider.&lt;/p&gt;</description></item><item><title>Unable to access My Tasks in Project Web Access</title><link>https://rikhepworth.com/posts/unable-to-access-my-tasks-in-project-web-access/</link><pubDate>Fri, 01 Aug 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/unable-to-access-my-tasks-in-project-web-access/</guid><description>&lt;p&gt;Sometime ago we noticed an issue with My Tasks in Project Server. Certain users were unable to access My Tasks at all - they simply got a SharePoint error page.&lt;/p&gt;</description></item><item><title>Site Policies and FBA in SharePoint: Update</title><link>https://rikhepworth.com/posts/site-policies-and-fba-in-sharepoint-update/</link><pubDate>Wed, 30 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/site-policies-and-fba-in-sharepoint-update/</guid><description>&lt;p&gt;My apologies to Craig, who posted a comment to my earlier post about our FBA problems and I didn&amp;rsquo;t notice until today.&lt;/p&gt;
&lt;p&gt;To update you all on the situation, the fault is still with Microsoft and I have not yet received a hotfix.&lt;/p&gt;</description></item><item><title>Life with a Diamond: nearly two weeks on</title><link>https://rikhepworth.com/posts/life-with-a-diamond-nearly-two-weeks-on/</link><pubDate>Tue, 22 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/life-with-a-diamond-nearly-two-weeks-on/</guid><description>&lt;p&gt;I said I&amp;rsquo;d post again once I&amp;rsquo;d had the Diamond a little while. It&amp;rsquo;s now been two weeks and I can honestly say I&amp;rsquo;m completely happy with it. Battery life for me is fine - I charge it about every three days and it chugs along with exchange push pretty much constantly. I am quite comfortable with the soft keyboard and I can honestly say I haven&amp;rsquo;t noticed any issues with the speed of the device either.&lt;/p&gt;</description></item><item><title>Touch Diamond Battery Life</title><link>https://rikhepworth.com/posts/touch-diamond-battery-life/</link><pubDate>Mon, 14 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/touch-diamond-battery-life/</guid><description>&lt;p&gt;In my last post about the Diamond I said I would let you know what the battery life is. I therefore carefully refrained from giving it any charge over the weekend, even when connected to my PC.&lt;/p&gt;</description></item><item><title>Workflow and SQL Error: Update</title><link>https://rikhepworth.com/posts/workflow-and-sql-error-update/</link><pubDate>Mon, 14 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/workflow-and-sql-error-update/</guid><description>&lt;p&gt;I posted last week about a couple of issues we were experiencing with SharePoint. I made some traction on the &lt;a href="https://rikhepworth.com/post/2008/07/2008-07-03-workflow-history-and-sql-error" &gt;Workflow History issue&lt;/a&gt; at the end of last week and the revelation was pretty far-reaching, so I&amp;rsquo;m posting again.&lt;/p&gt;</description></item><item><title>blogging on the move: redux</title><link>https://rikhepworth.com/posts/blogging-on-the-move-redux/</link><pubDate>Sat, 12 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/blogging-on-the-move-redux/</guid><description>&lt;p&gt;Richard&amp;rsquo;s little mobile blogging app is nice, but he isn&amp;rsquo;t that responsive to user requests (ie, mine!) so I thought I would see if anything else was out there.&lt;br&gt;
Sadly, the answer appears to be &amp;rsquo;not really&amp;rsquo;&lt;br&gt;
However, I did come across Diarist, from Kevin Daly. Perhaps not surprisingly I am using it now. I must say that two thumb typing on the diamond keyboard is not bad, although nowhere near as fast as the real keyboard on the tytn.&lt;br&gt;
So is diarist better than blogwriter? Well, it&amp;rsquo;s easier to add links and images&amp;hellip; Still no real formatting support though, which is a shame.&lt;br&gt;
&lt;a href="http://www.kevdaly.co.nz/software/blogging/diarist.aspx" target="_blank" rel="noreferrer"&gt;Try it for yourself.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>My Orange Diamond is... err... black</title><link>https://rikhepworth.com/posts/my-orange-diamond-is-err-black/</link><pubDate>Sat, 12 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/my-orange-diamond-is-err-black/</guid><description>&lt;p&gt;That might sound like a strange thing to say, but when my shiny new Touch Diamond, which I picked up from Orange this week, has no Orange branding or customisation of the UI. I hadn&amp;rsquo;t really noticed that until I went into the manual, where the screenshots are &lt;em&gt;totally&lt;/em&gt; different from my phone. I was beginning to wonder if something had gone wrong with the setup process, when I saw &lt;a href="http://forum.xda-developers.com/showthread.php?t=407496" target="_blank" rel="noreferrer"&gt;this thread&lt;/a&gt; at &lt;a href="http://forum.xda-developers.com/" target="_blank" rel="noreferrer"&gt;XDA-Developers&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>HTC Touch Diamond on Orange</title><link>https://rikhepworth.com/posts/htc-touch-diamond-on-orange/</link><pubDate>Fri, 11 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/htc-touch-diamond-on-orange/</guid><description>&lt;p&gt;Thanks to the advanced notice from &lt;a href="http://www.tracyandmatt.co.uk/blogs/" target="_blank" rel="noreferrer"&gt;Tracy and Matt&amp;rsquo;s blog&lt;/a&gt;, I picked up my HTC Touch Diamond yesterday from the Orange Store and it&amp;rsquo;s great!&lt;/p&gt;
&lt;p&gt;&amp;lsquo;But wait!&amp;rsquo; I hear you cry, &amp;lsquo;didn&amp;rsquo;t he go on about the experia x1 and &lt;a href="https://rikhepworth.com/post/2008/11/2008-02-11-the-xperia-x1-a-windows-mobile-device-that-i-could-really-get-excited-over" &gt;how he wanted one&lt;/a&gt;?&amp;rsquo;&lt;/p&gt;</description></item><item><title>Useful .Net Search and Replace tool</title><link>https://rikhepworth.com/posts/useful-net-search-and-replace-tool/</link><pubDate>Sat, 05 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/useful-net-search-and-replace-tool/</guid><description>&lt;p&gt;I need to update something like 300 web.config files today, with the same change in each. I turned to my old friend Google for his recommendations and up popped a &lt;a href="http://www.nodesoft.com/SearchAndReplace/Default.aspx" target="_blank" rel="noreferrer"&gt;magnificent free tool&lt;/a&gt; from &lt;a href="http://www.nodesoft.com/" target="_blank" rel="noreferrer"&gt;Nodesoft&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>CITP</title><link>https://rikhepworth.com/posts/citp/</link><pubDate>Thu, 03 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/citp/</guid><description>&lt;p&gt;Received in an email today from the BCS:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;I am delighted to inform you that your application for Chartered IT Professional (CITP) status has been successful.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Comment Spam and Contacting Me</title><link>https://rikhepworth.com/posts/comment-spam-and-contacting-me/</link><pubDate>Thu, 03 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/comment-spam-and-contacting-me/</guid><description>&lt;p&gt;You may have noticed that I have disabled comments on my old posts. You may also have noticed that I have now disabled the Contact Me function on my blog.&lt;/p&gt;</description></item><item><title>Congratulations Richard!</title><link>https://rikhepworth.com/posts/congratulations-richard/</link><pubDate>Thu, 03 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/congratulations-richard/</guid><description>&lt;p&gt;Well done &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt;, who has been &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/archive/2008/07/02/wow-i-m-an-mvp.aspx" target="_blank" rel="noreferrer"&gt;given the accolade&lt;/a&gt; of Microsoft Most Valuable Professional for Visual Studio Team System.&lt;/p&gt;</description></item><item><title>Problems with Site Policies and FBA in SharePoint 2007</title><link>https://rikhepworth.com/posts/problems-with-site-policies-and-fba-in-sharepoint-2007/</link><pubDate>Thu, 03 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/problems-with-site-policies-and-fba-in-sharepoint-2007/</guid><description>&lt;p&gt;If you are using Forms Based Authentication and try to access Site Policies you may well find that you get an Access Denied response. If you do, this post will help you!&lt;/p&gt;</description></item><item><title>Workflow History and SQL Error</title><link>https://rikhepworth.com/posts/workflow-history-and-sql-error/</link><pubDate>Thu, 03 Jul 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/workflow-history-and-sql-error/</guid><description>&lt;p&gt;When trying to view an item in a list which has workflows run against it, you get an error:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Some part of your SQL statement is nested too deeply. Rewrite the query or break it up into smaller queries&lt;/p&gt;</description></item><item><title>Catching Up</title><link>https://rikhepworth.com/posts/catching-up/</link><pubDate>Fri, 13 Jun 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/catching-up/</guid><description>&lt;p&gt;I&amp;rsquo;ve been far too busy lately and whilst there have been lots of things I wanted to post about, time has not been on my side. Before I start to forget some of the points I thought a quick post was in order.&lt;/p&gt;</description></item><item><title>Blogging On The Move</title><link>https://rikhepworth.com/posts/blogging-on-the-move/</link><pubDate>Tue, 29 Apr 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/blogging-on-the-move/</guid><description>&lt;p&gt;We try to dogfood here at Black Marble so I&amp;rsquo;m writing this on my HTC TYTN. How? With Richard&amp;rsquo;s new &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/archive/2008/04/29/first-release-of-blogwriter-for-smart-devices.aspx" target="_blank" rel="noreferrer"&gt;app&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Community Launch Events</title><link>https://rikhepworth.com/posts/community-launch-events/</link><pubDate>Mon, 14 Apr 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/community-launch-events/</guid><description>&lt;p&gt;A big thanks to everybody who came to the Server 2008 launch event last week. Andy and myself had a great time presenting to such an enthusiastic crowd. In the end we ran long because of the amount of dialogue around the new features of Server 2008 and I hope everyone went away having got something useful.&lt;/p&gt;</description></item><item><title>Hats off, lads</title><link>https://rikhepworth.com/posts/hats-off-lads/</link><pubDate>Tue, 18 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/hats-off-lads/</guid><description>&lt;p&gt;Just seen the &lt;a href="http://news.bbc.co.uk/1/hi/uk/7304004.stm" target="_blank" rel="noreferrer"&gt;sad news&lt;/a&gt; of the passing of Arthur C. Clarke. The world was better for his having been in it, and will not be the same without him.&lt;/p&gt;</description></item><item><title>Insightful</title><link>https://rikhepworth.com/posts/insightful/</link><pubDate>Tue, 18 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/insightful/</guid><description>&lt;p&gt;Joel Spolsky has a biting and &lt;a href="http://www.joelonsoftware.com/items/2008/03/17.html" target="_blank" rel="noreferrer"&gt;articulate article&lt;/a&gt; on the IE8 standards debate.&lt;/p&gt;</description></item><item><title>A great article on handy SharePoint controls</title><link>https://rikhepworth.com/posts/a-great-article-on-handy-sharepoint-controls/</link><pubDate>Mon, 17 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/a-great-article-on-handy-sharepoint-controls/</guid><description>&lt;p&gt;I don&amp;rsquo;t know about you, but I always mean to gather various bits of knowledge into one place, but just like tidying my filing at home, I never quite get around to it. Fortunately for me, &lt;a href="http://sharepointnutsandbolts.blogspot.com/" target="_blank" rel="noreferrer"&gt;Chris O&amp;rsquo;Brien&lt;/a&gt; is a bit more organised and in my ever expanding blogroll today I saw a &lt;a href="http://sharepointnutsandbolts.blogspot.com/2008/03/great-controls-to-be-aware-of-when.html" target="_blank" rel="noreferrer"&gt;great article&lt;/a&gt; about really useful SharePoint controls to use in custom pages for that handy bit of functionality.&lt;/p&gt;</description></item><item><title>Taking time to enjoy the scenery</title><link>https://rikhepworth.com/posts/taking-time-to-enjoy-the-scenery/</link><pubDate>Mon, 17 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/taking-time-to-enjoy-the-scenery/</guid><description>&lt;p&gt;You know, the thing about RSS is that it&amp;rsquo;s a bit like the advent of the motor car - you miss things. Just as driving around means you don&amp;rsquo;t get to pass the time of day with folk, or discover that tiny little deli you&amp;rsquo;d never notice from the road, RSS dehumanises the web.&lt;/p&gt;</description></item><item><title>Searching SharePoint through an IE8 Activity</title><link>https://rikhepworth.com/posts/searching-sharepoint-through-an-ie8-activity/</link><pubDate>Thu, 06 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/searching-sharepoint-through-an-ie8-activity/</guid><description>&lt;p&gt;IE8 Activities look cool. They&amp;rsquo;re almost like favlets from where I stand, but they offer a very simple way for users to access online services and pass simple parameters.&lt;/p&gt;
&lt;p&gt;I decided I wanted to play, and we use SharePoint heavily here at Black Marble. The obvious thing to do was to create an activity which would allow the user to search for the selected text using SharePoint search.&lt;/p&gt;</description></item><item><title>IE8 Rapid Fire Site Test</title><link>https://rikhepworth.com/posts/ie8-rapid-fire-site-test/</link><pubDate>Wed, 05 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/ie8-rapid-fire-site-test/</guid><description>&lt;p&gt;I can&amp;rsquo;t spend much longer playing with IE8 or my wife will skin me. However, from my cursory browsing experience I&amp;rsquo;m worried. Either the devs have a good deal of work to do or I&amp;rsquo;m going to be very busy with CSS rules for a while.&lt;/p&gt;</description></item><item><title>Internet Explorer 8...</title><link>https://rikhepworth.com/posts/internet-explorer-8/</link><pubDate>Wed, 05 Mar 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/internet-explorer-8/</guid><description>&lt;p&gt;Well, as expected, the public beta of &lt;a href="http://www.microsoft.com/windows/products/winfamily/ie/ie8/readiness/default.htm" target="_blank" rel="noreferrer"&gt;IE8 appeared on the web&lt;/a&gt; pretty much straight after the Mix08 keynote mentioned it. I managed to grab it within mere moments and I now have it installed on my trusty laptop.&lt;/p&gt;</description></item><item><title>The XPERIA X1 - A Windows Mobile device that I could really get excited over</title><link>https://rikhepworth.com/posts/the-xperia-x1-a-windows-mobile-device-that-i-could-really-get-excited-over/</link><pubDate>Mon, 11 Feb 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/the-xperia-x1-a-windows-mobile-device-that-i-could-really-get-excited-over/</guid><description>&lt;p&gt;Before I joined Black Marble I had a succession of Sony Ericsson smartphones - the P800, P900 and finally a P910i. They were great - the size was good, the UI was good, the handwriting recognition was excellent (with a grafitti-style interface that meant I could really get a good turn of speed) and I could work most functions one handed with the fabulous Jog Dial. Please note that the jog dial was sadly emasculated with phones after the P910i when Sony Ericsson foolishly reduced it&amp;rsquo;s degrees of freedom to simply rolling back and forth and clicking.&lt;/p&gt;</description></item><item><title>@media 2008</title><link>https://rikhepworth.com/posts/media-2008/</link><pubDate>Sun, 10 Feb 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/media-2008/</guid><description>&lt;p&gt;After sadly missing last year due to workload, I am excited to be able to attend &lt;a href="http://www.vivabit.com/atmedia2008/london/" target="_blank" rel="noreferrer"&gt;@media 2008 in London&lt;/a&gt; along with &lt;a href="http://blogs.blackmarble.co.uk/blogs/twardill/" target="_blank" rel="noreferrer"&gt;Tom&lt;/a&gt; and Lauren from Black Marble. If you know me and you want to meet up please get in touch!&lt;/p&gt;</description></item><item><title>Balancing customer needs against forward motion: IE8</title><link>https://rikhepworth.com/posts/balancing-customer-needs-against-forward-motion-ie8/</link><pubDate>Sun, 10 Feb 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/balancing-customer-needs-against-forward-motion-ie8/</guid><description>&lt;p&gt;I&amp;rsquo;ve watched the debate with interest but not posted anything until now. The &lt;a href="http://blogs.msdn.com/ie/archive/2008/01/21/compatibility-and-ie8.aspx" target="_blank" rel="noreferrer"&gt;news of Internet Explorer 8&lt;/a&gt; keeping it&amp;rsquo;s new rendering engine to itself &lt;a href="http://www.alistapart.com/articles/beyonddoctype" target="_blank" rel="noreferrer"&gt;unless you tell it otherwise&lt;/a&gt; caused a strong outpouring of opinion around the web.&lt;/p&gt;</description></item><item><title>Spring cleaning</title><link>https://rikhepworth.com/posts/spring-cleaning/</link><pubDate>Sun, 10 Feb 2008 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/spring-cleaning/</guid><description>&lt;p&gt;You know, one of these days I&amp;rsquo;ll find the time to properly redesign this blog. In the meantime, the excellent Kid Congo theme from the latest version of Community Server will suffice, albeit with the alteration of colours to match our corporate blue.&lt;/p&gt;</description></item><item><title>EMEA Project Conference: Keynote Thoughts</title><link>https://rikhepworth.com/posts/emea-project-conference-keynote-thoughts/</link><pubDate>Tue, 04 Dec 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/emea-project-conference-keynote-thoughts/</guid><description>&lt;p&gt;Well, the keynote just ended and I needed to check email so I thought I&amp;rsquo;d do a quick post. A good chunk of the keynote had already been covered by yesterday&amp;rsquo;s partner-only sessions. However, Mike Angiulo publicly announced that the Office 2007 family Service Pack 1 will be available on December 11th, 2007. I guess that means we can tell the world! I&amp;rsquo;m surprised, actually, that I haven&amp;rsquo;t noticed this on any of the SharePoint blogs I frequent.&lt;/p&gt;</description></item><item><title>EMEA Project Conference - Madrid</title><link>https://rikhepworth.com/posts/emea-project-conference-madrid/</link><pubDate>Mon, 03 Dec 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/emea-project-conference-madrid/</guid><description>&lt;p&gt;Finally, after all the excitement that &lt;a href="http://blogs.blackmarble.co.uk/blogs/rfennell/default.aspx" target="_blank" rel="noreferrer"&gt;Richard&lt;/a&gt; and &lt;a href="http://blogs.blackmarble.co.uk/blogs/boss/" target="_blank" rel="noreferrer"&gt;Robert&lt;/a&gt; had in Seattle and Barcelona, I find myself in the &lt;a href="http://www.auditoriumhoteles.com/en/" target="_blank" rel="noreferrer"&gt;Auditorium Hotel&lt;/a&gt;, Madrid for the &lt;a href="http://www.microsoft.com/europe/msprojectconference/default.aspx" target="_blank" rel="noreferrer"&gt;EMEA Project Conference&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;According to the multilingual sales blurb in my room, the hotel is the largest in Europe, and I must say it&amp;rsquo;s &lt;em&gt;very&lt;/em&gt; nice. We flew in yesterday and today is an MS Partner-only day before the conference itself kicks off tomorrow.&lt;/p&gt;</description></item><item><title>Project Partner Day</title><link>https://rikhepworth.com/posts/project-partner-day/</link><pubDate>Mon, 03 Dec 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/project-partner-day/</guid><description>&lt;p&gt;Well, it&amp;rsquo;s the end of day zero, the partner-only day here at the Madrid Project Conference. It&amp;rsquo;s been an interesting day. I&amp;rsquo;m not sure what I am allowed to say, but service pack 1 for Office 2007, which covers the desktop products, sharepoint, project server et al is &lt;em&gt;very&lt;/em&gt; close to being available now. That was an interesting announcement, as we are looking at installing Project Server in Black Marble. I&amp;rsquo;d like to wait for SP1 - it makes sense - but because SharePoint will be patched at the same time I need to do some testing of our customisations first.&lt;/p&gt;</description></item><item><title>Mix:UK 07 Round-up</title><link>https://rikhepworth.com/posts/mixuk-07-round-up/</link><pubDate>Thu, 13 Sep 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/mixuk-07-round-up/</guid><description>&lt;p&gt;We&amp;rsquo;re back up north after Mix:UK 07 and I thought I&amp;rsquo;d follow up my earlier post with a few thoughts on the event and it&amp;rsquo;s content.&lt;/p&gt;
&lt;p&gt;Before I do that, however, I need to give a cheer for our guys: Jonny performed incredibly in the Guiter Hero competition to  be triumphant in front of his screaming supporters, and Sam, Mat, Tom and Jonny cleaned up the the goody-bagging stakes of the Swaggily Fortunes quiz!&lt;/p&gt;</description></item><item><title>In the Mix</title><link>https://rikhepworth.com/posts/in-the-mix/</link><pubDate>Tue, 11 Sep 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/in-the-mix/</guid><description>&lt;p&gt;Well, it&amp;rsquo;s just after 3pm on day one of Mix:UK 07. I&amp;rsquo;m taking a break with a coffee so I thought I&amp;rsquo;d post.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s mixed bag down here (sorry - no pun intended). The technology is fantastic - the stuff that can be achieved with WPF and Silverlight is excellent. I&amp;rsquo;m still a little uncertain that usability has been sacrificed on the sacrificial alter of bling, however. To be fair, that&amp;rsquo;s more telling about the rapid-development nature of conference demos, where the wow-factor is more important, but I think it&amp;rsquo;s a very, very significant issue which should not be allowed to get lost in the excitement.&lt;/p&gt;</description></item><item><title>Web site development: University of Bradford Part 1</title><link>https://rikhepworth.com/posts/web-site-development-university-of-bradford-part-1/</link><pubDate>Mon, 27 Aug 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/web-site-development-university-of-bradford-part-1/</guid><description>&lt;p&gt;One of the last projects I was involved in before I left the University of Bradford to join Black Marble was a new design for the external web site of the institution. I&amp;rsquo;d pretty much finished the construction of the page layouts and styles before I left, but it&amp;rsquo;s only now that the site is about to go live. I&amp;rsquo;ve threatened a few people with a series of posts on how the site is constructed and although I&amp;rsquo;m not there any more it seems topical.&lt;/p&gt;</description></item><item><title>Web development helpers: Redux</title><link>https://rikhepworth.com/posts/web-development-helpers-redux/</link><pubDate>Thu, 26 Jul 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/web-development-helpers-redux/</guid><description>&lt;p&gt;After posting yesterday about useful tools for development I stumbled across another little gem of a utility. IE7Pro is much more of a usability-enhancing tool but it has a wonderfully handy tool nestling within - Save Current Tab As Image. If you need to do grabs of pages for documentation or presentations and the page is more than a single screen in length this will transform your life - no more cropping and stitching!&lt;/p&gt;</description></item><item><title>Web development little helpers</title><link>https://rikhepworth.com/posts/web-development-little-helpers/</link><pubDate>Wed, 25 Jul 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/web-development-little-helpers/</guid><description>&lt;p&gt;As web development gets more and more complex having the right tools to help you figure out what&amp;rsquo;s going on is essential. I thought I&amp;rsquo;d do a quick post on the ones I find most useful. In no particular order, then, here they are.&lt;/p&gt;</description></item><item><title>SharePoint problems with access rights</title><link>https://rikhepworth.com/posts/sharepoint-problems-with-access-rights/</link><pubDate>Wed, 18 Jul 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-problems-with-access-rights/</guid><description>&lt;p&gt;I spent a while knocking my head against a problem with a SharePoint server farm that&amp;rsquo;s worth posting about. It&amp;rsquo;s also worth a big hats-off to our Technical Support Coordinator at Microsoft Partner Support who dredged up the article that finally pointed us in the right direction.&lt;/p&gt;</description></item><item><title>Updating firmware on SPV M3100 (HTC TyTN)</title><link>https://rikhepworth.com/posts/updating-firmware-on-spv-m3100-htc-tytn/</link><pubDate>Mon, 14 May 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/updating-firmware-on-spv-m3100-htc-tytn/</guid><description>&lt;p&gt;Still no Windows Mobile 6 update for my Orange SPV M3100, but they did release an &lt;a href="http://www.business.orange.co.uk/servlet/Satellite?pagename=Business%26c=OUKPage%26cid=1044134915191" target="_blank" rel="noreferrer"&gt;update&lt;/a&gt; to WM5 recently.&lt;/p&gt;
&lt;p&gt;Installing said update turned out to be slightly trickier than I expected. I don&amp;rsquo;t know if anybody else has experienced the same problem, but a word to the wise - don&amp;rsquo;t try the update on Windows Vista!&lt;/p&gt;</description></item><item><title>Analysing Active Directory</title><link>https://rikhepworth.com/posts/analysing-active-directory/</link><pubDate>Sun, 15 Apr 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/analysing-active-directory/</guid><description>&lt;p&gt;I think I&amp;rsquo;ve mentioned before how I&amp;rsquo;ve been updating our IT infrastructure. Company growth has meant a need for expanded services. Add to that new versions of SharePoint and Exchange, mix in a need to run virtual servers for development and you have a need for more tin.&lt;/p&gt;</description></item><item><title>What happened to the idealists?</title><link>https://rikhepworth.com/posts/what-happened-to-the-idealists/</link><pubDate>Sun, 15 Apr 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/what-happened-to-the-idealists/</guid><description>&lt;p&gt;Douglas Coupland&amp;rsquo;s Jpod has been doing the rounds in the office of late. I enjoyed MicroSerfs, so approached Jpod with excitement.&lt;/p&gt;
&lt;p&gt;Frankly, I&amp;rsquo;m disappointed.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s not the writing - I &amp;rsquo;ve enjoyed pretty much all of his books. It&amp;rsquo;s not that the books are similar in approach and style (they are) but rather the contrast in the lives of the characters.&lt;/p&gt;</description></item><item><title>X2100 IPMI Redux - success!</title><link>https://rikhepworth.com/posts/x2100-ipmi-redux-success/</link><pubDate>Tue, 20 Feb 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/x2100-ipmi-redux-success/</guid><description>&lt;p&gt;In hindsight I should have thought of it, but even if I had, others got there first.&lt;/p&gt;
&lt;p&gt;You may remember my problems with IPMI on our X2100 servers from an earlier posting. Today I had cause to revisit the matter, as we&amp;rsquo;re having terrible issues with the Nvidia RAID on one of our servers.&lt;/p&gt;</description></item><item><title>Vista Upgrade - attempts 4, success 0</title><link>https://rikhepworth.com/posts/vista-upgrade-attempts-4-success-0/</link><pubDate>Mon, 19 Feb 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/vista-upgrade-attempts-4-success-0/</guid><description>&lt;p&gt;I have yet to succeed in upgrading from Windows XP to Windows Vista. Each time it runs through to the completing upgrade phase, gets about halfway through that bit whereupon I get stuck in a reboot cycle.&lt;/p&gt;</description></item><item><title>Windows Home Server - something for my father</title><link>https://rikhepworth.com/posts/windows-home-server-something-for-my-father/</link><pubDate>Mon, 19 Feb 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/windows-home-server-something-for-my-father/</guid><description>&lt;p&gt;On Saturday I got the email telling me that I&amp;rsquo;d been accepted onto the Home Server Beta 2. I&amp;rsquo;m excited about this product in a way that I haven&amp;rsquo;t been about new software solutions for a while.&lt;/p&gt;</description></item><item><title>SharePoint 2007 on x64 - don't try to run 32-bit web apps!</title><link>https://rikhepworth.com/posts/sharepoint-2007-on-x64-dont-try-to-run-32-bit-web-apps/</link><pubDate>Mon, 05 Feb 2007 00:00:00 +0000</pubDate><guid>https://rikhepworth.com/posts/sharepoint-2007-on-x64-dont-try-to-run-32-bit-web-apps/</guid><description>&lt;p&gt;We&amp;rsquo;re slowly migrating services onto our new servers here at Black Marble. This morning we had one of those moments where significant amounts of wall kicking and teeth gnashing ensue.&lt;/p&gt;</description></item></channel></rss>