<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
    <channel>
        <title>Andy Kemp</title>
        <link>http://www.kemponline.co.uk/Default.aspx</link>
        <description />
        <language>en-GB</language>
        <copyright>Andrew Kemp</copyright>
        <generator>Subtext Version 2.1.0.5</generator>
        <image>
            <title>Andy Kemp</title>
            <url>http://www.kemponline.co.uk/images/RSS2Image.gif</url>
            <link>http://www.kemponline.co.uk/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/kemponline" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
            <title>Rename a Ubuntu Server</title>
            <category>Ubuntu</category>
            <category>How To:</category>
            <link>http://feedproxy.google.com/~r/kemponline/~3/b7omNMfSUTc/rename-a-ubuntu-server.aspx</link>
            <description>&lt;p&gt;So now I have managed to change the Server IP address the next thing was to change the host name. The hostname is defined in the two following locations:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;/etc/hostname&lt;/li&gt;    &lt;li&gt;/etc/hosts&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;To change it you need to edit both files:&lt;/p&gt;  &lt;p&gt;sudo nano /etc/hostname and sudo nano /etc/hosts&lt;/p&gt;  &lt;p&gt;As with the interfaces file after each edit press Ctrl+X to save and exit.&lt;/p&gt;  &lt;p&gt;I restarted the server after changing it but I guess there is a restart of a service you can do.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/174.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/11/12/rename-a-ubuntu-server.aspx</guid>
            <pubDate>Thu, 12 Nov 2009 20:38:06 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/174.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/11/12/rename-a-ubuntu-server.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/174.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/11/12/rename-a-ubuntu-server.aspx</feedburner:origLink></item>
        <item>
            <title>Changing the IP Address from DHCP to static on ubuntu server</title>
            <category>Ubuntu</category>
            <category>How To:</category>
            <link>http://feedproxy.google.com/~r/kemponline/~3/spPL36pVpBo/changing-the-ip-address-from-dhcp-to-static-on-ubuntu.aspx</link>
            <description>&lt;p&gt;One of the most simple things that only really took me a google search to do was to change the IP Address of my Ubuntu server from a DHCP assigned address to a Static IP address.&lt;/p&gt;  &lt;p&gt;This is done through editing two files:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;/etc/network/interfaces&lt;/li&gt;    &lt;li&gt;/etc/resolv.conf&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;This is done through using the following commands:&lt;/p&gt;  &lt;p&gt;sudo nano /etc/network/interfaces&lt;/p&gt;  &lt;p&gt;then making the following changes to the file:&lt;/p&gt;  &lt;p&gt;auto eth0   &lt;br /&gt;iface eth0 inet static    &lt;br /&gt;        address 192.168.1.100    &lt;br /&gt;        netmask 255.255.255.0    &lt;br /&gt;        gateway 192.168.1.1&lt;/p&gt;  &lt;p&gt;press Ctrl+X to save and exit from that file. Then modify the resolv.conf file:&lt;/p&gt;  &lt;p&gt;sudo nano /etc/resolv.conf&lt;/p&gt;  &lt;p&gt;annd the following line for each DNS server:&lt;/p&gt;  &lt;p&gt;nameserver 192.168.0.1   &lt;br /&gt;nameserver 192.168.0.2&lt;/p&gt;  &lt;p&gt;Again press Ctrl+X to save and exit from the file.&lt;/p&gt;  &lt;p&gt;then enter in the following command to restart the networking service:&lt;/p&gt;  &lt;p&gt;sudo /etc/init.d/networking restart&lt;/p&gt;  &lt;p&gt;Thats it the IP address has been set to a static.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/173.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/11/12/changing-the-ip-address-from-dhcp-to-static-on-ubuntu.aspx</guid>
            <pubDate>Thu, 12 Nov 2009 09:53:52 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/173.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/11/12/changing-the-ip-address-from-dhcp-to-static-on-ubuntu.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/173.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/11/12/changing-the-ip-address-from-dhcp-to-static-on-ubuntu.aspx</feedburner:origLink></item>
        <item>
            <title>Webmin for Ubuntu Server</title>
            <category>Ubuntu</category>
            <link>http://feedproxy.google.com/~r/kemponline/~3/LnucX3vtYyQ/webmin-for-ubuntu-server.aspx</link>
            <description>&lt;p&gt;I’ve been playing around with Ubuntu Server for some time now, and slowly getting use to the Command Line Interface (CLI) However that might change from now on…&lt;/p&gt;  &lt;p&gt;I came across a tool called Webmin. This is a web interface that provides a GUI for some of the services that are installed on the Ubuntu Server.&lt;/p&gt;  &lt;p&gt;At the moment 1.490 is the latest version.&lt;/p&gt;  &lt;p&gt;To install Webmin you need to type the following in to a putty session:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;wget http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.490_all.deb&lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;once that has downloaded you then need to type the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;sudo dpkg -i webmin_1.441_all.deb&lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;That should be it, however if you encounter errors when installing all you need to do is run the following command immediately:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;sudo apt-get install –f&lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;then hey presto thats it Webmin is installed you can then browse to your server using https on port 10000, so for mine I went to https://prometheus:10000 I logged in and then I could manage the server from there:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.kemponline.co.uk/images/www_kemponline_co_uk/WindowsLiveWriter/WebminforUbuntuServer_117A7/image_2.png" rel="lightbox"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.kemponline.co.uk/images/www_kemponline_co_uk/WindowsLiveWriter/WebminforUbuntuServer_117A7/image_thumb.png" width="364" height="304" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;From this you can manage MySQL, SSH, Apache2, Samba and other services through the web GUI.&lt;/p&gt;  &lt;p&gt;I am still having some issues when creating new websites through the Apache2 so I am sticking to the CLI for that just now but for things like databases and Samba its pretty good.&lt;/p&gt;  &lt;p&gt;I had to install an extra module for VSFTPD but there isn’t much to do on it once it is configured.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/169.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/10/13/webmin-for-ubuntu-server.aspx</guid>
            <pubDate>Tue, 13 Oct 2009 18:53:24 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/169.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/10/13/webmin-for-ubuntu-server.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/169.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/10/13/webmin-for-ubuntu-server.aspx</feedburner:origLink></item>
        <item>
            <title>Error Pushing out Sophos to clients saying registry could not be accessed</title>
            <link>http://feedproxy.google.com/~r/kemponline/~3/8Lp4g5aiJjk/error-pushing-out-sophos-to-clients-saying-registry-could-not.aspx</link>
            <description>&lt;p&gt;I had an error pushing Sophos out to a few clients, it says that you need to disable simple file sharing but that still does not work. it turned out that the problem is down to access on the registry:&lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.sophos.com/support/knowledgebase/article/39357.html" href="http://www.sophos.com/support/knowledgebase/article/39357.html"&gt;http://www.sophos.com/support/knowledgebase/article/39357.html&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;that is the Sohpos Knowledgebase on the problem, seemed to fix the problem for me.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/168.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/10/12/error-pushing-out-sophos-to-clients-saying-registry-could-not.aspx</guid>
            <pubDate>Mon, 12 Oct 2009 09:35:03 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/168.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/10/12/error-pushing-out-sophos-to-clients-saying-registry-could-not.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/168.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/10/12/error-pushing-out-sophos-to-clients-saying-registry-could-not.aspx</feedburner:origLink></item>
        <item>
            <title>Nokia 5800 XM Apps I use the most</title>
            <link>http://feedproxy.google.com/~r/kemponline/~3/RAsX8CBuu9A/nokia-5800-xm-apps-i-use-the-most.aspx</link>
            <description>&lt;p&gt;so I’ve had my 5800 for about 4 months now, ok so I am now on my 5th 5800 since getting it, but the problems have been down to the custom firmware that Virgin Mobile put on. only once have I actually had an issue with the phone itself.&lt;/p&gt;  &lt;p&gt;Any how my newest replacement is back up and running :) and thanks to Google Sync I do not need to worry about backing up my phone calendar, contacts or email as that is all pulled from my Google Apps account using the Mail for Exchange app.&lt;/p&gt;  &lt;p&gt;Any how I thought that I would put a post up about the apps I use the most now, I did one a wee while back but I think that that has changed now, so here they are:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Mail for Exchange&lt;/li&gt;    &lt;li&gt;Sports Tracker&lt;/li&gt;    &lt;li&gt;Nokia Maps&lt;/li&gt;    &lt;li&gt;Gravity&lt;/li&gt;    &lt;li&gt;Mobler&lt;/li&gt;    &lt;li&gt;AccuWeather&lt;/li&gt;    &lt;li&gt;Nokia Messaging&lt;/li&gt;    &lt;li&gt;UKRails&lt;/li&gt;    &lt;li&gt;Facebook&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;I have got a few other apps installed but these are the ones I use the most, the first 4 I would say I use on a daily basis the others, more than 3 times a week.&lt;/p&gt;  &lt;p&gt;Out of these 9 apps Gravity is the only 1 I had to purchase, but it is worth it. As far as I am aware it is the only native S60 v5 twitter client out there. It is similar to TweetDeck in some ways with its columns, and you can also connect to Facebook from it too. I’ve found I’d use gravity over the Facebook app for my phone. yo ucan get a free trial from &lt;a href="http://www.mobileways.de"&gt;www.mobileways.de&lt;/a&gt; and also purchase it from there. I found I could not cope with out it after trailing it for 10 days so felt compelled to purchase it for £8 from the OVI store however if you do buy it do it from mobileways.de and not OVI I had problems with it not being registered.&lt;/p&gt;  &lt;p&gt;If you have any other apps that you use please let me know and I would be keep to try them out.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/167.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/10/09/nokia-5800-xm-apps-i-use-the-most.aspx</guid>
            <pubDate>Fri, 09 Oct 2009 14:21:22 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/167.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/10/09/nokia-5800-xm-apps-i-use-the-most.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/167.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/10/09/nokia-5800-xm-apps-i-use-the-most.aspx</feedburner:origLink></item>
        <item>
            <title>Installing Search Server Express 2008 on Server 2008 R2</title>
            <category>How To:</category>
            <category>Windows Server 2008</category>
            <link>http://feedproxy.google.com/~r/kemponline/~3/eANxI8MSp0k/installing-search-server-express-2008-on-server-2008-r2.aspx</link>
            <description>&lt;p&gt;If you try and install Search Server Express on Windows Server 2008 R2 you will get the following compatibility error:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.kemponline.co.uk/images/www_kemponline_co_uk/WindowsLiveWriter/InstallingSearchServerExpress2008onServe_13506/image_2.png" rel="lightbox"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.kemponline.co.uk/images/www_kemponline_co_uk/WindowsLiveWriter/InstallingSearchServerExpress2008onServe_13506/image_thumb.png" width="534" height="258" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;It wasn’t till I tweeted about the error that I managed to solve the problem. With thanks to &lt;a href="twitter.com/ToddKlindt" target="_blank"&gt;ToddKlindt&lt;/a&gt; pointing me in the right direction mentioning that Office SharePoint SP2 needed to be slipstreamed I managed to fix the problem. I had guessed that was the case but I was looking in the wrong direction, I was looking for a Service Pack for Search Server not for Share Point.&lt;/p&gt;  &lt;p&gt;So the answer was to Slipstream Office SharePoint 2007 Server SP2 in to the Setup of Search Server.&lt;/p&gt;  &lt;p&gt;To do this I needed to:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Extract the SearchServer.exe file&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;Create a folder in your C:\ called Search&lt;/li&gt;      &lt;li&gt;copy the SearchServer.exe to C:\Search&lt;/li&gt;      &lt;li&gt;run the following command from a run command: C:\Search\SearchServer.exe /Extract:C:\Search\SearchSP2\&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;Download officeserver2007sp2-kb953334-x64-fullfile-en-us.exe from &lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=b7816d90-5fc6-4347-89b0-a80deb27a082&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=b7816d90-5fc6-4347-89b0-a80deb27a082&amp;amp;displaylang=en" target="_blank"&gt;here&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Extract the Service Pack files&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;Copy the Service pack file to C:\Search&lt;/li&gt;      &lt;li&gt;run the following command: C:\Search\officeserver2007sp2-kb953334-x64-fullfile-en-us.exe /Extract:C:\Search\SearchSP2\Updates\&lt;/li&gt;   &lt;/ul&gt; &lt;/ol&gt;  &lt;p&gt;Once you have done that you can copy the C:\Search\SearchSP2 to a network location or CD and install Search Server Express from there.&lt;/p&gt;  &lt;p&gt;I have not tested it but I am guessing that it is a similar process for Search Server 2008 too.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/166.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/10/08/installing-search-server-express-2008-on-server-2008-r2.aspx</guid>
            <pubDate>Thu, 08 Oct 2009 20:58:43 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/166.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/10/08/installing-search-server-express-2008-on-server-2008-r2.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/166.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/10/08/installing-search-server-express-2008-on-server-2008-r2.aspx</feedburner:origLink></item>
        <item>
            <title>Google Sync</title>
            <link>http://feedproxy.google.com/~r/kemponline/~3/5HdyaOsnbCU/google-sync.aspx</link>
            <description>&lt;p&gt;When I received my Nokia 5800 XM a few months ago I was really impressed that I could use Mail for Exchange to connect to Google Sync for my Contacts and Calendar entries on my Google Apps account. The one thing missing on that trio was my Email, not really a problem as I then setup a Mailbox on the phone to connect to my Googlemail through IMAP. Well this how now changed. Google have completed the trio! I went in to the Mail for Exchange profile and enabled email and viola! it synced the email.&lt;/p&gt;  &lt;p&gt;The only draw back now with the Nokia 5800 XM is that the default mail client does not support HTML. I have got Nokia Messaging up and running that supposedly supports HTML, but the emails that come through don’t look like they should do, in fact they still look like plain text.&lt;/p&gt;  &lt;p&gt;There are several email clients out there for S60 5th OS’s that support HTML Email but it would be nice if it was supported in their own email client.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/164.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/09/23/google-sync.aspx</guid>
            <pubDate>Wed, 23 Sep 2009 09:55:20 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/164.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/09/23/google-sync.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/164.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/09/23/google-sync.aspx</feedburner:origLink></item>
        <item>
            <title>Edit in Datasheet does not work after installing Outlook 2007</title>
            <link>http://feedproxy.google.com/~r/kemponline/~3/D_N6LU8UhaI/edit-in-datasheet-does-not-work-after-installing-outlook-2007.aspx</link>
            <description>&lt;p&gt;We are in the process of rolling out Outlook 2007 to our users, to enable them to better connect to SharePoint, however, since installing it on a PC with Office 2003 installed the option to edit a list in a Datasheet did not work, all we got was a page saying Error. Then when you clicked back Internet Explorer would crash, not a great start to the Rolling out Outlook 2007.&lt;/p&gt;  &lt;p&gt;Well the issue is down to two versions of the edit in Datasheet control being installed on the Computer, one version for Office 2003 and the other is for Office 2007 (although it was only Outlook we were installing). MS say it is down the the incompatibility of the controls that enable you to edit in Datasheet. Several posts I came across suggested that I should rename the OWSSUP.DLL file in the c:\Program Files\Microsoft Office\Office12\ folder but no joy with that it still did not work.&lt;/p&gt;  &lt;p&gt;I tried several things but to no avail, it still did not want to let me edit in Datasheet.&lt;/p&gt;  &lt;p&gt;I eventually came across a post by someone who had a similar problem to me but had installed Project and not Outlook. He suggested that after installing the Office 2007 Application you will then need to do a re-install of Office 2003, not a repair install but a re-install.&lt;/p&gt;  &lt;p&gt;So I tried that and it worked! &lt;/p&gt;  &lt;p&gt;All was running smoothly till I tried to edit a document stored in SharePoint, Internet Explorer Crashed on me again. This turned out to be linked to the OWSSUP.DLL. I renamed that file in the Office12 folder and all was working like a charm.&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/163.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/09/15/edit-in-datasheet-does-not-work-after-installing-outlook-2007.aspx</guid>
            <pubDate>Tue, 15 Sep 2009 12:38:59 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/163.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/09/15/edit-in-datasheet-does-not-work-after-installing-outlook-2007.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/163.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/09/15/edit-in-datasheet-does-not-work-after-installing-outlook-2007.aspx</feedburner:origLink></item>
        <item>
            <title>Outlook 2007 uses Word 2007 to render CSS not IE</title>
            <category>General</category>
            <link>http://feedproxy.google.com/~r/kemponline/~3/v0RrOPafM5o/outlook-2007-uses-word-2007-to-render-css-not-ie.aspx</link>
            <description>&lt;p&gt;A news letter email that was sent out internally recently wasn’t displaying correctly in Outlook 2007, it looked fine in Outlook 2003. After some digging around it turned out that MS had made Outlook 2007 use Word to render its CSS and HTML Emails as opposed to using IE to render them.&lt;/p&gt;  &lt;p&gt;To me this was a step back in time for the evolution of email.&lt;/p&gt;  &lt;p&gt;A simple click on the other actions and view in browser displays the email correctly, however, its not the best option considering that we are going to be rolling out Outlook 2007 to the Firm in the coming months.&lt;/p&gt;  &lt;p&gt;This is the MSDN article about the “Introduction to HTML Parsing and Rendering in Outlook 2007” :&lt;/p&gt;  &lt;p&gt;&lt;a title="http://msdn.microsoft.com/en-us/library/aa338201.aspx" href="http://msdn.microsoft.com/en-us/library/aa338201.aspx"&gt;http://msdn.microsoft.com/en-us/library/aa338201.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;They have also provided a validater tool for CSS:&lt;/p&gt;  &lt;p&gt;&lt;a title="http://msdn.microsoft.com/en-us/library/aa338200.aspx" href="http://msdn.microsoft.com/en-us/library/aa338200.aspx"&gt;http://msdn.microsoft.com/en-us/library/aa338200.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;But this really doesn’t help the fact the design of the news letter has now got the be re-written to support the new rendering.&lt;/p&gt;  &lt;p&gt;With the pending release of Office 2010 people have been asking if it will be the same with Outlook 2010 and the answer is, Yes. despite all the complains MS has received, they want to keep it the way it is. &lt;/p&gt;  &lt;p&gt;For many of us I guess this is frustrating, having to re-validate all the CSS and HTML that is in your templates, but it is only a one off and you will not need to do it with Office 2010. Once we had got over the “inconvenience” of it we just had to knuckle down and get on with it. But MS do it again!&lt;/p&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/162.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/09/14/outlook-2007-uses-word-2007-to-render-css-not-ie.aspx</guid>
            <pubDate>Mon, 14 Sep 2009 21:39:10 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/162.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/09/14/outlook-2007-uses-word-2007-to-render-css-not-ie.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/162.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/09/14/outlook-2007-uses-word-2007-to-render-css-not-ie.aspx</feedburner:origLink></item>
        <item>
            <title>Scheduling Backups of SQL Express Databases</title>
            <link>http://feedproxy.google.com/~r/kemponline/~3/nzKlyD1w8dM/scheduling-backups-of-sql-express-databases.aspx</link>
            <description>&lt;p&gt;We recently installed a new printing application called UniPrint. This application enables us to use the “Following Me” printing., you send a print job to your printer and if that one is in use or broken you go to the next nearest printer to you and enter in your PIN and your print job comes out at that printer.&lt;/p&gt;  &lt;p&gt;The application has a SQL Express Database behind it, we could have pointed it to a DB on one of our SQL Servers but we wanted to keep the whole thing together so we installed SQL Express. Once the server had been installed and configured we added to the backup schedule for the weekly backup. Also like anything running on a Database I wanted to schedule daily backups of the Database, but SQL Express does not have the SQLAgent as part of it so you can not schedule jobs to run, but you can run jobs manually.&lt;/p&gt;  &lt;p&gt;Although the server is not a critical server it would be nice to be able to back up the Database on it on a daily basis automatically.&lt;/p&gt;  &lt;p&gt;What you can do is generate script and run that using a batch file and schedule that to run every day, however the problems I had were:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;the filename was always the same so it would overwrite the exisiting backup file&lt;/li&gt;    &lt;li&gt;for some reason I could not back it up to a UNC I had to do it to the local drive and default location.&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;So what I ended up doing was to run the script from a batch file and then immediately after run a VBScript that would copy the backup file to the network share and apply the day of the week to it for example: sqlbackup.bak would be copied to sqlbackupMonday.bak.&lt;/p&gt;  &lt;p&gt;The reason for this is that come the Weekends tape backup we can backup all 5 backup files from the network share, then when mondays SQL backup runs it will overwrite the file that is already in the share. so we will always have 5 days worth of backups available.&lt;/p&gt;  &lt;p&gt;I had never had to write a SQL Script before I was used to doing everything through the management console so I didn’t really have any idea of where to start. &lt;/p&gt;  &lt;p&gt;After some digging around on the net I discovered that you can use the management studio to generate the SQL Script for you. All you need to do is set the backup job as you would do through the Management Console (right click on the Database, Tasks Back Up) and then click the Script button:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.kemponline.co.uk/images/www_kemponline_co_uk/WindowsLiveWriter/SchedulingBackupsofSQLExpressDatabases_11FAA/image_2.png" rel="lightbox"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.kemponline.co.uk/images/www_kemponline_co_uk/WindowsLiveWriter/SchedulingBackupsofSQLExpressDatabases_11FAA/image_thumb.png" width="244" height="97" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;It will then generate the SQL script needed to backup the database:&lt;/p&gt;  &lt;div id="codeSnippetWrapper"&gt;   &lt;pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px" id="codeSnippet"&gt;&lt;p&gt;&lt;span style="color: #0000ff"&gt;BACKUP&lt;/span&gt; &lt;span style="color: #0000ff"&gt;DATABASE&lt;/span&gt; [DsPcDb] &lt;span style="color: #0000ff"&gt;TO&lt;/span&gt;  &lt;span style="color: #0000ff"&gt;DISK&lt;/span&gt; = N&lt;span style="color: #006080"&gt;'c:\MSSQL.1\MSSQL\Backup\DsPcDb.bak'&lt;/span&gt; _&lt;br /&gt;&lt;span style="color: #0000ff"&gt;WITH&lt;/span&gt; NOFORMAT, INIT,  NAME = N&lt;span style="color: #006080"&gt;'DsPcDb-Full Database Backup'&lt;/span&gt;, SKIP, _&lt;br /&gt;NOREWIND, NOUNLOAD,  STATS = 10&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff"&gt;GO&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;/pre&gt;

  &lt;br /&gt;&lt;/div&gt;

&lt;p /&gt;

&lt;p&gt;Once I had created the script I copied and pasted into notepad and saved as C:\uniprint_backup.sql.&lt;/p&gt;

&lt;p&gt;The next step was to create the vbscript to copy the file across and rename it on the target end:&lt;/p&gt;

&lt;div&gt;
  &lt;pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px" id="codeSnippet"&gt;&lt;span style="color: #0000ff"&gt;Dim&lt;/span&gt; objFSO&lt;br /&gt;&lt;span style="color: #0000ff"&gt;Dim&lt;/span&gt; objshell&lt;br /&gt;&lt;br /&gt;wkday = (weekdayname(weekday(&lt;span style="color: #0000ff"&gt;date&lt;/span&gt;)))&lt;br /&gt;&lt;br /&gt;        &lt;span style="color: #0000ff"&gt;Set&lt;/span&gt; objFSO = CreateObject(&lt;span style="color: #006080"&gt;"Scripting.FileSystemObject"&lt;/span&gt;)&lt;br /&gt;        &lt;span style="color: #0000ff"&gt;Set&lt;/span&gt; objShell = Wscript.CreateObject(&lt;span style="color: #006080"&gt;"Wscript.Shell"&lt;/span&gt;)&lt;br /&gt;        &lt;span style="color: #0000ff"&gt;Set&lt;/span&gt; objFile = objFSO.Getfile(&lt;span style="color: #006080"&gt;"\\tmsrv-uf1\c$\MSSQL.1\MSSQL\Backup\_&lt;br /&gt;        DsPcDb.bak"&lt;/span&gt;)&lt;br /&gt;        objFile.Copy(&lt;span style="color: #006080"&gt;"\\tmsrv-sq7\backup\data\uf1\DsPcD"&lt;/span&gt;&amp;amp; wkday &amp;amp; &lt;span style="color: #006080"&gt;".bak"&lt;/span&gt;)&lt;br /&gt;    &lt;br /&gt;&lt;/pre&gt;
&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;

&lt;div&gt;I saved this as uniprint.vbs and then created a batch file that first of called the SQL script and then called up the VBScript:&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;

&lt;div&gt;
  &lt;pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: 'Courier New', courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px" id="codeSnippet"&gt;sqlcmd -i c:\uniprint_backup.sql&lt;br /&gt;C:\SQLBackup\uniprint.vbs&lt;br /&gt;&lt;/pre&gt;
&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;

&lt;div&gt;Once I had saved the batch file I then added it to a Windows Scheduled task to run once a day Monday to Friday.&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;

&lt;div&gt;And there you go, not the best way to automate it I am sure but it works for me. &lt;/div&gt;

&lt;div&gt;
  &lt;br /&gt;&lt;/div&gt;

&lt;div&gt;
  &lt;br /&gt;&lt;/div&gt;&lt;img src="http://www.kemponline.co.uk/aggbug/161.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Andrew Kemp</dc:creator>
            <guid isPermaLink="false">http://www.kemponline.co.uk/archive/2009/09/14/scheduling-backups-of-sql-express-databases.aspx</guid>
            <pubDate>Mon, 14 Sep 2009 19:27:26 GMT</pubDate>
            <wfw:comment>http://www.kemponline.co.uk/comments/161.aspx</wfw:comment>
            <comments>http://www.kemponline.co.uk/archive/2009/09/14/scheduling-backups-of-sql-express-databases.aspx#feedback</comments>
            <wfw:commentRss>http://www.kemponline.co.uk/comments/commentRss/161.aspx</wfw:commentRss>
        <feedburner:origLink>http://www.kemponline.co.uk/archive/2009/09/14/scheduling-backups-of-sql-express-databases.aspx</feedburner:origLink></item>
    </channel>
</rss>
