<?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>Mill Yard Computing</title>
	<atom:link href="http://www.mill-yard.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mill-yard.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 17:37:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Using dd to image hard disks</title>
		<link>http://www.mill-yard.com/2011/12/using-dd-to-image-hard-disks/</link>
		<comments>http://www.mill-yard.com/2011/12/using-dd-to-image-hard-disks/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:21:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=389</guid>
		<description><![CDATA[&#8220;dd&#8221; is the linux command for taking byte by byte copies of files. Since a hard disk behaves sort of like a big file in linux, we can use &#8220;dd&#8221; to take a copy or image. It is a good idea to zero all free space on the original disk before taking the image. This [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;dd&#8221; is the linux command for taking byte by byte copies of files. Since a hard disk behaves sort of like a big file in linux, we can use &#8220;dd&#8221; to take a copy or image.</p>
<p>It is a good idea to zero all free space on the original disk before taking the image. This will make the empty space easier to compress. So if possible, mount the original disk, cd onto it and run the following commands to create file to fill the remaining hard disk space with zeros, you can then delete the file.</p>
<pre># dd if=/dev/zero of=delete.me bs=8M
# rm delete.me</pre>
<p>Then to take the image of a disk detected as /dev/sda</p>
<pre># dd if=/dev/sda conv=sync,noerror bs=64K | gzip -c  &gt; sda-dd-image.gz</pre>
<p>You could have omitted the gzip bit to create an uncompressed image.</p>
<pre># dd if=/dev/sda conv=sync,noerror bs=64K of=sda-dd-image.gz</pre>
<p>To check your progress, you can open another terminal and send the dd process a kill -USR1 signal.</p>
<pre># watch -n 10 killall -USR1 dd</pre>
<p>To restore, use</p>
<pre># gunzip -c sda-dd-image.gz | dd of=/dev/sda conv=sync,noerror bs=64K</pre>
<p>Or if you are restoring from an uncompressed image</p>
<pre># dd if=image.dd of=/dev/sda conv=sync,noerror bs=64K</pre>
<p>You can also mount an uncompressed image without restoring it back to a drive. There is a little bit of maths to figure out where the partition starts.</p>
<p>First run fdisk on your disk image</p>
<pre># fdisk -l -u -C 592 /media/sdb1/image.dd

Disk /media/sdb1/image.dd: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders, total 156301488 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xb1579d08
Device                Boot Start End       Blocks    Id System
/media/sdb1/image.dd1 *    63    156280319 78140128+ 7  HPFS/NTFS/exFAT</pre>
<p>This shows that the partition we are interested in starts at sector 63. So multiply by 512 bytes per sector, our partition starts at byte 32256.<br />
Make a folder to mount the image on, and then mount it as follows</p>
<pre># mkdir /media/loop
# mount -o loop,offset=32256 -t ntfs /media/sdb1/image.dd /media/loop</pre>
<p>Check all is present with</p>
<pre># df
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda1             78140128   3895592  74244536   5% /media/sda1
/dev/sdb1            1442145212 1368096272    792140 100% /media/sdb1
/dev/loop2            78140128   5566440  72573688   8% /media/loop</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/12/using-dd-to-image-hard-disks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Microsoft Security Essentials from the command line.</title>
		<link>http://www.mill-yard.com/2011/12/stop-microsoft-security-essentials-from-the-command-line/</link>
		<comments>http://www.mill-yard.com/2011/12/stop-microsoft-security-essentials-from-the-command-line/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 13:37:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=384</guid>
		<description><![CDATA[To stop Microsoft Security Essentials from the command line or a batch file. sc stop MsMpSvc taskkill /f /im msseces.exe Stopping the service will pop up a warning message which is handled by &#8220;msseces.exe&#8221;. SO we need to kill that process to To start it again, you can try. This will run the scanner service, [...]]]></description>
			<content:encoded><![CDATA[<p>To stop Microsoft Security Essentials from the command line or a batch file.</p>
<p><code>sc stop MsMpSvc </code></p>
<p><code>taskkill /f /im msseces.exe </code></p>
<p>Stopping the service will pop up a warning message which is handled by &#8220;msseces.exe&#8221;. SO we need to kill that process to</p>
<p>To start it again, you can try. This will run the scanner service, but may not show up in the system tray.</p>
<p><code>sc start MsMpSvc</code></p>
<p>&nbsp;</p>
<p>Regards</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/12/stop-microsoft-security-essentials-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam Policy, Bounce Errors Messages &amp; DroneBL</title>
		<link>http://www.mill-yard.com/2011/10/spam-policy-bounce-errors-messages-dronebl/</link>
		<comments>http://www.mill-yard.com/2011/10/spam-policy-bounce-errors-messages-dronebl/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 13:04:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=306</guid>
		<description><![CDATA[One of my clients started having their emails to certain know recipients bounce with "550 Recipient unknown" After a bit of digging, it turned out that all recipients were with 3 organisations who were using the same mail server and anitspam system from a local ISP. My client use an in-house mail server with a [...]]]></description>
			<content:encoded><![CDATA[<p>One of my clients started having their emails to certain know recipients bounce with</p>
<pre>"550 Recipient unknown"</pre>
<p>After a bit of digging, it turned out that all recipients were with 3 organisations who were using the same mail server and anitspam system from a local ISP.</p>
<p>My client use an in-house mail server with a fixed IP and proper host name.</p>
<p>We contacted the local ISP and they finally informed us that the IP was listed with DroneBL.org.</p>
<p>DroneBL had us listed for the following reason:</p>
<pre>Automatically determined botnet IPs (experimental)</pre>
<p>I have no idea who, when or why this happened, or more importantly what happened. There was no facility to drill down for more details. But it was simple enough to de-list it. In fact it looks like it would be simple enough to sign up and blacklist anyone we had a grudge against.</p>
<p>But getting back to the original bounce message. What is the point in sending incorrect bounce error messages. Spammers do not give a s*** about error messages, they are more concerned about sending out the remaining 500,000 mails they have before dawn.</p>
<p>My Spam Policy</p>
<ul>
<li>Do not bounce spam, only bounce proper errors.</li>
<li>Anything you do bounce, you must provide a proper meaningful reason or message. If you don&#8217;t, it makes absolutely no sense to bounce.</li>
<li>Let spam through but filter it into a separate folder. Preferably on the intended users desktop so they can search it easily.</li>
<li>If messages are getting put into spam erroneously then the recipient  can search for it and bring it to the attention of some techie who can  the examine the headers to determine exactly why it was marked as Spam.</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/10/spam-policy-bounce-errors-messages-dronebl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MalWareBytes Blocked Access to a potentially Malicious Website (199.80.55.13)</title>
		<link>http://www.mill-yard.com/2011/10/malwarebytes-blocked-access-to-a-potentially-malicious-website-199-80-55-13/</link>
		<comments>http://www.mill-yard.com/2011/10/malwarebytes-blocked-access-to-a-potentially-malicious-website-199-80-55-13/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 11:06:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=302</guid>
		<description><![CDATA[I was given a client&#8217;s laptop which, although it could get connected to the internet, and I could even remote access it, it could not browse or collect emails. I could not find anything wrong, I ran multiple scans with Norton, MS Security Essentials and MalWareBytes but found nothing. The only thing I noticed was [...]]]></description>
			<content:encoded><![CDATA[<p>I was given a client&#8217;s laptop which, although it could get connected  to the internet, and I could even remote access it, it could not browse  or collect emails. I could not find anything wrong, I ran multiple scans  with Norton, MS Security Essentials and MalWareBytes but found nothing.  The only thing I noticed was that when trying to run putty, it gave  some kind of out of buffers or quota error.</p>
<p>This laptop was running Windows XP and it was time to upgrade to Windows 7 anyway, so I just wiped it and reinstalled.</p>
<p>A few weeks later my own desktop started showing the same problem.  After running for a while, I could not browse or collect email, and  putty was showing this quota/buffer thingy error again.  (shoulda wrote  the damn thing down.)</p>
<p>I suspected that Firefox was causing the problem, so I disabled all add-ons etc., and even stopped using Firefox.</p>
<p>Later, I installed a new version of MalWareBytes to run it&#8217;s scan, I  selected to install a trial of the pro version. The scan found nothing,  but the resident MalWareBytes started picking up attempts to connect to a  suspect IP address: 199.80.55.13.</p>
<p>I googled malwarebytes 199.80.55.13, and found this:</p>
<p><a href="http://forums.malwarebytes.org/index.php?showtopic=92872" target="_blank">http://forums.malwarebytes.org/index.php?showtopic=92872</a></p>
<p>In this discussion, TDSSKiller seemed to find the rootkit, but not  clean it. TDSSKiller did not find anything wrong on my computer. At the  end of that discussion, after running an ESET scan, a Java update and  Adobe Reader are removed and all&#8217;s well again.</p>
<p>So I went straight to Add/Remove Programs, removed any Java updates  and Adobe Reader. My computer seems to be behaving better now. No more  pop ups from MWB about dodgy IP addresses.</p>
<p>I am now running the ESET Scan. I&#8217;ll post back here when it&#8217;s done.</p>
<p>&nbsp;</p>
<p>Some helpful cleanup tools:</p>
<p><a href="http://download.bleepingcomputer.com/sUBs/dds.scr" target="_blank">http://download.bleepingcomputer.com/sUBs/dds.scr</a></p>
<p><a href="http://www.bleepingcomputer.com/combofix/how-to-use-combofix" target="_blank">http://www.bleepingcomputer.com/combofix/how-to-use-combofix</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/10/malwarebytes-blocked-access-to-a-potentially-malicious-website-199-80-55-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 6 minimum install</title>
		<link>http://www.mill-yard.com/2011/10/centos-6-minimum-install/</link>
		<comments>http://www.mill-yard.com/2011/10/centos-6-minimum-install/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 17:53:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=292</guid>
		<description><![CDATA[I just did my first CentOS 6 minimum install. First thing is the usual network config tools are not available, so you need to temporarily do it by hand, until you can yum in the tools you want. ifconfig eth0 192.168.1.2 echo "nameserver 192.168.1.254" &#62;&#62; /etc/resolv.conf route add default gw 192.168.1.254 eth0 These 3 commands will [...]]]></description>
			<content:encoded><![CDATA[<p>I just did my first CentOS 6 minimum install.</p>
<p>First thing is the usual network config tools are not available, so you need to temporarily do it by hand, until you can yum in the tools you want.</p>
<pre>ifconfig eth0 192.168.1.2
echo "nameserver 192.168.1.254" &gt;&gt; /etc/resolv.conf
route add default gw 192.168.1.254 eth0</pre>
<p>These 3 commands will get you going.<br />
If you are on a DHCP network, there&#8217;s an even quicker way</p>
<pre>dhclient eth0</pre>
<p>After getting connected, you can then install the text based network configurator.</p>
<pre>yum install system-config-network-tui</pre>
<p>The minimal install only includes vi as a text editor, so I installed nano.</p>
<pre>yum install nano</pre>
<p>Now you will need to edit the configuration file to make it active on boot.</p>
<pre>nano /etc/sysconfig/network-scripts/ifcfg-eth0</pre>
<p>and set ONBOOT=&#8221;YES&#8221;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>I&#8217;ve tried this on a VirtualBox VM with the network interface in bridge mode, and on a bare metal installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/10/centos-6-minimum-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print Spooler Keeps Crashing in Windows 7</title>
		<link>http://www.mill-yard.com/2011/09/print-spooler-keeps-crashing-in-windows-7/</link>
		<comments>http://www.mill-yard.com/2011/09/print-spooler-keeps-crashing-in-windows-7/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 21:07:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=287</guid>
		<description><![CDATA[This answer is taken almost verbatim from here &#160; One possible cause is corrupt printer drivers. Solution 1: Remove all printer drivers and reinstall them 1. Click the &#8220;Start&#8221; button, type PRINTER in the search box and press Enter. 2. Find the icons of installed printers, and delete them. 3. Right-click on the blank part [...]]]></description>
			<content:encoded><![CDATA[<p><em>This answer is taken almost verbatim from <a href="http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/print-spooler-keeps-crashing-in-windows-7-ultimate/f47b10d6-fba4-412e-bf49-5daaba31c601" target="_blank">here</a></em></p>
<p>&nbsp;</p>
<p>One possible cause is corrupt printer drivers.</p>
<p>Solution 1: Remove all printer drivers and reinstall them</p>
<div>
<p>1. Click the &#8220;Start&#8221; button, type PRINTER in the search box and press Enter.<br />
2. Find the icons of installed printers, and delete them.<br />
3. Right-click on the blank part of the window, and choose &#8220;Run as administrator&#8221;-&gt;&#8221;Server Properties&#8221;.<br />
4. On the Drivers tab, select the listed printers and click the Remove  button. Please then select Remove driver and driver package.<br />
5. Open Start menu, input APPWIZ.CPL in the Search box and press ENTER to launch &#8220;Programs and Features&#8221;.<br />
6. Try to remove all related printer software.</p>
<p>Solution 2: Clear the printing sub system.</p>
<p>Step 1<br />
======<br />
Start Windows Explorer, and then rename all files and folders in the following two folders:</p>
<p>c:\windows\system32\spool\drivers\w32x86<br />
<em>(not sure if there is another folder or not)</em></p>
<p>Step 2<br />
======<br />
1. Click Start, type REGEDIT in the Start Search Bar, and then press ENTER.<br />
2. Navigate to and then click the following registry key:</p>
<p>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environment\Windows NT x86</p>
<p>View the list of subkeys. There should be only the following subkeys:</p>
<p>Drivers<br />
Print Processors</p>
<p>If there are any keys other than those listed above, follow these steps:</p>
<p>a. On the File menu, click Export.<br />
b. In the File Name box, type a descriptive name for this key &#8212; for  example, type WindowsNTx86regkey &#8212; and then click Save to save it to  your local Desktop.</p>
<p>We can use this backup of the  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environment\Windows  NT x86 registry key to restore the key if you experience any problems  after you complete this procedure.</p>
<p>c. Delete all keys other than Drivers and Print Processors.</p>
<p>Step 3<br />
======<br />
Navigate to and click the  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors  registry key. View the list of subkeys. There should be only the  following subkeys:</p>
<p>BJ Language Monitor<br />
Local Port<br />
Microsoft Document Imaging Writer Monitor<br />
Microsoft Shared Fax Monitor<br />
Standard TCP/IP Port<br />
USB Monitor<br />
WSD Port</p>
<p>If there are any keys other than those listed in above, follow these steps to delete them:</p>
<p>a. On the File menu, click Export.<br />
b. In the File Name box, type a descriptive name for this key &#8212; for  example, type Monitorsregkey &#8212; and then click Save to save it to your  local Desktop.</p>
<p>We can use this backup of the  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors  registry key to restore the key if you experience any problems after you  complete this procedure.</p>
<p>c. Delete all keys other than the 5 listed above.</p>
<p>Step 4. Disconnect the printer cable from the computer, and then restart the computer.</p>
<p>Step 5. Reconnect the printer cable to the computer, install the printer  according to the manufacturer&#8217;s installation instructions, and then  check if the issue persists.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/09/print-spooler-keeps-crashing-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chkdsk runs every time Windows XP reboots</title>
		<link>http://www.mill-yard.com/2011/07/chkdsk-runs-every-time-windows-xp-reboots/</link>
		<comments>http://www.mill-yard.com/2011/07/chkdsk-runs-every-time-windows-xp-reboots/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 12:38:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Admin]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=278</guid>
		<description><![CDATA[First lets see if we have faulty hardware Quantum/Maxtor &#8211; PowerMax &#8211; http://www.maxtor.com/en/support/downloads/powermax.htm Western Digital &#8211; Data LifeGuard Tools (DLGDiag) &#8211; http://support.wdc.com/download/ Hitachi/IBM &#8211; Drive Fitness Test (DFT) &#8211; http://www.hgst.com/hdd/support/download.htm Seagate &#8211; SeaTools &#8211; http://www.seagate.com/support/seatools/ Fujitsu &#8211; Diagnostic Tool &#8211; http://www.fcpa.com/download/hard-drives/ Samsung &#8211; Disk manager &#8211; http://www.samsung.com/Products/Hard&#8230;ies/shdiag.htm Every time Windows XP starts, Autochk.exe is called [...]]]></description>
			<content:encoded><![CDATA[<p>First lets see if we have faulty hardware</p>
<ul>
<li>Quantum/Maxtor &#8211; PowerMax &#8211; http://www.maxtor.com/en/support/downloads/powermax.htm</li>
</ul>
<ul>
<li>Western Digital &#8211; Data LifeGuard Tools (DLGDiag) &#8211; http://support.wdc.com/download/</li>
</ul>
<ul>
<li>Hitachi/IBM &#8211; Drive Fitness Test (DFT) &#8211; http://www.hgst.com/hdd/support/download.htm</li>
</ul>
<ul>
<li>Seagate &#8211; SeaTools &#8211; http://www.seagate.com/support/seatools/</li>
</ul>
<ul>
<li>Fujitsu &#8211; Diagnostic Tool &#8211; http://www.fcpa.com/download/hard-drives/</li>
</ul>
<ul>
<li>Samsung &#8211; Disk manager &#8211; http://www.samsung.com/Products/Hard&#8230;ies/shdiag.htm</li>
</ul>
<p>Every time Windows XP starts, Autochk.exe is called by the Kernel to scan all volumes to check if the volume dirty bit is set. If the dirty bit is<br />
set, autochk performs an immediate chkdsk /f on that volume. Chkdsk /f verifies file system integrity and attempts to fix any problems with the<br />
volume. If while running Windows, you attempt to run chkdsk on the boot volume or other mounted volume, the dirty bit is set so that it runs at the next reboot.</p>
<p>A command line utility, &#8220;chkntfs&#8221; displays or modifies the checking of disk at boot time.</p>
<pre>chkntfs /d</pre>
<p>&#8230;restores the machine to the default behavior: as described above</p>
<p>To check whether the dirty bit is set.</p>
<pre>fsutil dirty query C:</pre>
<p>or</p>
<pre>chkntfs c:</pre>
<p>The only way to clear the dirty bit is to run chkdsk to try to clear it.</p>
<p>When chkdsk runs at boot time it records its output to a file called Bootex.log in the root of the volume being checked. The Winlogon<br />
service then moves the contents of each Bootex.log file to the Application Event log.</p>
<p>&nbsp;</p>
<p>If you really want to, you can disable the chkdsk at boot completely</p>
<p>Go to:  http://www.kellys-korner-xp.com/xp_tweaks.htm</p>
<p>Read the instructions at the top of the page. Scroll down to: 82. &#8211; Disable or Enable Check Disk Upon Boot</p>
<p>&nbsp;</p>
<p>The problem can be caused by recently installed software. I&#8217;ve heard of a case of Yahoo Messenger causing it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/07/chkdsk-runs-every-time-windows-xp-reboots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2010 Crashing Problems</title>
		<link>http://www.mill-yard.com/2011/07/outlook-2010-crashing-problems/</link>
		<comments>http://www.mill-yard.com/2011/07/outlook-2010-crashing-problems/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 09:00:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Office & Outlook]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=267</guid>
		<description><![CDATA[The best solution to crashing Outlook 2010 problems is Thunderbird, but if that&#8217;s not an option, here are some things you could try: The most common crashing problem I have come across is where it crashes every time it tries to send an email. &#160; Safe Mode Try starting Outlook in safe mode, and see [...]]]></description>
			<content:encoded><![CDATA[<p>The best solution to crashing Outlook 2010 problems is Thunderbird, but if that&#8217;s not an option, here are some things you could try:</p>
<p>The most common crashing problem I have come across is where it crashes every time it tries to send an email.</p>
<p>&nbsp;</p>
<h4>Safe Mode</h4>
<p>Try starting Outlook in safe mode, and see if the crashing stops.</p>
<p>Method 1: Hold down the Crtl key while running Outlook. It asks whether you want to run in safe mode.</p>
<p>Method 2: Go to the &#8220;Run&#8221; dialog or call up a command console and type one of the following</p>
<ol>
<li>outlook /safe – Starts Outlook without Microsoft Exchange Client Extensions (ECE), the Reading Pane, or toolbar customizations. Component Object Model (COM) add-ins are turned off.</li>
<li>outlook /safe:1 – Starts Outlook with the Reading Pane off.</li>
<li>outlook /safe:3 – Starts Outlook with Microsoft Exchange Client Extensions (ECE) turned off, but listed in the Add-In Manager. Component Object Model (COM) add-ins are turned off.</li>
<li>outlook /safe:4 – Starts Outlook without loading outcmd.dat (customized toolbars).</li>
</ol>
<p>&nbsp;</p>
<h4>Repair PST files</h4>
<p>The Microsoft PST repair tool is called SCANPST.EXE and can be found here: C:\Program Files\Microsoft Office\Office14</p>
<p>Your PST files are probably in one or both of these locations:</p>
<ul>
<li>C:\Documents and Settings\promoters\Local Settings\Application Data\Microsoft\Outlook</li>
<li>C:\Documents and Settings\promoters\My Documents\Outlook Files</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/07/outlook-2010-crashing-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Photo Editor off screen unless maximised</title>
		<link>http://www.mill-yard.com/2011/06/microsoft-photo-editor-off-screen-unless-maximised/</link>
		<comments>http://www.mill-yard.com/2011/06/microsoft-photo-editor-off-screen-unless-maximised/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 12:49:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=265</guid>
		<description><![CDATA[I still use Microsoft Photo editor for some simple tasks. It&#8217;s fast and fine for cropping screen captures. The problem is that it normally only shows when the window is maximised. If you try to restore it to a normal window, it remains running, but disappears off the screen. There are 3 methods I have [...]]]></description>
			<content:encoded><![CDATA[<p>I still use Microsoft Photo editor for some simple tasks. It&#8217;s fast and fine for cropping screen captures.</p>
<p>The problem is that it normally only shows when the window is maximised. If you try to restore it to a normal window, it remains running, but disappears off the screen.</p>
<p>There are 3 methods I have found to solve this:</p>
<p>&nbsp;</p>
<ol>
<li>
<ul>
<li>Right-click on it&#8217;s taskbar icon and choose Move. The cursor should change shape to indicate you are in move mode. </li>
<li>Press any one of the keyboard&#8217;s arrow keys and move your mouse to position the window on your desktop.</li>
</ul>
<p></li>
<li>Alt-tab to the window. Press Alt+Space, Press M, Press an Arrow key, and then move your mouse.
</li>
<li><strong> </strong>Right-click on empty space on the  taskbar and click &#8220;Cascade Windows&#8221;.
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/06/microsoft-photo-editor-off-screen-unless-maximised/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS, Dovecot, Sendmail, IMAP and Maildir</title>
		<link>http://www.mill-yard.com/2011/06/centos-dovecot-sendmail-imap-and-maildir/</link>
		<comments>http://www.mill-yard.com/2011/06/centos-dovecot-sendmail-imap-and-maildir/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 15:06:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Admin]]></category>

		<guid isPermaLink="false">http://www.mill-yard.com/?p=242</guid>
		<description><![CDATA[&#160; Out of the box, CentOS5 installs Sendmail using Procmail as local delivery agent, and Dovecot. The inbox is in /var/spool/mail/~ and any user folders are stored in mbox format in ~/mail/ If we access an email account with IMAP, there are some issues with folders and sub-folders. The solution to these problems, is to [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Out of the box, CentOS5 installs Sendmail using Procmail as local delivery agent, and Dovecot. The inbox is in /var/spool/mail/~ and any user folders are stored in mbox format in ~/mail/</p>
<p>If we access an email account with IMAP, there are some issues with folders and sub-folders. The solution to these problems, is to swap over to Maildir.</p>
<p>To do so, we need to make some changes to Dovecot &amp; Procmail</p>
<p>Edit &#8220;/etc/procmailrc&#8221; and change:</p>
<pre>ORGMAIL=$HOME/Maildir/
DEFAULT=$HOME/Maildir/</pre>
<p>Edit &#8220;/etc/dovecot&#8221; and change:</p>
<pre>mail_location = maildir:~/Maildir
pop3_uidl_format = %08Xu%08Xv</pre>
<p>&nbsp;</p>
<h4>If you prefer to use Webmin:</h4>
<p>Servers -&gt; Procmail Mail Filter -&gt; Manually Edit Configuration.</p>
<p>Servers -&gt; Dovecot IMAP/POP3 Server -&gt; Mail Files</p>
<p>and set</p>
<pre>Mail file location = "Inbox and folders in ~/Maildir"
UIDL format = "Other.. %08Xu%08Xv"</pre>
<p>&nbsp;</p>
<h4><strong>Transferring old Emails</strong></h4>
<p>The dovecot instructions are <a href="http://wiki1.dovecot.org/Migration/MailFormat">here.</a></p>
<p>I just downloaded the <a href="http://dovecot.org/tools/mb2md.pl">mb2md.pl</a> script and did the rest by hand.</p>
<p>I logged in as root and ran the following commands for each user</p>
<p>First let&#8217;s import the old inbox into the Maildir format. This will also create the ~username/Maildir folder if it does not exist.</p>
<pre>./mb2md.pl -s /var/spool/mail/linuxusername -d ~linuxusername/Maildir</pre>
<p>Second lets import any existing other folders</p>
<pre>./mb2md.pl -s ~linuxusername/mail -R -d ~linuxusername/Maildir</pre>
<p>Finally we fix the file ownerships:</p>
<pre>chown -R linuxusername:groupname /home/season/homes/linuxusername/Maildir/.*
chown -R linuxusername:groupname /home/season/homes/linuxusername/Maildir/*
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mill-yard.com/2011/06/centos-dovecot-sendmail-imap-and-maildir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

