<?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>ieatpenguin &#187; Windows</title>
	<atom:link href="http://r-dunn.co.uk/ieatpenguin/category/computing/software/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://r-dunn.co.uk/ieatpenguin</link>
	<description>Reductio ad absurdum!</description>
	<lastBuildDate>Mon, 23 Jan 2012 12:11:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Backing up The Latest File &#8211; Name Unknown</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/backing-up-the-latest-file-name-unknown/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/backing-up-the-latest-file-name-unknown/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 09:51:32 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=953</guid>
		<description><![CDATA[It&#8217;s a common enough issue for me that I want to be able to backup the latest backup of a database, and using variables to set date and time I never quite know what the filename of the backup will &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/backing-up-the-latest-file-name-unknown/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>It&#8217;s a common enough issue for me that I want to be able to backup the latest backup of a database, and using variables to set date and time I never quite know what the filename of the backup will be.</p>
<blockquote><p>::copy latest file to network server<br />
set LF=<br />
for /F %%i in (&#8216;dir /Od /b *.sql&#8217;) DO set LF=%%i<br />
:<br />
echo%TIME% on %DATE%: Latest Backup is %LF% >> Backup.file<br />
:<br />
xcopy /Y %LF% \\networkserver\bugzilla</p></blockquote>
<p>My solution is to sort the backup directory by date, and create a variable based on the filename of the most recent file.</p>
<p>I then echo the time and date to a file (Backup.file) so that I have a log of the backup process that I can check should I need to in the future.</p>
<p>Finally, the script copies the latest backup to a network location.</p>
<p>This was used in conjunction with my <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/automated-backup-of-bugzilla-database-on-windows/" title="bugzilla backup script">bugzilla backup script</a>, hence the directory names, but it can of course be used for anything.</p>
<div class="shr-publisher-953"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/backing-up-the-latest-file-name-unknown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automated Backup of Bugzilla Database on Windows</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/automated-backup-of-bugzilla-database-on-windows/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/automated-backup-of-bugzilla-database-on-windows/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 17:01:39 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=948</guid>
		<description><![CDATA[Bugzilla isn&#8217;t really designed to be used on Windows, but once set up its fairly easy to administer. One obviously important thing is backing up the database. Using the niftily built in mysqldump I used the following solution. Note this &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/automated-backup-of-bugzilla-database-on-windows/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Bugzilla isn&#8217;t really designed to be used on Windows, but once set up its fairly easy to administer.</p>
<p>One obviously important thing is backing up the database. Using the niftily built in mysqldump I used the following solution. Note this assumes default settings were used in the installation of Bugzilla.</p>
<p>First, add mysql to the windows path if it hasn&#8217;t been done so already, by running up a command prompt:</p>
<blockquote><p>PATH=%PATH%;C:\Program Files\Bugzilla\mysql\bin\</p></blockquote>
<p>I then use a command file to create the backup dump, and then append the date and time to the file name. Note I have also created a user (backup) on the bugzilla database with a limited set of privileges (Select, Lock Table, Show Databases, Event). </p>
<blockquote><p>rem commmand to dump the database to file<br />
mysqldump -ubackup -pbackup Bugs > c:\bugsbackup\bz.sql</p>
<p>rem set date and time into useable file format<br />
set _my_datetime=%date%_%time%<br />
set _my_datetime=%_my_datetime: =_%<br />
set _my_datetime=%_my_datetime::=%<br />
set _my_datetime=%_my_datetime:/=_%<br />
set _my_datetime=%_my_datetime:.=_%</p>
<p>rem rename file<br />
ren &#8220;c:\bugsbackup\bz.sql&#8221; bz_%_my_datetime%.sql<br />
<blockquote>
<p>This command file can of course be added to scheduled tasks and run as frequently as you want.</p>
<div class="shr-publisher-948"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/automated-backup-of-bugzilla-database-on-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SecurityTools</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/securitytools/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/securitytools/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 15:01:05 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=709</guid>
		<description><![CDATA[This is a nasty little program that masquerades as a security program that has found lots of viruses on your PC, and will clean them if you unlock it &#8211; eg if you hand over your credit card details. The &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/securitytools/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>This is a nasty little program that masquerades as a security program that has found lots of viruses on your PC, and will clean them if you unlock it &#8211; eg if you hand over your credit card details.</p>
<p>The easiest fix I&#8217;ve found is using ComboFix, and then deleting the [random letter/numbers] folders found under &#8216;\Documents And Settings\All Users\&#8217;.</p>
<div class="shr-publisher-709"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/securitytools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Home Server v2 (Vail) is dead in the water</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server-v2-vail-is-dead-in-the-water/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server-v2-vail-is-dead-in-the-water/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 16:19:42 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=694</guid>
		<description><![CDATA[I&#8217;m a big fan of windows home server. They failed to deliver on some things, such as Media Centre integration, but that doesn&#8217;t really bother me. It&#8217;s a decent piece of server kit with a nice UI built over the &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server-v2-vail-is-dead-in-the-water/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I&#8217;m a big fan of windows home server. They failed to deliver on some things, such as Media Centre integration, but that doesn&#8217;t really bother me. It&#8217;s a decent piece of server kit with a nice UI built over the top of Server 2008.</p>
<p>The best feature of it has to be Drive Extender, a disk management tool that allows you to pool your drives, of any size, and provides one click duplication, making installing new disks and taking backups a breeze for the home user. The clue is in the title: Windows Home Server.</p>
<p>Vail has been in the works for a while, and a <a href=" http://windowsteamblog.com/windows/b/windowshomeserver/archive/2010/11/23/windows-home-server-code-name-vail-update.aspx">recent post</a> on the WHS blog has announced that the number one feature has been stripped. I&#8217;m fortunate enough, I guess, in that I understand how RAIDs work, and know how to set them up. However, I use WHS because I don&#8217;t have too. I spend enough time at work with computers that I don&#8217;t want to at home.</p>
<p>Absolutely unbelievable. Microsoft manage to alienate their core customer base (of this product) in one fell swoop.</p>
<p>Still, at least it saves me the cost of the upgrade.</p>
<div class="shr-publisher-694"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server-v2-vail-is-dead-in-the-water/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Userenv Error 1500/1505/1508 &#8211; Profile Unable to Login</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/userenv-error-150015051508-profile-unable-to-login/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/userenv-error-150015051508-profile-unable-to-login/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 15:39:27 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=682</guid>
		<description><![CDATA[Windows cannot log you on because your profile cannot be loaded. Check that you are connected to the network, or that your network is functioning correctly. If this problem persists, contact your network administrator. This annoying error message plagued me &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/userenv-error-150015051508-profile-unable-to-login/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><blockquote><p>Windows cannot log you on because your profile cannot be loaded. Check that you are connected to the network, or that your network is functioning correctly. If this problem persists, contact your network administrator. </p></blockquote>
<p>This annoying error message plagued me for quite a long time until I eventually found the solution. The problem appears to be with the pagefile not being able to perform user profile allocation properly.</p>
<p>After a fair bit of searching and tinkering, I eventually hit upon the following solution:</p>
<ul>
<li>First set the pagefile to by managed by the system.</li>
</ul>
<ul>
<li>Load regedit, and find: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management</li>
<li>Create a new DWORD called PoolUsageMaximum. Set this to 60 (Decimal).</li>
<li>Create/Modify PagedPoolSize (DWORD) to ffffffff (Hex).</li>
<li>Reboot.</li>
</ul>
<p>What this does is simply force the Memory Manager in windows to attempt to trim the pagefile when it is 60% full, rather than its default 80%. This therefore starts the pagefile trim earlier, hopefully enabling the computer to cope with surges in memory demand more efficiently.</p>
<div class="shr-publisher-682"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/userenv-error-150015051508-profile-unable-to-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Into outfile</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/windows/into-outfile/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/windows/into-outfile/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 14:29:03 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=623</guid>
		<description><![CDATA[Why oh why oh why is there nothing this simple within MSSQL? Sigh.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Why oh why oh why is there nothing this simple within MSSQL? Sigh.</p>
<div class="shr-publisher-623"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/windows/into-outfile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Home Server</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 09:58:42 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=509</guid>
		<description><![CDATA[Well I finally got round to installing this on my custom built server, and I&#8217;ll tell you something, I quite like it. It&#8217;s easy to set up, easy to configure and easy to use. No worrying about what raid to &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Well I finally got round to installing this on my custom built server, and I&#8217;ll tell you something, I quite like it. It&#8217;s easy to set up, easy to configure and easy to use. No worrying about what raid to use, just automatic duplication if desired. And automatic backups. Just whack in a few drives and away she goes.</p>
<div class="shr-publisher-509"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/windows-home-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Haikus</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/microsoft-haikus/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/microsoft-haikus/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 18:03:13 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=246</guid>
		<description><![CDATA[Not mine, but amused me enough to post. The Web site you seek Cannot be located, but Countless more exist. * Chaos reigns within. Reflect, repent, and reboot. Order shall return. * Windows NT crashed. I am the Blue Screen &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/microsoft-haikus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Not mine, but amused me enough to post.</p>
<p style="padding-left: 30px; text-align: center;">The Web site you seek</p>
<p style="padding-left: 30px; text-align: center;">Cannot be located, but</p>
<p style="padding-left: 30px; text-align: center;">Countless more exist.</p>
<p style="padding-left: 30px; text-align: center;">*</p>
<p style="padding-left: 30px; text-align: center;">Chaos reigns within.</p>
<p style="padding-left: 30px; text-align: center;">Reflect, repent, and reboot.</p>
<p style="padding-left: 30px; text-align: center;">Order shall return.</p>
<p style="padding-left: 30px; text-align: center;">*</p>
<p style="padding-left: 30px; text-align: center;">Windows NT crashed.</p>
<p style="padding-left: 30px; text-align: center;">I am the Blue Screen of Death.</p>
<p style="padding-left: 30px; text-align: center;">No one hears your screams.</p>
<p style="padding-left: 30px; text-align: center;">*</p>
<p style="padding-left: 30px; text-align: center;">Stay the patient course.</p>
<p style="padding-left: 30px; text-align: center;">Of little worth is your ire.</p>
<p style="padding-left: 30px; text-align: center;">The network is down.</p>
<p style="padding-left: 30px; text-align: center;">*</p>
<p style="padding-left: 30px; text-align: center;">A crash reduces</p>
<p style="padding-left: 30px; text-align: center;">Your expensive computer</p>
<p style="padding-left: 30px; text-align: center;">To a simple stone.</p>
<p style="padding-left: 30px; text-align: center;">*</p>
<p style="padding-left: 30px; text-align: center;">Serious error.</p>
<p style="padding-left: 30px; text-align: center;">All shortcuts have disappeared.</p>
<p style="padding-left: 30px; text-align: center;">Screen. Mind. Both are blank.</p>
<div class="shr-publisher-246"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/microsoft-haikus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozy Online &#8211; Free, secure storage</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/mozy-online-free-secure-storage/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/mozy-online-free-secure-storage/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 13:02:40 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=152</guid>
		<description><![CDATA[Mozy online is a free storage depository, that uses a lightweight program to sync files on your computer. It&#8217;s easy to configure and runs pretty much by itself, and comes with 2GB. If you fancy using it, use my referral &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/mozy-online-free-secure-storage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a title="Mozy Online" href="https://mozy.com/?ref=S4XE5A" target="_blank">Mozy online</a> is a free storage depository, that uses a lightweight program to sync files on your computer.</p>
<p>It&#8217;s easy to configure and runs pretty much by itself, and comes with 2GB. If you fancy using it, use my <a title="referral" href="https://mozy.com/?ref=S4XE5A" target="_blank">referral</a> code and we both get an extra 256MB of storage.</p>
<div class="shr-publisher-152"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/mozy-online-free-secure-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling MSN &amp; Live Messenger</title>
		<link>http://r-dunn.co.uk/ieatpenguin/computing/software/disabling-msn-messenger/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/computing/software/disabling-msn-messenger/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 14:00:26 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=147</guid>
		<description><![CDATA[There are quite a few guides on how to disable this viral little program. Sadly blocking it&#8217;s default port rarely works, because doing so causes the program to switch to port 80, which for most would mean blocking http traffic &#8230; <a href="http://r-dunn.co.uk/ieatpenguin/computing/software/disabling-msn-messenger/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>There are quite a few guides on how to disable this viral little program. Sadly blocking it&#8217;s default port rarely works, because doing so causes the program to switch to port 80, which for most would mean blocking http traffic too.</p>
<p>Several ways to do this on the internet involve editing the registry, this is something that doesn&#8217;t appear to work any more.</p>
<p>The only way I&#8217;ve found that works is to edit the computers group policy (start &gt; run &gt; <strong>gpedit.msc</strong>). Under Administrative Templates and Windows components, you&#8217;ll find Windows Messenger. Simply set <em>&#8220;Do not allow windows messenger to be run&#8221;</em> to enabled.<br />
Thats it.</p>
<p><strong>Update:</strong> This doesn&#8217;t work for Live Messenger, one method I have found that uninstalls WLM completely is to run a command prompt (as administrator), and simply type: <em>msiexec /x {B1403D7D-C725-4858-AACC-7E5FA2D72859}.</em></p>
<div class="shr-publisher-147"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/computing/software/disabling-msn-messenger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

