<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>xg20</title>
	<atom:link href="http://www.xg20.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xg20.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 04 Aug 2011 10:57:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Reset Outlook 2010 Autodiscovery</title>
		<link>http://www.xg20.co.uk/2011/08/04/reset-outlook-2010-autodiscovery/</link>
		<comments>http://www.xg20.co.uk/2011/08/04/reset-outlook-2010-autodiscovery/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 10:53:27 +0000</pubDate>
		<dc:creator>Rob Goodair</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.xg20.co.uk/?p=28</guid>
		<description><![CDATA[After moving some clients back to Exchange server from BPOS, autodiscovery in Outlook refused to find the correct autodiscover.xml file. The registry fix below will reset autodiscovery in Outlook and make thinks work again! More information about the issue here]]></description>
			<content:encoded><![CDATA[<p>After moving some clients back to Exchange server from BPOS, autodiscovery in Outlook refused to find the correct autodiscover.xml file.</p>
<p>The registry fix below will reset autodiscovery in Outlook and make thinks work again!</p>
<div id="gist-1124951" class="gist">

        <div class="gist-file">
          <div class="gist-data gist-syntax">
              <div class="highlight"><pre><div class='line' id='LC1'>Windows Registry Editor Version 5.00</div><div class='line' id='LC2'><br/></div><div class='line' id='LC3'>[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\AutoDiscover]</div><div class='line' id='LC4'>&quot;PreferLocalXML&quot;=dword:1</div><div class='line' id='LC5'>&quot;ExcludeHttpRedirect&quot;=dword:1</div><div class='line' id='LC6'>&quot;ExcludeHttpsAutodiscoverDomain&quot;=dword:1</div><div class='line' id='LC7'>&quot;ExcludeHttpsRootDomain&quot;=dword:1</div><div class='line' id='LC8'>&quot;ExcludeScpLookup&quot;=dword:0</div><div class='line' id='LC9'>&quot;ExcludeSrvLookup&quot;=dword:0</div><div class='line' id='LC10'>&quot;ExcludeSrvRecord&quot;=dword:0</div></pre></div>
          </div>

          <div class="gist-meta">
            <a href="https://gist.github.com/raw/1124951/ef18cba68451358e24a6ec87194e2d491c172d79/ResetOutlook2010AutoDiscover.reg" style="float:right;">view raw</a>
            <a href="https://gist.github.com/1124951#file_reset_outlook2010_auto_discover.reg" style="float:right;margin-right:10px;color:#666">ResetOutlook2010AutoDiscover.reg</a>
            <a href="https://gist.github.com/1124951">This Gist</a> brought to you by <a href="http://github.com">GitHub</a>.
          </div>
        </div>
</div>

<p>More information about the issue <a href="http://social.technet.microsoft.com/Forums/en/outlook/thread/975ea6b7-7375-4fa5-abd7-326ea4f83799">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xg20.co.uk/2011/08/04/reset-outlook-2010-autodiscovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating CentOS 5.6 templates in XenServer</title>
		<link>http://www.xg20.co.uk/2011/07/24/creating-centos-5-6-templates-in-xenserver/</link>
		<comments>http://www.xg20.co.uk/2011/07/24/creating-centos-5-6-templates-in-xenserver/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 20:52:26 +0000</pubDate>
		<dc:creator>Rob Goodair</dc:creator>
				<category><![CDATA[XenServer]]></category>

		<guid isPermaLink="false">http://www.xg20.co.uk/?p=24</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="gist-1103087" class="gist">

        <div class="gist-file">
          <div class="gist-data gist-syntax">
              <div class="highlight"><pre><div class='line' id='LC1'><span class="c">#!/bin/bash</span></div><div class='line' id='LC2'><br/></div><div class='line' id='LC3'><span class="nv">CENTOS</span><span class="o">=</span><span class="k">$(</span>xe template-list name-label<span class="o">=</span><span class="s2">&quot;CentOS 5 (32-bit)&quot;</span> --minimal<span class="k">)</span></div><div class='line' id='LC4'><br/></div><div class='line' id='LC5'><span class="nv">distro</span><span class="o">=</span><span class="s2">&quot;CentOS 5.6&quot;</span></div><div class='line' id='LC6'><span class="nv">arches</span><span class="o">=(</span><span class="s2">&quot;32-bit&quot;</span> <span class="s2">&quot;64-bit&quot;</span><span class="o">)</span></div><div class='line' id='LC7'><br/></div><div class='line' id='LC8'><br/></div><div class='line' id='LC9'><span class="k">for </span>arch in <span class="k">${</span><span class="nv">arches</span><span class="p">[@]</span><span class="k">}</span> ; <span class="k">do</span></div><div class='line' id='LC10'><span class="k">    </span><span class="nb">echo</span> <span class="s2">&quot;Attempting $distro ($arch)&quot;</span></div><div class='line' id='LC11'>&nbsp;&nbsp;&nbsp;&nbsp;<span class="k">if</span> <span class="o">[[</span> -n <span class="k">$(</span>xe template-list name-label<span class="o">=</span><span class="s2">&quot;$distro ($arch)&quot;</span> <span class="nv">params</span><span class="o">=</span>uuid --minimal<span class="k">)</span> <span class="o">]]</span> ; <span class="k">then</span></div><div class='line' id='LC12'><span class="k">        </span><span class="nb">echo</span> <span class="s2">&quot;$distro ($arch)&quot;</span> already exists, Skipping</div><div class='line' id='LC13'>&nbsp;&nbsp;&nbsp;&nbsp;<span class="k">else</span></div><div class='line' id='LC14'><br/></div><div class='line' id='LC15'><span class="k">        </span><span class="nv">NEWUUID</span><span class="o">=</span><span class="k">$(</span>xe vm-clone <span class="nv">uuid</span><span class="o">=</span><span class="nv">$CENTOS</span> new-name-label<span class="o">=</span><span class="s2">&quot;$distro ($arch)&quot;</span><span class="k">)</span></div><div class='line' id='LC16'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xe template-param-set <span class="nv">uuid</span><span class="o">=</span><span class="nv">$NEWUUID</span> other-config:install-methods<span class="o">=</span>http,ftp,nfs <span class="se">\</span></div><div class='line' id='LC17'>	other-config:default_template<span class="o">=</span><span class="nb">true </span></div><div class='line' id='LC18'><span class="nb">	echo</span> <span class="s2">&quot;Success&quot;</span></div><div class='line' id='LC19'>&nbsp;&nbsp;&nbsp;&nbsp;<span class="k">fi</span></div><div class='line' id='LC20'><span class="k">done</span></div><div class='line' id='LC21'><span class="nb">echo</span> <span class="s2">&quot;Done&quot;</span></div></pre></div>
          </div>

          <div class="gist-meta">
            <a href="https://gist.github.com/raw/1103087/59b800ccdefdaddbe93bd5fddeb711949b31fb04/makecentos5_6.sh" style="float:right;">view raw</a>
            <a href="https://gist.github.com/1103087#file_makecentos5_6.sh" style="float:right;margin-right:10px;color:#666">makecentos5_6.sh</a>
            <a href="https://gist.github.com/1103087">This Gist</a> brought to you by <a href="http://github.com">GitHub</a>.
          </div>
        </div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.xg20.co.uk/2011/07/24/creating-centos-5-6-templates-in-xenserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the XenServer Linux Pack After XenServer Deployment</title>
		<link>http://www.xg20.co.uk/2011/07/24/installing-the-xenserver-linux-pack-after-xenserver-deployment/</link>
		<comments>http://www.xg20.co.uk/2011/07/24/installing-the-xenserver-linux-pack-after-xenserver-deployment/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 10:20:34 +0000</pubDate>
		<dc:creator>Rob Goodair</dc:creator>
				<category><![CDATA[XenServer]]></category>

		<guid isPermaLink="false">http://www.xg20.co.uk/?p=16</guid>
		<description><![CDATA[Download the Linux supplemental pack from citrix.com Upload the ISO to XenServer using WinSCP From the XenServer console (or Putty), go to the directory the ISO was uploaded in to Run the following commands: mkdir -p /mnt/iso mount -o loop XS-linuxcd.iso /mnt/iso cd /mnt/iso Now run ./install.sh The client will begin installing. There will be [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Download the Linux supplemental pack from <a href="http://www.citrix.com">citrix.com</a></li>
<li>Upload the ISO to XenServer using WinSCP</li>
<li>From the XenServer console (or Putty), go to the directory the ISO was uploaded in to</li>
<li>Run the following commands:<br />
<code>mkdir -p /mnt/iso<br />
mount -o loop XS-linuxcd.iso /mnt/iso<br />
cd /mnt/iso</code></li>
<li>Now run <code>./install.sh</code></li>
<li>The client will begin installing. There will be a momentary loss of connectivity to XenCenter whilst XAPI is restarted</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.xg20.co.uk/2011/07/24/installing-the-xenserver-linux-pack-after-xenserver-deployment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

