<?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>The Network Technician &#187; Exchange 2007</title>
	<atom:link href="http://www.thenetworktechnician.com/category/exchange-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thenetworktechnician.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Jul 2010 05:43:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Exchange 2007 Not Receiving Emails From a Domain</title>
		<link>http://www.thenetworktechnician.com/2009/09/exchange-2007-not-receiving-emails-from-a-domain/</link>
		<comments>http://www.thenetworktechnician.com/2009/09/exchange-2007-not-receiving-emails-from-a-domain/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 08:00:58 +0000</pubDate>
		<dc:creator>The Network Technician</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[exchange]]></category>

		<guid isPermaLink="false">http://www.thenetworktechnician.com/?p=254</guid>
		<description><![CDATA[I&#8217;ve had issues where one of our users will claim that they do not receive any emails from an outside domain. Internally, the email will get sent out and the user confirms with the external user at a different company, via the phone, that they received the email. But when that particular user at a [...]


Related posts:<ol><li><a href='http://www.thenetworktechnician.com/2009/06/exchange-2007-backup-exec-12d-failed-backups/' rel='bookmark' title='Permanent Link: Exchange 2007 &#038; Backup Exec 12d Failed Backups'>Exchange 2007 &#038; Backup Exec 12d Failed Backups</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/07/windows-server-2003-event-id-1030-1058/' rel='bookmark' title='Permanent Link: Windows Server 2003 Event ID 1030 &#038; 1058'>Windows Server 2003 Event ID 1030 &#038; 1058</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/07/how-to-fix-event-ids-1030-1058-alternative/' rel='bookmark' title='Permanent Link: How To Fix Event ID&#8217;s 1030 &#038; 1058 [ALTERNATIVE]'>How To Fix Event ID&#8217;s 1030 &#038; 1058 [ALTERNATIVE]</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F&amp;source=rowelld&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve had issues where one of our users will claim that they do not receive any emails from an outside domain. Internally, the email will get sent out and the user confirms with the external user at a different company, via the phone, that they received the email. But when that particular user at a different company sends an incoming email it never makes it.</p>
<p>It left me stump for a couple of days but we have to think about how an email message should be received normally. If email is sending and receiving normally for all other domains then why is it that one domain is not getting through?</p>
<p>One reason could be that you have enabled the Exchange 2007 anti-spam features. The way Exchange 2007 filters emails is through their anti-spam content filtering, ip allow list, ip block list, recipient filtering, etc. There are many factors that can contribute.</p>
<p>To narrow down the possibilities we have to look into Exchange 2007&#8242;s logs.</p>
<p>The log in which Exchange 2007 uses for anti-spam rules is called the Agent Log. It is located in:</p>
<pre>C:\Program Files\Microsoft\Exchange Server\TransportRoles\Logs\AgentLog</pre>
<p>When you open a file in notepad you&#8217;ll be overwhelmed in it&#8217;s hard-to-read format. The logs themselves are organized by date:</p>
<pre>AgentLogYYYYmmDD-x.LOG</pre>
<p>The way Exchange 2007 logs each message filtered through the anti-spam set is:</p>
<pre>2009-09-09T17:45:35.501Z,08CBFA7E172A6F22,<em>your-mail-server-ip</em>:25,<em>sending-server-ip</em>:2929,<em>
sending-server-ip</em>,,nightgownszs32@rainbowquartz.com,,ozg@domain.com,1,Connection
Filtering Agent,OnRcptCommand,RejectCommand,550 5.7.1 Your machine has been identified
as malicious and all messages will be rejected from your server.
Please contact your e-mail administrator.,BlockListProvider,Spam Haus,</pre>
<p>It&#8217;s not very easy to read but in the front is the date trailed by the message id, your mail server internal ip and port number, sending server ip and port number, sending server ip, sending email address, recipient email address.</p>
<p>After that bit of information it will list the reason why it failed to enter your domain. In this example I am using Spam Haus as an IP Block list which just drops the email and thus never makes it into our network.</p>
<p>There is a way to refine your search so you wouldn&#8217;t have to spend hours looking through that messy log. Open up the powershell in Exchange and use this command or alter it to your liking:</p>
<pre>Get-AgentLog -StartDate "mm/dd/yyyy" -EndDate "mm/dd/yyyy" -location "location of logs" | where
{$_.P1FromAddress -like "*domain.com" -or $_.P2FromAddress -like "*domain.com"} &gt; agentlog.txt</pre>
<p><em>Get-AgentLog </em>- The start of the command that grabs data from the anti-spam logs</p>
<p><em>-StartDate &#8220;mm/dd/yyyy&#8221; </em>- This helps to refine your search to start searching from a specific date. I believe Exchange 2007 keeps these particular logs for 30 days and just starts over.</p>
<p><em>-EndDate &#8220;mm/dd/yyyy&#8221; </em>- Specify an end date to end the search.</p>
<p><em>-location </em>- This is where the logs are located. In this case it is C:\Program Files\Microsoft\Exchange Server\TransportRoles\Logs\AgentLog</p>
<p><em>where {$_.P1FromAddress -like &#8220;*domain.com&#8221; -or $_.P2FromAddress -like &#8220;*domain.com&#8221;} </em>- This says to look for logs that pertain to anything from domain.com. If you&#8217;re looking for a specific sender you can replace <em>*domain.com</em> with <em>&#8220;user@domain.com&#8221;</em></p>
<p><em>&gt; agentlog.txt &#8211; </em>simply makes the output from the command into a text file called agentlog.txt in my home folder.</p>
<p>With that command you get a nicely formatted report:</p>
<pre>Timestamp       : 9/4/2009 6:58:16 AM
SessionId       : 08CBFA7E17292AB3
IPAddress       : 11.11.11.11
MessageId       : &lt;4AA0D681.DB2D.0034.1@domain.com&gt;
P1FromAddress   : user@domaina.com
P2FromAddresses : {user@domaina.com}
Recipients      : {user@domainb.net}
Agent           : Content Filter Agent
Event           : OnEndOfData
Action          : DeleteMessage
SmtpResponse    :
Reason          : SclAtOrAboveDeleteThreshold
ReasonData      : 9
Diagnostics     : DV:3.3.7929.600;SID:SenderIDStatus Pass;CW:CustomList</pre>
<p>Take notice of the Reason and ReasonData from the report above. The SCL rating is at 9. SCL is the Spam Confidence Level and on my Exchange Server, an email SCL of 9 is automatically deleted.</p>
<p>So since this user is a legitimate sender and we do business with them, I had to manually add their email server IP to our IP Allow List. In Powershell you simply type:</p>
<pre>Add-IPAllowListEntry -ipaddress x.x.x.x</pre>
<p>Where <em>x.x.x.x </em>is the sender&#8217;s email server IP address.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://twitter.com/home?status=Exchange%202007%20Not%20Receiving%20Emails%20From%20a%20Domain%20-%20http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F" title="Twitter"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F&amp;t=Exchange%202007%20Not%20Receiving%20Emails%20From%20a%20Domain" title="Facebook"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F&amp;title=Exchange%202007%20Not%20Receiving%20Emails%20From%20a%20Domain&amp;notes=I%27ve%20had%20issues%20where%20one%20of%20our%20users%20will%20claim%20that%20they%20do%20not%20receive%20any%20emails%20from%20an%20outside%20domain.%20Internally%2C%20the%20email%20will%20get%20sent%20out%20and%20the%20user%20confirms%20with%20the%20external%20user%20at%20a%20different%20company%2C%20via%20the%20phone%2C%20that%20they%20receiv" title="del.icio.us"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F&amp;title=Exchange%202007%20Not%20Receiving%20Emails%20From%20a%20Domain&amp;bodytext=I%27ve%20had%20issues%20where%20one%20of%20our%20users%20will%20claim%20that%20they%20do%20not%20receive%20any%20emails%20from%20an%20outside%20domain.%20Internally%2C%20the%20email%20will%20get%20sent%20out%20and%20the%20user%20confirms%20with%20the%20external%20user%20at%20a%20different%20company%2C%20via%20the%20phone%2C%20that%20they%20receiv" title="Digg"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F&amp;title=Exchange%202007%20Not%20Receiving%20Emails%20From%20a%20Domain&amp;annotation=I%27ve%20had%20issues%20where%20one%20of%20our%20users%20will%20claim%20that%20they%20do%20not%20receive%20any%20emails%20from%20an%20outside%20domain.%20Internally%2C%20the%20email%20will%20get%20sent%20out%20and%20the%20user%20confirms%20with%20the%20external%20user%20at%20a%20different%20company%2C%20via%20the%20phone%2C%20that%20they%20receiv" title="Google Bookmarks"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F&amp;partner=sociable" title="Print"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="mailto:?subject=Exchange%202007%20Not%20Receiving%20Emails%20From%20a%20Domain&amp;body=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F09%2Fexchange-2007-not-receiving-emails-from-a-domain%2F" title="email"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://www.thenetworktechnician.com/2009/06/exchange-2007-backup-exec-12d-failed-backups/' rel='bookmark' title='Permanent Link: Exchange 2007 &#038; Backup Exec 12d Failed Backups'>Exchange 2007 &#038; Backup Exec 12d Failed Backups</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/07/windows-server-2003-event-id-1030-1058/' rel='bookmark' title='Permanent Link: Windows Server 2003 Event ID 1030 &#038; 1058'>Windows Server 2003 Event ID 1030 &#038; 1058</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/07/how-to-fix-event-ids-1030-1058-alternative/' rel='bookmark' title='Permanent Link: How To Fix Event ID&#8217;s 1030 &#038; 1058 [ALTERNATIVE]'>How To Fix Event ID&#8217;s 1030 &#038; 1058 [ALTERNATIVE]</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thenetworktechnician.com/2009/09/exchange-2007-not-receiving-emails-from-a-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2007 &amp; Backup Exec 12d Failed Backups</title>
		<link>http://www.thenetworktechnician.com/2009/06/exchange-2007-backup-exec-12d-failed-backups/</link>
		<comments>http://www.thenetworktechnician.com/2009/06/exchange-2007-backup-exec-12d-failed-backups/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 18:30:49 +0000</pubDate>
		<dc:creator>The Network Technician</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[backup exec]]></category>
		<category><![CDATA[backup exec 11d]]></category>
		<category><![CDATA[backups]]></category>

		<guid isPermaLink="false">http://www.thenetworktechnician.com/?p=92</guid>
		<description><![CDATA[We were getting failed backups of our Exchange 2007 server on Symantec&#8217;s Backup Exec 12d. The error Backup Exec 12d gave us was: V-79-32772-8928 - AOFO: Initialization failure on: &#8220;Microsoft Information Store&#8221;. Advanced Open File Option used: Microsoft Volume Shadow Copy Service (VSS). V-79-10000-11233 &#8211; VSS Snapshot error. A Microsoft Volume Shadow Copy Service (VSS) [...]


Related posts:<ol><li><a href='http://www.thenetworktechnician.com/2009/05/insufficient-disk-space-e000848f-backup-exec-restore/' rel='bookmark' title='Permanent Link: Insufficient Disk Space &#8211; e000848f &#8211; Backup Exec Restore'>Insufficient Disk Space &#8211; e000848f &#8211; Backup Exec Restore</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/09/exchange-2007-not-receiving-emails-from-a-domain/' rel='bookmark' title='Permanent Link: Exchange 2007 Not Receiving Emails From a Domain'>Exchange 2007 Not Receiving Emails From a Domain</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/07/windows-server-2003-event-id-1030-1058/' rel='bookmark' title='Permanent Link: Windows Server 2003 Event ID 1030 &#038; 1058'>Windows Server 2003 Event ID 1030 &#038; 1058</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F&amp;source=rowelld&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.thenetworktechnician.com/go/learnexchange2007/" target="_blank"><img class="alignnone" title="Train Signal MS Exchange 2007 Training" src="http://www.shareasale.com/image/MSExchangeServer_250x250.gif" alt="" width="250" height="250" /></a></p>
<p>We were getting failed backups of our Exchange 2007 server on Symantec&#8217;s Backup Exec 12d. The error Backup Exec 12d gave us was:</p>
<blockquote><p>V-79-32772-8928<br />
- AOFO: Initialization failure on: &#8220;Microsoft Information Store&#8221;. Advanced Open File Option used: Microsoft Volume Shadow Copy Service (VSS).</p>
<p>V-79-10000-11233 &#8211; VSS Snapshot error. A Microsoft Volume Shadow Copy Service (VSS) snapshot is already running on the target computer. Only one snapshot can run at a time.  Try running the job later.</p>
<p>- AOFO: Initialization failure on: &#8220;Microsoft Information Store&#8221;. Advanced Open File Option used: Microsoft Volume Shadow Copy Service (VSS).</p>
<p>V-79-10000-11233 &#8211; VSS Snapshot error. A Microsoft Volume Shadow Copy Service (VSS) snapshot is already running on the target computer. Only one snapshot can run at a time.  Try running the job later.</p>
<p>- AOFO: Initialization failure on: &#8220;Microsoft Information Store&#8221;. Advanced Open File Option used: Microsoft Volume Shadow Copy Service (VSS).</p>
<p>V-79-10000-11233 &#8211; VSS Snapshot error. A Microsoft Volume Shadow Copy Service (VSS) snapshot is already running on the target computer. Only one snapshot can run at a time.  Try running the job later.</p></blockquote>
<p><strong>Info:</strong></p>
<p>Check to make sure there are no errors with VSS by opening the command prompt on your mail server and typing in:</p>
<p><em>vssadmin list writers</em></p>
<p>Doing so will list all the writers registered with VSS. If you see the Exchange writer in an error or failed state then the overall solution would be to restart the information store and the Exchange server.</p>
<p>In our case, everything was stable.</p>
<p><strong>Solution:</strong></p>
<p>From the command prompt on Exchange Server enter:</p>
<ol>
<li>net stop vss</li>
<li>net stop swprv</li>
<li>regsvr32 ole32.dll</li>
<li>regsvr32 vss_ps.dll</li>
<li>Vssvc /Register</li>
<li>regsvr32 /i swprv.dll</li>
<li>regsvr32 /i eventcls.dll</li>
<li>regsvr32 es.dll</li>
<li>regsvr stdprov.dll</li>
<li>regsvr32 vssui.dll</li>
<li>regsvr32 msxml.dll</li>
<li>regsvr32 msxml4.dll</li>
<li>net start swprv</li>
<li>net start vss</li>
</ol>
<p>Re-run your job in Backup Exec 12d and the job should run successful</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://twitter.com/home?status=Exchange%202007%20%26%20Backup%20Exec%2012d%20Failed%20Backups%20-%20http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F" title="Twitter"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F&amp;t=Exchange%202007%20%26%20Backup%20Exec%2012d%20Failed%20Backups" title="Facebook"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F&amp;title=Exchange%202007%20%26%20Backup%20Exec%2012d%20Failed%20Backups&amp;notes=%0D%0A%0D%0AWe%20were%20getting%20failed%20backups%20of%20our%20Exchange%202007%20server%20on%20Symantec%27s%20Backup%20Exec%2012d.%20The%20error%20Backup%20Exec%2012d%20gave%20us%20was%3A%0D%0AV-79-32772-8928%0D%0A-%20AOFO%3A%20Initialization%20failure%20on%3A%20%22Microsoft%20Information%20Store%22.%20Advanced%20Open%20File%20Option%20used%3A%20M" title="del.icio.us"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F&amp;title=Exchange%202007%20%26%20Backup%20Exec%2012d%20Failed%20Backups&amp;bodytext=%0D%0A%0D%0AWe%20were%20getting%20failed%20backups%20of%20our%20Exchange%202007%20server%20on%20Symantec%27s%20Backup%20Exec%2012d.%20The%20error%20Backup%20Exec%2012d%20gave%20us%20was%3A%0D%0AV-79-32772-8928%0D%0A-%20AOFO%3A%20Initialization%20failure%20on%3A%20%22Microsoft%20Information%20Store%22.%20Advanced%20Open%20File%20Option%20used%3A%20M" title="Digg"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F&amp;title=Exchange%202007%20%26%20Backup%20Exec%2012d%20Failed%20Backups&amp;annotation=%0D%0A%0D%0AWe%20were%20getting%20failed%20backups%20of%20our%20Exchange%202007%20server%20on%20Symantec%27s%20Backup%20Exec%2012d.%20The%20error%20Backup%20Exec%2012d%20gave%20us%20was%3A%0D%0AV-79-32772-8928%0D%0A-%20AOFO%3A%20Initialization%20failure%20on%3A%20%22Microsoft%20Information%20Store%22.%20Advanced%20Open%20File%20Option%20used%3A%20M" title="Google Bookmarks"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F&amp;partner=sociable" title="Print"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="mailto:?subject=Exchange%202007%20%26%20Backup%20Exec%2012d%20Failed%20Backups&amp;body=http%3A%2F%2Fwww.thenetworktechnician.com%2F2009%2F06%2Fexchange-2007-backup-exec-12d-failed-backups%2F" title="email"><img src="http://www.thenetworktechnician.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://www.thenetworktechnician.com/2009/05/insufficient-disk-space-e000848f-backup-exec-restore/' rel='bookmark' title='Permanent Link: Insufficient Disk Space &#8211; e000848f &#8211; Backup Exec Restore'>Insufficient Disk Space &#8211; e000848f &#8211; Backup Exec Restore</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/09/exchange-2007-not-receiving-emails-from-a-domain/' rel='bookmark' title='Permanent Link: Exchange 2007 Not Receiving Emails From a Domain'>Exchange 2007 Not Receiving Emails From a Domain</a></li>
<li><a href='http://www.thenetworktechnician.com/2009/07/windows-server-2003-event-id-1030-1058/' rel='bookmark' title='Permanent Link: Windows Server 2003 Event ID 1030 &#038; 1058'>Windows Server 2003 Event ID 1030 &#038; 1058</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thenetworktechnician.com/2009/06/exchange-2007-backup-exec-12d-failed-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
