<?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>Kirrus' Blog</title>
	<atom:link href="http://kirrus.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://kirrus.co.uk</link>
	<description>MindDump. Photos. And random ramblings.</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:20:06 +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>Deleting lots of tiny files really really quickly</title>
		<link>http://kirrus.co.uk/2012/02/deleting-lots-of-tiny-files-really-really-quickly/</link>
		<comments>http://kirrus.co.uk/2012/02/deleting-lots-of-tiny-files-really-really-quickly/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:19:06 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Remember This]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=691</guid>
		<description><![CDATA[This is the second half of that magento issue. Mainly, after having got a directory with millions of files in it, you can do one of two things. mv sessions sessions_full &#38;&#38; mkdir sessions &#38;&#38; chown www-data:www-data sessions rm -rfv sessions_full Or find /loc/of/sessions -ctime +1 -type f -exec rm -v {} \;]]></description>
			<content:encoded><![CDATA[<p>This is the second half of that magento issue. Mainly, after having got a directory with millions of files in it, you can do one of two things.</p>
<pre>mv sessions sessions_full &amp;&amp; mkdir sessions &amp;&amp; chown www-data:www-data sessions</pre>
<pre>rm -rfv sessions_full</pre>
<p>Or</p>
<pre>find /loc/of/sessions -ctime +1 -type f -exec rm -v {} \;</pre>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2012/02/deleting-lots-of-tiny-files-really-really-quickly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bind refuses to restart, debian squeeze</title>
		<link>http://kirrus.co.uk/2012/02/bind-refuses-to-restart-debian-squeeze/</link>
		<comments>http://kirrus.co.uk/2012/02/bind-refuses-to-restart-debian-squeeze/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 13:34:13 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Remember This]]></category>
		<category><![CDATA[bind]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[squeeze]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=681</guid>
		<description><![CDATA[After an upgrade, I&#8217;ve noticed a few times that bind has refused to restart or reload, saying: Stopping domain name service: namedrndc: connect failed: connection refused This seems to be a permissions bug in debian, quite a long lasting one. In order to cheat-fix it quickly, I do the following: chown bind:root /etc/bind/rndc.key chmod 660 [...]]]></description>
			<content:encoded><![CDATA[<p>After an upgrade, I&#8217;ve noticed a few times that bind has refused to restart or reload, saying:</p>
<pre>Stopping domain name service: namedrndc: connect failed: connection refused</pre>
<p>This seems to be a permissions bug in debian, quite a long lasting one. In order to cheat-fix it quickly, I do the following:</p>
<pre>chown bind:root /etc/bind/rndc.key</pre>
<pre>chmod 660</pre>
<pre>/etc/init.d/bind9 restart</pre>
<p>That seems to fix it well enough. I think it&#8217;s a problem in that bind starts as one user, but runs as another. It may be that 440 are all the perms that are necessary. The debian bug report is here: <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=169577">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=169577</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2012/02/bind-refuses-to-restart-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Session Files</title>
		<link>http://kirrus.co.uk/2012/02/magento-session-files/</link>
		<comments>http://kirrus.co.uk/2012/02/magento-session-files/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 12:40:19 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Remember This]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=679</guid>
		<description><![CDATA[Magento (the popular open-source online shop system) likes to store its PHP session files in ~/public_html/var/session/ Most debian servers don&#8217;t have that in their cron job that deletes old session files. So, you probably want to set it to store it&#8217;s session files in the default location (/var/lib/php5) or alter your cron job (/etc/cron.d/php5) Fun!]]></description>
			<content:encoded><![CDATA[<p>Magento (the popular open-source online shop system) likes to store its PHP session files in ~/public_html/var/session/</p>
<p>Most debian servers don&#8217;t have that in their cron job that deletes old session files.</p>
<p>So, you probably want to set it to store it&#8217;s session files in the default location (/var/lib/php5) or alter your cron job (/etc/cron.d/php5)</p>
<p>Fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2012/02/magento-session-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Protected: A state of mind, January 2012</title>
		<link>http://kirrus.co.uk/2012/01/a-state-of-mind-january-2012/</link>
		<comments>http://kirrus.co.uk/2012/01/a-state-of-mind-january-2012/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 01:19:40 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=665</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://kirrus.co.uk/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-665">Password:<br />
<input name="post_password" id="pwbox-665" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2012/01/a-state-of-mind-january-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The wind is not your friend</title>
		<link>http://kirrus.co.uk/2012/01/the-wind-is-not-your-friend/</link>
		<comments>http://kirrus.co.uk/2012/01/the-wind-is-not-your-friend/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 19:56:31 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=660</guid>
		<description><![CDATA[Cycling home tonight, I had just left work&#8217;s place, onto a stretch  of road with no streetlights. Picture the scene, it&#8217;s just stopped bucketing it down with rain, now spitting. I&#8217;m in wet-weather gear, and it&#8217;s dark. Quite dark. My backpack has a reflective cover, and I&#8217;ve a reflectctive jacket, with a particually annoying LED [...]]]></description>
			<content:encoded><![CDATA[<p>Cycling home tonight, I had just left work&#8217;s place, onto a stretch  of road with no streetlights. Picture the scene, it&#8217;s just stopped bucketing it down with rain, now spitting. I&#8217;m in wet-weather gear, and it&#8217;s dark. Quite dark. My backpack has a reflective cover, and I&#8217;ve a reflectctive jacket, with a particually annoying LED flashing backlight. (I&#8217;m paranoid &#8211; shortly will have red LED flashing in my helmet.)</p>
<p>Got out safely, clipped my feet in fine (I now have special shoes that clip onto my pedals), accelerating towards my average 15-17mph on that particular bit of road, the wind decided to push me, hard, towards the edge of the road. A very small shallow there, with a grassy bank. Wheels in the culvert, uncontrollable de-acceleration, equals me flat across the A road, with one car passing me and another just behind it.</p>
<p>Promtly to the sound of car-horns telling me just how close I&#8217;d come to getting run over, I dragged myself off the road *sharpish*, and dragged my bike off as quick as I could after I was off. I&#8217;ve a couple of very minor abrasions on my ankles. Lucky. Very lucky.</p>
<p>Note to self. When it&#8217;s wet and windy, piss drivers off by sticking a meter off from the side. It&#8217;s far better than getting run over.</p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2012/01/the-wind-is-not-your-friend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Invalid method in request \x16\x03\x01</title>
		<link>http://kirrus.co.uk/2011/10/invalid-method-in-request-x16x03x01/</link>
		<comments>http://kirrus.co.uk/2011/10/invalid-method-in-request-x16x03x01/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:02:00 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Remember This]]></category>
		<category><![CDATA[Ubuntu-UK Planet]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=651</guid>
		<description><![CDATA[So, ran into this one. Firefox is throwing this error, along with &#8216;SSL_ERROR_RX_RECORD_TOO_LONG&#8217;. Turns out, apache was serving plain HTTP on port 443, as it hadn&#8217;t been given a default SSL config. Other causes may be: Corrupted SSL cert (rare). Mis-configured proxy. Not adding &#8220;SSLEngine On&#8221; after configuring an SSL cert. But mostly, you&#8217;re trying [...]]]></description>
			<content:encoded><![CDATA[<p>So, ran into this one. Firefox is throwing this error, along with &#8216;SSL_ERROR_RX_RECORD_TOO_LONG&#8217;. Turns out, apache was serving plain HTTP on port 443, as it hadn&#8217;t been given a default SSL config.</p>
<p>Other causes may be: Corrupted SSL cert (rare). Mis-configured proxy. Not adding &#8220;SSLEngine On&#8221; after configuring an SSL cert. But mostly, you&#8217;re trying to talk HTTPS to an HTTP serving webserver.</p>
<p>`a2ensite default-ssl` (on debian) fixed it. Well, fixed in in that the default server now has a snake-oil self-signed cert, but, you know, fixed it. <img src='http://kirrus.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2011/10/invalid-method-in-request-x16x03x01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Possible missing firmware on debian squeeze</title>
		<link>http://kirrus.co.uk/2011/10/possible-missing-firmware-on-debian-squeeze/</link>
		<comments>http://kirrus.co.uk/2011/10/possible-missing-firmware-on-debian-squeeze/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 12:55:06 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Remember This]]></category>
		<category><![CDATA[Ubuntu-UK Planet]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=648</guid>
		<description><![CDATA[If you get these errors: W: Possible missing firmware /lib/firmware/rtl_nic/rtl8105e-1.fw for module r8169 W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168e-2.fw for module r8169 W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168e-1.fw for module r8169 W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-2.fw for module r8169 W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-1.fw for module r8169 Do this as root (or using sudo): #  aptitude install [...]]]></description>
			<content:encoded><![CDATA[<pre>If you get these errors:</pre>
<pre>W: Possible missing firmware /lib/firmware/rtl_nic/rtl8105e-1.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168e-2.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168e-1.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-2.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-1.fw for module r8169</pre>
<p>Do this as root (or using sudo):</p>
<pre>#  aptitude install firmware-realtek</pre>
<p>Win!</p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2011/10/possible-missing-firmware-on-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>London wander 2011 photos #1</title>
		<link>http://kirrus.co.uk/2011/09/london-wander-2011-photos-1/</link>
		<comments>http://kirrus.co.uk/2011/09/london-wander-2011-photos-1/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 22:21:44 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[pub]]></category>
		<category><![CDATA[traffic warden]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=642</guid>
		<description><![CDATA[I&#8217;ve finally downloaded all the photos I took whilst wanding around london for half a day. The majority are rubbish, but a few are quite interesting. Let&#8217;s start with a couple of street scenes. I&#8217;ll hopefully post some more sooner or later]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally downloaded all the photos I took whilst wanding around london for half a day. The majority are rubbish, but a few are quite interesting.</p>
<p>Let&#8217;s start with a couple of street scenes. I&#8217;ll hopefully post some more sooner or later <img src='http://kirrus.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="attachment_643" class="wp-caption alignnone" style="width: 624px"><a href="http://kirrus.co.uk/wp-content/uploads/2011/09/london-wander.jpg"><img class="size-large wp-image-643 " title="Studying" src="http://kirrus.co.uk/wp-content/uploads/2011/09/london-wander-1024x682.jpg" alt="Street scene, laptop, pub, walking" width="614" height="409" /></a><p class="wp-caption-text">Just need to finish this...</p></div>
<div id="attachment_644" class="wp-caption alignnone" style="width: 624px"><a href="http://kirrus.co.uk/wp-content/uploads/2011/09/whoops.jpg"><img class="size-large wp-image-644   " title="Whoops" src="http://kirrus.co.uk/wp-content/uploads/2011/09/whoops-1024x621.jpg" alt="" width="614" height="373" /></a><p class="wp-caption-text">Please don&#39;t ticket me! Man, I really hate wardens. I only stopped for a minute to get an ice cream!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2011/09/london-wander-2011-photos-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eaccelerator mirror / downloads</title>
		<link>http://kirrus.co.uk/2011/09/eaccelerator-mirror-downloads/</link>
		<comments>http://kirrus.co.uk/2011/09/eaccelerator-mirror-downloads/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 20:39:04 +0000</pubDate>
		<dc:creator>Kirrus</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Remember This]]></category>
		<category><![CDATA[Ubuntu-UK Planet]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[site speed]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=637</guid>
		<description><![CDATA[Eaccelerator is insanely useful in my line of work. However, their main downloads are down right now, so I&#8217;m mirroring the latest version here: http://kirrus.co.uk/stuff/eaccelerator-0.9.6.1.tar.bz2 http://kirrus.co.uk/stuff/eaccelerator-0.9.6.1.zip You can see the files sha1sums here: https://eaccelerator.net/wiki/Release-0.9.6.1 Alternatively, if you&#8217;re scripting (we are), you can use the following to get my (&#8216;up-to-date&#8217;) version: http://kirrus.co.uk/stuff/eaccelerator-latest.tar.bz2 bz2.. because that&#8217;s the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://eaccelerator.net/">Eaccelerator</a> is insanely useful in my line of work. However, their main downloads are down right now, so I&#8217;m mirroring the latest version here:</p>
<p><a href="http://kirrus.co.uk/stuff/eaccelerator-0.9.6.1.tar.bz2">http://kirrus.co.uk/stuff/eaccelerator-0.9.6.1.tar.bz2</a><br />
<a href="http://kirrus.co.uk/stuff/eaccelerator-0.9.6.1.zip"> http://kirrus.co.uk/stuff/eaccelerator-0.9.6.1.zip</a></p>
<p>You can see the files sha1sums here: <a href="https://eaccelerator.net/wiki/Release-0.9.6.1">https://eaccelerator.net/wiki/Release-0.9.6.1</a></p>
<p>Alternatively, if you&#8217;re scripting (we are), you can use the following to get my (&#8216;up-to-date&#8217;) version:<br />
<a href="http://kirrus.co.uk/stuff/eaccelerator-latest.tar.bz2"> http://kirrus.co.uk/stuff/eaccelerator-latest.tar.bz2</a></p>
<p>bz2.. because that&#8217;s the version we use here <img src='http://kirrus.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2011/09/eaccelerator-mirror-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB Key reminder script</title>
		<link>http://kirrus.co.uk/2011/02/usb-key-reminder-script/</link>
		<comments>http://kirrus.co.uk/2011/02/usb-key-reminder-script/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 00:54:04 +0000</pubDate>
		<dc:creator>garreth</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://kirrus.co.uk/?p=601</guid>
		<description><![CDATA[Garreth shares a VBS visual basic script / logoff script to automatically remind windows users to take their usb memory stick with them when logging off.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s something for all you windows network admins out there.<br />
(I apologize in advance to Johnathon&#8217;s linux followers)</p>
<p>Here&#8217;s a little script I wrote to be used as a group policy logoff script to remind users to remove their USB memory sticks/keys when logging off.</p>
<p>I wrote it while working in IT Support for a High School, to help out our IT teachers and ourselves as we were weekly gathering a collection of various USB Memory Sticks and memory keys (and since i was the one trying to reunite them with their owners each week.)</p>
<p>It&#8217;s written in VBS so it&#8217;s perfect for using as a group policy in active directory on say a Windows 2003 server/XP network. I haven&#8217;t tried it on Vista, Windows 7, or Server 2008 because I wasn&#8217;t using those technologies at the time, but it will most likely work with Vista and Windows 7 when deployed from a 2k3 or 2k8 server.</p>
<p>It detects removable drives (the type it looks for can be modified) that are connected and won&#8217;t pop-up without a drive detected.</p>
<p>If a USB drive is connected, it pops up a dialog reminding the user to take their memory stick with them and then auto-closes after a few seconds (as not to hang the logoff procedure).</p>
<p>I hope this is usefull to someone. If you use it, please leave me a comment.<br />
[LICENCE GPL? NC-SA?]Also, feel free to modify and redistribute this script, but please don&#8217;t remove my details, as I&#8217;d like to know if it gets used and of any usefull additions others can think of.</p>
<p>[code]</p>
<p>' Script to display a list of drives connected to this machine<br />
' http://authors.aspalliance.com/brettb/VBScriptDrivesCollection.asp<br />
' MODIFIED to detect only removable drive. GTinsley 2008 @ Wallington County Grammar School.<br />
'  May cause false positives on some SATA 'puters.<br />
'  Tested working on 'puters with card readers.</p>
<p>Set FileSystemObject = CreateObject("Scripting.FileSystemObject") 'Create a filesystem object<br />
Set Drives = FileSystemObject.Drives 'Create a drives collection</p>
<p>' Step through the drive collection, and get both the drive letter and the drive type.<br />
' There are 6 distinct types of drive:<br />
'Select Case DriveType<br />
'   Case "0" DriveType = "Unknown type of drive"<br />
'   Case "1" DriveType = "Removable drive"<br />
'   Case "2" DriveType = "Fixed drive"<br />
'   Case "3" DriveType = "Network drive"<br />
'   Case "4" DriveType = "CD-ROM drive"<br />
'   Case "5" DriveType = "RAM Disk"<br />
'End Select</p>
<p>For Each DiskDrive in Drives</p>
<p>DriveLetter = DiskDrive.DriveLetter<br />
DriveType = DiskDrive.DriveType</p>
<p>' Check for a removable drive connected that:<br />
'     Is not the drive letter A B or C<br />
'    Folder exists (proves the drive exists)<br />
IF Drivetype = "1" and not driveletter = "C" and not driveletter = "A" and not driveletter = "B" and FileSystemObject.FolderExists(driveletter &amp; ":\") then</p>
<p>' Old method. Waits until user has clicked OK before logoff completes.<br />
'WScript.Echo "The removable disk drive " &amp; DriveLetter &amp; " is a still connected. Don't forget your USB drive!"</p>
<p>' New method waits 5 seconds then logs off.</p>
<p>time_out = 5      ' wait max. 5 seconds<br />
title = "Forgetting something?"<br />
button = vbOKonly  ' vbOKOnly<br />
message = "The Removable Disk (" &amp; DriveLetter &amp; ":\) is a still connected. Don't forget your USB drive!"</p>
<p>Set objWSH = WScript.CreateObject("Wscript.Shell")     ' create object<br />
objWSH.Popup message, time_out, title, buttons     ' popup<br />
end if<br />
Next</p>
<p>' Clear objects and collections<br />
Set Drives = nothing<br />
Set FileSystemObject = nothing</p>
<p>[/code]</p>
]]></content:encoded>
			<wfw:commentRss>http://kirrus.co.uk/2011/02/usb-key-reminder-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

