<?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>IT FastFix Blog</title>
	<atom:link href="http://www.itfastfix.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itfastfix.com</link>
	<description>Helping IT&#039;s What we do!</description>
	<lastBuildDate>Fri, 03 Jun 2011 00:31:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using Telnet to connect to Exchange 2003 POP3 mailboxes and using SMTP to send e-mail for troubleshooting purposes</title>
		<link>http://www.itfastfix.com/2011/05/telnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes/</link>
		<comments>http://www.itfastfix.com/2011/05/telnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes/#comments</comments>
		<pubDate>Fri, 27 May 2011 01:15:50 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Microsoft Exchange]]></category>

		<guid isPermaLink="false">http://www.itfastfix.com/?p=68</guid>
		<description><![CDATA[Telnet to Exchange 2003 POP3 mailboxes and using SMTP to send e-mail for troubleshooting purposes In this article I will give you tips for troubleshooting Exchange 2003 POP3 access and SMTP E-Mail transfer using the good old Telnet client. Why &#8230; <a href="http://www.itfastfix.com/2011/05/telnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Telnet to Exchange 2003 POP3 mailboxes and using SMTP to send e-mail for troubleshooting purposes</h1>
<div>In this article I will give you tips for troubleshooting Exchange 2003  POP3 access and SMTP E-Mail transfer using the good old Telnet client.  Why am I writing an article about POP3 and SMTP troubleshooting with the  help of Telnet? Telnet gives you some powerful information about every  connection step for POP3 or SMTP processes.</div>
<h2>Some basic information about POP3 and SMTP</h2>
<p><strong>POP3</strong></p>
<p>Short for Post Office Protocol, a protocol used to retrieve e-mail  from a mail server. Most e-mail applications (sometimes called an e-mail  client) use the POP protocol, although some can use the newer IMAP  (Internet Message Access Protocol).</p>
<p>There are two versions of POP. The first, called POP2, became a  standard in the mid-80&#8242;s and requires SMTP to send messages. The newer  version, POP3, can be used with or without SMTP.</p>
<p><strong>Source:</strong><em> </em> <a href="http://www.webopedia.com/TERM/P/POP2.html" target="_blank">Here</a></p>
<p>Beginning with Exchange 2003 we have to activate POP3 support after  the Exchange installation, because Microsoft has disabled some services  for security reasons (POP3 communication is unencrypted per Default –  but you can use TLS to ensure security).</p>
<p><strong>SMTP</strong></p>
<p>Short for Simple Mail Transfer Protocol, a protocol for sending  e-mail messages between servers. Most e-mail systems that send mail over  the Internet use SMTP to send messages from one server to another; the  messages can then be retrieved with an e-mail client using either POP or  IMAP. In addition, SMTP is generally used to send messages from a mail  client to a mail server. This is why you need to specify both the POP or  IMAP server and the SMTP server when you configure your e-mail  application.</p>
<p><strong>Source<em>: </em></strong><a href="http://www.webopedia.com/TERM/S/SMTP.html" target="_blank">Here</a></p>
<h2>Let’s begin</h2>
<p><strong>Connecting to POP3</strong></p>
<p>Open Telnet (Start – Run – CMD – Telnet) and write the following line:</p>
<p>TELNET <em>Servername.Domain.TLD </em>110 (in our example TELNET some.domain.com 110).</p>
<blockquote dir="ltr"><p><a href="http://www.itfastfix.com/wp-content/uploads/Figure1.jpg"><img style="margin-left: 0px; margin-right: 0px; border: 0pt none; border: 0px; margin-left: 0px; margin-right: 0px; text-align: bottom;" src="http://www.msexchange.org/img/upl/image0021090238956897.jpg" alt="" width="492" height="211" /></a><br />
<strong>Figure 1:</strong> Connecting to your Exchange Server via POP3</p></blockquote>
<p><span style="text-decoration: underline;">What do we see here?</span></p>
<p>+OK                                             - The Exchange Server accepts Connection to Port 110</p>
<p>Exchange Server 2003 POP3           &#8211; It is a Exchange 2003 Server</p>
<p>Version 6.5.7226.0                             &#8211; The Exchange Version Number</p>
<p>some.domain.com                                &#8211; The FQDN of the Exchange Server</p>
<p>These are some helpful information about our connection.</p>
<p>Let’s go further:</p>
<blockquote dir="ltr"><p><a href="http://www.itfastfix.com/wp-content/uploads/Figure2.jpg"><img style="margin-left: 0px; margin-right: 0px; border: 0pt none; border: 0px; margin-left: 0px; margin-right: 0px; text-align: bottom;" src="http://www.msexchange.org/img/upl/image0041090239819241.jpg" alt="" width="528" height="401" /></a><br />
<strong>Figure 2:</strong> POP3 communication</p></blockquote>
<p><span style="text-decoration: underline;">What do we see here?</span></p>
<p>USER MSEXchangeORG     – The name of the user to connect to the mailbox</p>
<p>PASS Fake001                  – The password of the user (transmitted unencrypted over the network)</p>
<p>LIST                                 – Lists all E-Mails in the mailbox</p>
<p>RETR 1                             – Display the selected E-Mail</p>
<p>A very interesting part is the displayed body of the E-Mail. You can  see the encapsulation of the E-Mail, MIME type, Message ID and much more  helpful information.</p>
<p><strong>POP commands</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="540">
<tbody>
<tr>
<td valign="top" style="width: 72px;">
<p dir="ltr">USER</p>
</td>
<td valign="top" style="width: 468px;">The User you would like to connect to</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">PASS</td>
<td valign="top" style="width: 468px;">The password of the user (transmitted unencrypted over the network)</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">STAT</td>
<td valign="top" style="width: 468px;">Overview over the POP3 mailbox</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">LIST</td>
<td valign="top" style="width: 468px;">Displays every message in listform</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">RETR</td>
<td valign="top" style="width: 468px;">Displays selected message (RETR 1)</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">DELE</td>
<td valign="top" style="width: 468px;">Deletes selected message (DELE 1)</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">NOOP</td>
<td valign="top" style="width: 468px;"><strong>NO</strong> <strong>Op</strong>eration</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">RSET</td>
<td valign="top" style="width: 468px;">Undo DELE function</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">QUIT</td>
<td valign="top" style="width: 468px;">End POP3 Session</td>
</tr>
</tbody>
</table>
<h2>Connecting to SMTP</h2>
<p>Open Telnet (Start – Run – CMD – Telnet) and write the following line:</p>
<p>TELNET <em>Servername.Domain.TLD </em>25 (in our example TELNET some.domain.com 25).</p>
<blockquote dir="ltr">
<p dir="ltr"><strong><a href="http://www.itfastfix.com/wp-content/uploads/Figure3.jpg"><img style="margin-left: 0px; margin-right: 0px; border: 0pt none; border: 0px; margin-left: 0px; margin-right: 0px; text-align: bottom;" src="http://www.msexchange.org/img/upl/image0061090239897132.jpg" alt="" width="528" height="223" /></a><br />
Figure 3: </strong>EHLO commands</p>
</blockquote>
<h2>SMTP supports two verbs: HELO an EHLO</h2>
<p>The HELO or EHLO verbs  in SMTP are how the client identifies itself to the server. Clients that  use single-label domain names, or domain names that the server cannot  look up in the DNS database, are broken or misconfigured.</p>
<p>EHLO is the successor of the HELO verb and supports many more  commands. The supported EHLO verbs are different from Mailserver to  Mailserver. Exchange 2003 supports the EHLO verbs displayed in (Figure  3).</p>
<p>A very important EHLO verb is <em>AUTH. </em>AUTH lists the supported  authentication methods for connecting to the SMTP Server. Exchange 2003  supports GSSAPI, NTLM and LOGIN.</p>
<p>Some ISP SMTP servers doesn’t support AUTH. They use <em>SMTP after POP. </em>SMTP  after POP authenticates a user through a successful POP3 connection and  lets him use the SMTP protocol with the applied credentials through the  POP3 connect.</p>
<p>In our example we use the basic HELO command to connect.</p>
<blockquote dir="ltr"><p><a href="http://www.itfastfix.com/wp-content/uploads/Figure4.jpg"><img style="margin-left: 0px; margin-right: 0px; border: 0pt none; border: 0px; margin-left: 0px; margin-right: 0px; text-align: bottom;" src="http://www.msexchange.org/img/upl/image0081090239920632.jpg" alt="" width="528" height="225" /></a><br />
<strong>Figure 4:</strong> Write a e-mail through telnet</p></blockquote>
<p><span style="text-decoration: underline;">What do we see here?</span></p>
<p>220 some.domain.com            &#8211; the Server listens on the given SMTP port</p>
<p>Microsoft ESMTP Mail Service         - This Server supports Extended SMTP</p>
<p>Version: 6.0.3790.0 ready             - This SMTP Service is hosted by Windows 2003</p>
<p>HELO                                           - Initiates connection (requires domain name by most SMTP</p>
<p>servers)</p>
<p>250 some.domain.com            &#8211; Server accepts connections on IP address 111.111.111.111</p>
<p>MAIL FROM: Name@domain.tld       - The Sender of the Message</p>
<p>RCPT TO: Name@domain.tld          - The Reciepient of the Message</p>
<p>DATA:                                          &#8211; Input e-mail data for subject and body</p>
<p>SUBJECT:                                     - the subject line of the message</p>
<p>Enter the data for the message body. At the end of the message click &lt;CRLF&gt; “.” &lt;CRLF&gt;</p>
<p>The message will be transmitted through the destination address through exchange.</p>
<p><strong>SMTP commands</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="552">
<tbody>
<tr>
<td valign="top" style="width: 72px;">HELO</td>
<td valign="top" style="width: 480px;">Identifies the Client</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">MAIL</td>
<td valign="top" style="width: 480px;">Specifies Mail Sender</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">RCPT</td>
<td valign="top" style="width: 480px;">The Reciepient of the message</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">DATA</td>
<td valign="top" style="width: 480px;">The Data part of the message</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">RSET</td>
<td valign="top" style="width: 480px;">Resets message transmiting</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">VRFY</td>
<td valign="top" style="width: 480px;">Verifies e-mail address</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">EXPN</td>
<td valign="top" style="width: 480px;">Expand a mailing list</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">DSN</td>
<td valign="top" style="width: 480px;">Delivery Status Notification</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">HELP</td>
<td valign="top" style="width: 480px;">Displays help</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">NOOP</td>
<td valign="top" style="width: 480px;"><strong>NO</strong> <strong>Op</strong>eration</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">TURN</td>
<td valign="top" style="width: 480px;">Mail TURN</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">ETRN</td>
<td valign="top" style="width: 480px;">Extended TURN</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">VERB</td>
<td valign="top" style="width: 480px;">Verbose Mode</td>
</tr>
<tr>
<td valign="top" style="width: 72px;">QUIT</td>
<td valign="top" style="width: 480px;">End SMTP Session</td>
</tr>
</tbody>
</table>
<h2 dir="ltr">Conclusion</h2>
<div>
<p>Connecting to POP3 Mailboxes and sending E-Mails through SMTP with  the help of Telnet will give you a good understanding about the  functions of these processes. I like Telnet to troubleshoot POP3 and  SMTP issues.</p>
</div>
<p><strong>Related Links</strong></p>
<p>POP3 RFC<br />
<a href="http://www.faqs.org/rfcs/rfc1939.html">Here</a></p>
<p>SMTP RFC<br />
<a href="http://www.faqs.org/rfcs/rfc821.html" target="_blank">Here</a></p>
<p>Administering POP3/SMTP/IMAP<br />
<a href="http://www.microsoft.com/technet/prodtechnol/exchange/2000/maintain/13x2kada.mspx">Here</a></p>
<p>&nbsp;</p>
<p><strong>Articles Original Posted by: </strong><a href="http://www.msexchange.org/tutorials/Telnet-Exchange2003-POP3-SMTP-Troubleshooting.html" target="_blank">Here</a></p>
<ul>
<li>Published: 	<strong>Jul 29, 2004 </strong></li>
<li>Updated: 	<strong>Jul 29, 2004 </strong></li>
<li>Author:            <strong>Marc Grote</strong></li>
</ul>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;count=none&amp;text=Using%20Telnet%20to%20connect%20to%20Exchange%202003%20POP3%20mailboxes%20and%20using%20SMTP%20to%20send%20e-mail%20for%20troubleshooting%20purposes" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;count=none&amp;text=Using%20Telnet%20to%20connect%20to%20Exchange%202003%20POP3%20mailboxes%20and%20using%20SMTP%20to%20send%20e-mail%20for%20troubleshooting%20purposes" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Ftelnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes%2F&amp;title=Using%20Telnet%20to%20connect%20to%20Exchange%202003%20POP3%20mailboxes%20and%20using%20SMTP%20to%20send%20e-mail%20for%20troubleshooting%20purposes" id="wpa2a_2">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/05/telnet-connect-exchange-2003-pop3-mailboxes-smtp-send-e-mail-troubleshooting-purposes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Someone keeps using my exchange server</title>
		<link>http://www.itfastfix.com/2011/05/exchange-server/</link>
		<comments>http://www.itfastfix.com/2011/05/exchange-server/#comments</comments>
		<pubDate>Fri, 27 May 2011 01:09:27 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Microsoft Exchange]]></category>

		<guid isPermaLink="false">http://www.itfastfix.com/?p=63</guid>
		<description><![CDATA[The queue keeps filling up. 2k messages in 2hrs. I have enabled message filtering and check there is no relay. I tested using one of the microsoft articles and I don&#8217;t get 550 5.7.1 Unable to relay for user@spam.com -or- &#8230; <a href="http://www.itfastfix.com/2011/05/exchange-server/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The queue keeps filling up. 2k messages in 2hrs. I have enabled message<br />
filtering and check there is no relay. I tested using one of the microsoft articles<br />
and I don&#8217;t get 550 5.7.1 Unable to relay for user@spam.com -or- 250 2.1.5 user@spam.com<br />
I get unrecognized email address.</p>
<p>I created a forward mail to (111.111.111.111) to try and stop the messages so i can clear it but they keep coming.</p>
<p>I am trying to use this <a title="Microsoft Support Site" href="http://support.microsoft.com/kb/324958" target="_blank">http://support.microsoft.com/kb/324958</a><br />
but the queue never stops filling up.<br />
Right-click Small-business SMTP Connector, and then click Properties. If you<br />
have more than one SMTP Connector, the one that you want to work with in the<br />
following steps is the one that contains the &#8220;*&#8221; (asterisk) for the SMTP<br />
address on the Address Space tab.<br />
3. Click the General tab. Make a note of all the settings on this tab. You<br />
have to return these settings later in this article.<br />
4. Click Forward all mail through this connector to the following smart<br />
hosts.<br />
5. In the field provided, type a false IP address and enclose it in<br />
brackets. For example, type [111.111.111.111].<br />
6. Click the Deliver Options tab .<br />
7. Click Specify when messages are sent through this connector.</p>
<p>I checked these settings and they are correct.</p>
<p>Verify that your Exchange computer is not an open mail relay. To do this,<br />
follow these steps:</p>
<p>a. Click Start, point to Programs, point to Microsoft<br />
Exchange, and then click System Manager.<br />
b. In Exchange System Manager, expand the following object:<br />
ServersYour_Exchange_Server_NameProtocolsSMTP<br />
c. Right-click the virtual SMTP server where you want to prevent mail<br />
relay, and then click Properties.<br />
d. Click the Access tab, and then click Relay.<br />
e. By default, open relay is blocked. The default settings are as follows:<br />
? The Only the list below check box is selected.<br />
? The Allow all computers which successfully authenticate to relay,<br />
regardless of the list above check box is selected.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;count=none&amp;text=Someone%20keeps%20using%20my%20exchange%20server" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;count=none&amp;text=Someone%20keeps%20using%20my%20exchange%20server" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F05%2Fexchange-server%2F&amp;title=Someone%20keeps%20using%20my%20exchange%20server" id="wpa2a_4">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/05/exchange-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove virus from PC:</title>
		<link>http://www.itfastfix.com/2011/02/remove-virus-pc/</link>
		<comments>http://www.itfastfix.com/2011/02/remove-virus-pc/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 10:25:18 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Windows OS]]></category>

		<guid isPermaLink="false">http://www.itfastfix.com/?p=53</guid>
		<description><![CDATA[Problem: Everything is running slow. Random pop up when opening browser. Pop up in Task bar saying you need to purchase anti-virus because you have so many virus. Solution: Reboot machine into safe mode Restore system if you have it &#8230; <a href="http://www.itfastfix.com/2011/02/remove-virus-pc/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<ul>
<li>Everything is running slow.</li>
<li>Random pop up when opening browser.</li>
<li>Pop up in Task bar saying you need to purchase anti-virus because you have so many virus.</li>
</ul>
<p><strong>Solution:</strong></p>
<ol>
<li>Reboot machine into safe mode</li>
<li>Restore system if you have it ON</li>
<li>download three or four anti spy-ware software like: Spybot/Malwarebites/Ad-Aware AE/Webroot Spy Sweeper</li>
<li>Run each spy-ware software in Safe Mode with network.</li>
<li>Important to remember when you do the scans and it finds the malware on the machine you need to locate it and make sure everything is deleted.</li>
<li>After all scans are done and you have located and deleted run MSCONFIG</li>
<li>And make sure there is no Service or command line to restart the spy-ware from running.</li>
</ol>
<p>Once these steps are done, You are Ready to reboot and run your PC again.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;count=none&amp;text=How%20to%20remove%20virus%20from%20PC%3A" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;count=none&amp;text=How%20to%20remove%20virus%20from%20PC%3A" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fremove-virus-pc%2F&amp;title=How%20to%20remove%20virus%20from%20PC%3A" id="wpa2a_6">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/02/remove-virus-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>outgoing email not working using Exchange 2000/2003/2007</title>
		<link>http://www.itfastfix.com/2011/02/outgoing-email-working-exchange-200020032007/</link>
		<comments>http://www.itfastfix.com/2011/02/outgoing-email-working-exchange-200020032007/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 10:01:05 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Microsoft Exchange]]></category>

		<guid isPermaLink="false">http://www.itfastfix.com/?p=47</guid>
		<description><![CDATA[Problem: Outgoing emails not sending. Solution: Changing the SMTP settings from (mail.yourdomain.com) to (Your provider) Having problem sending using mail.yourdomain.com. Suggested that if for some reason it stops working you should call Hosting Company to tell them that you can&#8217;t &#8230; <a href="http://www.itfastfix.com/2011/02/outgoing-email-working-exchange-200020032007/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>Outgoing emails not sending.</p>
<p><strong>Solution:</strong></p>
<p>Changing the SMTP settings from (mail.yourdomain.com) to<br />
(Your provider) Having problem sending using<br />
mail.yourdomain.com.<br />
Suggested that if for some reason it stops working you<br />
should call Hosting Company to tell them that you can&#8217;t<br />
connect to send email using there SMTP server.<br />
(There is a few reason why it would have stopped.<br />
Your server is sending spam if infected by virus. Someone<br />
is using your server for sending emails if you have not locked it down.)</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;count=none&amp;text=outgoing%20email%20not%20working%20using%20Exchange%202000%2F2003%2F2007" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;count=none&amp;text=outgoing%20email%20not%20working%20using%20Exchange%202000%2F2003%2F2007" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Foutgoing-email-working-exchange-200020032007%2F&amp;title=outgoing%20email%20not%20working%20using%20Exchange%202000%2F2003%2F2007" id="wpa2a_8">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/02/outgoing-email-working-exchange-200020032007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving (IMAP) mDaemon to Cloud Exchange.</title>
		<link>http://www.itfastfix.com/2011/02/moving-imap-mdaemon-cloud-exchange/</link>
		<comments>http://www.itfastfix.com/2011/02/moving-imap-mdaemon-cloud-exchange/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 18:13:37 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Cloud Exchange]]></category>

		<guid isPermaLink="false">http://www.itfastfix.com/?p=40</guid>
		<description><![CDATA[Problems: 1. When creating PST file from your outlook some emails might not Export to PST file (some could be missing). 2. Depending on the size of PST file it will take a very long time to sync so you &#8230; <a href="http://www.itfastfix.com/2011/02/moving-imap-mdaemon-cloud-exchange/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Problems:</strong></p>
<ul>
<li>1.   When creating PST file from your outlook some emails might not Export to PST file (some could be missing).<br />
2.   Depending on the size of PST file it will take a very long time to sync so you will not see all the emails until it fully snyc (when it does you will be able to see all online in OWA site)<br />
3.   Make backup before doing anything which will cause you losing any data.</li>
</ul>
<p><strong>Solution:</strong></p>
<ul>
<li>1.   Best option here is to Export folder by folder. (which I ended up doing)<br />
2.   Best thing to do is just leave it online until it fully sync.<br />
3.   Copy the files to external hard drive, or even keep the mDaemon in network but offline. (just in case)</li>
</ul>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;count=none&amp;text=Moving%20%28IMAP%29%20mDaemon%20to%20Cloud%20Exchange." scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;count=none&amp;text=Moving%20%28IMAP%29%20mDaemon%20to%20Cloud%20Exchange." scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F02%2Fmoving-imap-mdaemon-cloud-exchange%2F&amp;title=Moving%20%28IMAP%29%20mDaemon%20to%20Cloud%20Exchange." id="wpa2a_10">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/02/moving-imap-mdaemon-cloud-exchange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Exchange Stores to a Different Disk</title>
		<link>http://www.itfastfix.com/2011/01/moving-exchange-stores-disk/</link>
		<comments>http://www.itfastfix.com/2011/01/moving-exchange-stores-disk/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 10:49:48 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Microsoft Exchange]]></category>

		<guid isPermaLink="false">http://www.itfastfix.com/?p=27</guid>
		<description><![CDATA[How to move Exchange databases and logs in Exchange Server 2003 View products that this article applies to. For a Microsoft Exchange 2000 version of this article, see 257184 (http://support.microsoft.com/kb/257184/EN-US/ ) . SUMMARY Exchange Server 2003 does not include the &#8230; <a href="http://www.itfastfix.com/2011/01/moving-exchange-stores-disk/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>How to move Exchange databases and logs in Exchange Server 2003</strong><br />
View products that this article applies to.<br />
For a Microsoft Exchange 2000 version of this article, see 257184  (<a href="http://support.microsoft.com/kb/257184/EN-US/">http://support.microsoft.com/kb/257184/EN-US/</a> ) .<br />
<br /><br /><br />
<strong>SUMMARY</strong></p>
<p>Exchange Server 2003 does not include the Performance Optimizer program (Perfwiz.exe) that is included with previous versions of Exchange Server.<br />
This article describes how to move log files or database files in Exchange Server 2003.<br />
<br /><br /></p>
<p><strong>MORE INFORMATION</strong><br /><br />
If you want to move log files or database files to another drive, use the following procedures.<br />
Back to the top<br />
To move log files</p>
<p>1. Start Exchange System Manager.<br />
2. Click Administrative Groups.</p>
<p>Note If Administrative Groups does not appear, it may not be turned on.<br />
To turn on Administrative Groups, right-click Exchange Organization in Exchange System Manager,<br />
and then click Properties. Click to select the Display Administrative Groups check box.<br />
3. Locate the storage group where you want to change log file paths,<br />
right-click the storage group, and then click Properties.<br />
4. Click the General tab, click the Browse button next to the Transaction log location box,<br />
and then specify the new drive or folder location for the log files.<br />
<br /><br /><br />
<strong>To move databases</strong><br /></p>
<p>1. Start Exchange System Manager.<br />
2. Open the administrative group that contains the database that you want to change.<br />
3. Under Storage Group, right-click the mailbox store or the public folder store that you want to change, and then click Properties.<br />
4. Click the Database tab.<br />
5. Next to the database that you want to change, click Browse, and then specify a new drive or folder location for the files.<br />
<br /><br /><br />
<strong>Notes</strong><br /><br />
* With the databases, you can decide to move the Exchange Database (.edb file), the Exchange Streaming Database (.stm file), or both.<br />
* If the databases are still mounted, you receive the following message:<br />
You are about to perform the following operation(s):<br />
- change Exchange database location<br />
To perform the requested operation(s), the store must be temporarily dismounted which will make it inaccessible to any user.</p>
<p>Do you want to continue?<br />
Click Yes to dismount the database automatically and move the location.<br />
6. When you finish moving the databases, remount the databases manually.</p>
<p>You can move the log files and database files to any folder that you want to create. When you move logs and database files, you may want to create the Exchsrvr\Mdbdata file structure for consistency reasons, but you are not obligated to do so.</p>
<p>You must grant the following default permissions to the new Mdbdata folder that contains the log files and database files:</p>
<p>* Administrators: Full Control<br />
* Authenticated Users: Read and Execute, List Folder Contents, Read<br />
* Creator Owner: None<br />
* Server Operators: Modify, Read and Execute, List Folder Contents, Read, Write<br />
* System: Full Control</p>
<p>Note Only assign permissions to the Server Operators group if the Exchange server is a domain controller. Otherwise, assign permissions to the Power Users group. Only domain controllers should have permissions to the built-in Server Operators group. Stand-alone and member servers should have permissions to the built-in Power Users group.</p>
<p>You may also have to grant the following permissions to the root drive that contains the new Mdbdata folder:</p>
<p>* System: Full Control</p>
<p>During the process of moving log files and database files, your store is temporarily dismounted. Because the store is temporarily dismounted, it is inaccessible to your users until the process is completed. Moving log files or database files invalidates all existing incremental and differential backups; therefore, make a full backup after these changes.</p>
<p>Do not delete or rename the Old MDBdata Folder path after you move the Exchange database. If you want to delete the old MDBdata folder, make sure that the following working directory parameter in the registry points to the new location:<br />
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem<br />
Value name: Working Directory<br />
Value type: REG_SZ<br />
Value data: C:\Program Files\Exchsrvr\Mdbdata<br />
For more information, click the following article number to view the article in the Microsoft Knowledge Base:<br />
298415  (<a href="http://support.microsoft.com/kb/298415/">http://support.microsoft.com/kb/298415/</a> ) Messages that have attachments are not delivered as expected, and Event ID 12003 and 327 messages are logged in Exchange 2000 Server and in Exchange Server 2003</p>
<p>Do not move databases to the root of a drive. Instead, move databases at least one subfolder down from the root drive. For example, do not use C:\ as the path of the database or log files. Instead, you could use the C:\Subfolder path. In an organization that uses Exchange 2003 and Exchange 2007, the 2007 management tools will flag database or log files that are the root of a drive as an error. For more information, visit the following Microsoft Web site:<br />
<a href="http://technet.microsoft.com/en-us/library/cc411334(EXCHG.80).aspx">http://technet.microsoft.com/en-us/library/cc411334(EXCHG.80).aspx</a></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;count=none&amp;text=Moving%20Exchange%20Stores%20to%20a%20Different%20Disk" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;count=none&amp;text=Moving%20Exchange%20Stores%20to%20a%20Different%20Disk" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmoving-exchange-stores-disk%2F&amp;title=Moving%20Exchange%20Stores%20to%20a%20Different%20Disk" id="wpa2a_12">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/01/moving-exchange-stores-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell Poweredge SC440 &#8211; Beeping sound</title>
		<link>http://www.itfastfix.com/2011/01/dell-poweredge-sc440-beeping-sound/</link>
		<comments>http://www.itfastfix.com/2011/01/dell-poweredge-sc440-beeping-sound/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:12:03 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://itfastfix.com/?p=15</guid>
		<description><![CDATA[Problem: Just keeps beeping for no reason no errors popping up Solve: Check to see if you have the dyndns service installed under your services. If you do, disable it and see if the beep goes away. If it does, &#8230; <a href="http://www.itfastfix.com/2011/01/dell-poweredge-sc440-beeping-sound/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Problem:</p>
<p>Just keeps beeping for no reason no errors popping up</p>
<p>Solve:</p>
<p>Check to see if you have the dyndns service installed under your services. If you do, disable it and see if the beep goes away. If it does, then check with that software vendor.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;count=none&amp;text=Dell%20Poweredge%20SC440%20%26%238211%3B%20Beeping%20sound" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;count=none&amp;text=Dell%20Poweredge%20SC440%20%26%238211%3B%20Beeping%20sound" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fdell-poweredge-sc440-beeping-sound%2F&amp;title=Dell%20Poweredge%20SC440%20%26%238211%3B%20Beeping%20sound" id="wpa2a_14">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/01/dell-poweredge-sc440-beeping-sound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Event ID: 2250</title>
		<link>http://www.itfastfix.com/2011/01/event-id-2250/</link>
		<comments>http://www.itfastfix.com/2011/01/event-id-2250/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:10:25 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Event ID:]]></category>

		<guid isPermaLink="false">http://itfastfix.com/?p=12</guid>
		<description><![CDATA[Workstation service error 2250 in Microsoft XP Professional Symptoms: Will be able to connect to the INTERNET fine Will not be able to connect to Shared folders from Server on the Domain. Will not be able to change Domain Name &#8230; <a href="http://www.itfastfix.com/2011/01/event-id-2250/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Workstation service error 2250 in Microsoft XP Professional<br />
Symptoms:</p>
<p>Will be able to connect to the INTERNET fine<br />
Will not be able to connect to Shared folders from Server on the Domain.<br />
Will not be able to change Domain Name on PC it will be grayed out.<br />
Solving Problem:</p>
<p>Try running the network setup wizard first it might activate or install any missing services or files.<br />
Still not working? Try importing backup of your Regedit Key.</p>
<p>If its still not working it might be because 1 or more of the files needed are missing or corrupt. Search your computer for “wkssvc.dll” to see if it exists.</p>
<p>Try, extracting it from the cd using SFC. Path should be c:\windows\system32.</p>
<p>If it still doesn’t work try running SFC /scannow</p>
<p>This will take a long time to check all system files.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;count=none&amp;text=Event%20ID%3A%202250" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;count=none&amp;text=Event%20ID%3A%202250" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fevent-id-2250%2F&amp;title=Event%20ID%3A%202250" id="wpa2a_16">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/01/event-id-2250/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Exchange 2007 Information Mailbox Store service (Stopped) not working</title>
		<link>http://www.itfastfix.com/2011/01/microsoft-exchange-2007-information-mailbox-store-service-stopped-working/</link>
		<comments>http://www.itfastfix.com/2011/01/microsoft-exchange-2007-information-mailbox-store-service-stopped-working/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:08:01 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Microsoft Exchange]]></category>

		<guid isPermaLink="false">http://itfastfix.com/?p=10</guid>
		<description><![CDATA[MS SBS 2008 &#38; MS Exchange Server 2007: Microsoft Exchange Information Store service stopped working and will not start working. I tried to restart the Exchange Information store it would load half way then i would get an error 0 &#8230; <a href="http://www.itfastfix.com/2011/01/microsoft-exchange-2007-information-mailbox-store-service-stopped-working/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>MS SBS 2008 &amp; MS Exchange Server 2007:</p>
<p>Microsoft Exchange Information Store service stopped working and will not start working.<br />
I tried to restart the Exchange Information store it would load half way then i would get an error 0</p>
<p>So how did i fix this problem !</p>
<p>I found that my NIC card was using IPv4 and i remember that both IPv4 and IPv6 where running when i installed SBS 2008 server<br />
When I clicked on IPv6 to activite it and click apply and went to the Service Panel to Start the Exchnage Information Store it worked.</p>
<p>Hope this help !</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;count=none&amp;text=Microsoft%20Exchange%202007%20Information%20Mailbox%20Store%20service%20%28Stopped%29%20not%20working" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;count=none&amp;text=Microsoft%20Exchange%202007%20Information%20Mailbox%20Store%20service%20%28Stopped%29%20not%20working" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmicrosoft-exchange-2007-information-mailbox-store-service-stopped-working%2F&amp;title=Microsoft%20Exchange%202007%20Information%20Mailbox%20Store%20service%20%28Stopped%29%20not%20working" id="wpa2a_18">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/01/microsoft-exchange-2007-information-mailbox-store-service-stopped-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapped Drive Connection to Network Share May Be Lost</title>
		<link>http://www.itfastfix.com/2011/01/mapped-drive-connection-network-share-lost/</link>
		<comments>http://www.itfastfix.com/2011/01/mapped-drive-connection-network-share-lost/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:05:16 +0000</pubDate>
		<dc:creator>Paudge</dc:creator>
				<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://itfastfix.com/?p=8</guid>
		<description><![CDATA[SYMPTOMS On a computer that runs one of the versions of Windows that is listed at the beg…On a computer that runs one of the versions of Windows that is listed at the beginning of this article, if you map &#8230; <a href="http://www.itfastfix.com/2011/01/mapped-drive-connection-network-share-lost/">Read the rest of this entry <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3><strong>SYMPTOMS</strong></h3>
<p>On a computer that runs one of the versions of Windows that is listed at the beg…On a computer that runs one of the versions of Windows that is listed at the beginning of this article, if you map a drive to a network share, the mapped drive may be disconnected after a regular interval of inactivity, and Windows Explorer may display a red “X” on the icon of the mapped drive. However, if you try to access or browse the mapped drive, it reconnects quickly. This behavior occurs if the network share computer runs Microsoft Windows NT 4.0, Windows 2000, or Windows Server 2003.</p>
<h3><strong>CAUSE</strong></h3>
<p>This behavior occurs because Windows NT Server 4.0, Windows 2000 Server, and Win…This behavior occurs because Windows NT Server 4.0, Windows 2000 Server, and Windows Server 2003 can drop idle connections after a specified time-out period (by default, 15 minutes) to prevent wasting server resources on unused sessions. The connection can be re-established very quickly, if required.</p>
<h3><strong>RESOLUTION</strong></h3>
<p>To resolve this behavior, change the default time-out period on the shared netwo…To resolve this behavior, change the default time-out period on the shared network computer. To do this, use one of the following methods.</p>
<p><strong>NOTE:</strong><br />
You cannot change the default time-out period for Microsoft Windows 95-based computers and Microsoft Windows 98-based computers that have shared resources.<br />
Back to the top<br />
Registry Editor</p>
<h3><strong>NOTE:</strong></h3>
<p>You cannot use this method to turn off the autodisconnect feature of the Server service. You can only use this method to change the default time-out period for the autodisconnect feature. WARNING: If you use Registry Editor incorrectly, you may cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that you can solve problems that result from using Registry Editor incorrectly. Use Registry Editor at your own risk.</p>
<p>Use Registry Editor to increase the default time-out period. To do this, follow these steps, and then quit Registry Editor:<br />
Click Start, click Run, type regedit (Windows 2000 or Windows Server 2003) or type regedt32 (Windows NT 4.0), and then click OK.<br />
Locate and then click the following key in the registry:<br />
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters</p>
<p>NOTE:<br />
The client side session is automatically disconnected when the idling time lasts more than the duration that is set in KeepConn. For this reason, the session is disconnected according to the less set duration value between AutoDisConnect and KeepConn. To modify the timeout duration in the client side during a UNC connection, specify the arbitrary time in KeepConn from registry value.<br />
Locate and then click the following key in the registry:<br />
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Service\lanmanworkstation\parameters<br />
Value: KeepConn<br />
Data type : REG_DWORD<br />
Range : 1 to 65535 (sec)<br />
Default value: 600 sec = 10 mins</p>
<p>In the right pane, click the autodisconnect value, and then on the Edit menu, click Modify. If the autodisconnect value does not exist, follow these steps:<br />
On the Edit menu, point to New, and then click REG_DWORD.<br />
Type autodisconnect, and then press ENTER.<br />
On the Edit menu, click Modify.<br />
Click Hexadecimal.<br />
In the Value data box, type ffffffff, and then click OK.</p>
<p>Command Line</p>
<p><strong>NOTE:</strong> If you use this method, you may turn off the autotuning feature for the Server service.</p>
<p>To change the default time-out period for the autodisconnect feature of the Server service, open a command prompt, type the following line, and then press ENTER<br />
net config server /autodisconnect:number<br />
where number is the number of minutes that you want the server to wait before it disconnects a mapped network drive. The maximum value for this command is 65,535.</p>
<p><strong>NOTE:</strong> If you set the autodisconnect value to 0 (zero), the autodisconnect feature is not turned off, and the Server service disconnects mapped network drives after only a few seconds of idle time.</p>
<p>To turn off the autodisconnect feature, open a command prompt, type the following line, and then press ENTER:<br />
net config server /autodisconnect:-1</p>
<p>﻿</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;count=none&amp;text=Mapped%20Drive%20Connection%20to%20Network%20Share%20May%20Be%20Lost" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;counturl=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;count=none&amp;text=Mapped%20Drive%20Connection%20to%20Network%20Share%20May%20Be%20Lost" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfastfix.com%2F2011%2F01%2Fmapped-drive-connection-network-share-lost%2F&amp;title=Mapped%20Drive%20Connection%20to%20Network%20Share%20May%20Be%20Lost" id="wpa2a_20">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.itfastfix.com/2011/01/mapped-drive-connection-network-share-lost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

