<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for SearchMarked.com</title>
	<atom:link href="http://www.searchmarked.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.searchmarked.com</link>
	<description>I search, I bookmark, I write, You learn.</description>
	<lastBuildDate>Mon, 08 Mar 2010 10:20:09 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on How to get past the &#8220;please insert the disc labeled &#8216;Ubuntu 7.10 _Gutsy Gibbon&#8217;&#8221; error by s810011</title>
		<link>http://www.searchmarked.com/ubuntu/how-to-get-past-the-please-insert-the-disc-labeled-ubuntu-710-_gutsy-gibbon-error.php/comment-page-1#comment-1228</link>
		<dc:creator>s810011</dc:creator>
		<pubDate>Mon, 08 Mar 2010 10:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/ubuntu/how-to-get-past-the-please-insert-the-disc-labeled-ubuntu-710-_gutsy-gibbon-error.php#comment-1228</guid>
		<description>Thank you so much!!</description>
		<content:encoded><![CDATA[<p>Thank you so much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get past the `require&#8217;: no such file to load &#8212; mkmf (LoadError) when installing the &#8220;mysql&#8221; gem by Johan Hernandez</title>
		<link>http://www.searchmarked.com/ubuntu/how-to-get-past-the-require-no-such-file-to-load-mkmf-loaderror-when-installing-the-mysql-gem.php/comment-page-1#comment-1227</link>
		<dc:creator>Johan Hernandez</dc:creator>
		<pubDate>Thu, 04 Mar 2010 16:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/uncategorized/how-to-get-past-the-require-no-such-file-to-load-mkmf-loaderror-when-installing-the-mysql-gem.php#comment-1227</guid>
		<description>You may sometimes found some errors compiling, install the package  &#039;libmysqlclient&#039; too(Ubuntu 10.04)
Great info, thanks.</description>
		<content:encoded><![CDATA[<p>You may sometimes found some errors compiling, install the package  &#8216;libmysqlclient&#8217; too(Ubuntu 10.04)<br />
Great info, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to work around the Warning: cannot yet handle MBCS in html_entity_decode()! error with WP-Postviews by Arun</title>
		<link>http://www.searchmarked.com/wordpress/how-to-work-around-the-warning-cannot-yet-handle-mbcs-in-html_entity_decode-error-with-wp-postviews.php/comment-page-1#comment-1225</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Tue, 23 Feb 2010 15:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/?p=75#comment-1225</guid>
		<description>Wow thanks u so much it work perfectly...</description>
		<content:encoded><![CDATA[<p>Wow thanks u so much it work perfectly&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to send an email using a Windows Powershell script by mihir</title>
		<link>http://www.searchmarked.com/windows/how-to-send-an-email-using-a-windows-powershell-script.php/comment-page-1#comment-1224</link>
		<dc:creator>mihir</dc:creator>
		<pubDate>Tue, 23 Feb 2010 14:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/windows/how-to-send-an-email-using-a-windows-powershell-script.php#comment-1224</guid>
		<description>i am getting following email
exception calling &quot;send&quot; with &quot;4&quot; argument(s): &quot;Mailbox unavailable.The server response was:5.0.0 access denied&quot;.

This account is working fine in sql server but i am getting this error in powershell</description>
		<content:encoded><![CDATA[<p>i am getting following email<br />
exception calling &#8220;send&#8221; with &#8220;4&#8243; argument(s): &#8220;Mailbox unavailable.The server response was:5.0.0 access denied&#8221;.</p>
<p>This account is working fine in sql server but i am getting this error in powershell</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to send an email using a Windows Powershell script by Igor</title>
		<link>http://www.searchmarked.com/windows/how-to-send-an-email-using-a-windows-powershell-script.php/comment-page-1#comment-1223</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Mon, 22 Feb 2010 19:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/windows/how-to-send-an-email-using-a-windows-powershell-script.php#comment-1223</guid>
		<description>I am having some trouble. 
Here is my code. I have edited out the domains of course and I am usign 2 variables.

$args[0] = $site
$args[1] = $site2

$emailFrom = &quot;user@domain.com&quot;
$emailTo = &quot;user2@domain.com&quot;
$subject = &quot;The $site has been deployed&quot;
$body = &quot;The $site has been deployed &quot;
$smtpServer = &quot;smtp.domain.com&quot;
$smtp = new-object Net.Mail.SmtpClient($smtpServer)


I execute it with the following error:
PS O:\Test&gt; .\email.ps1 test test
Exception calling &quot;Send&quot; with &quot;4&quot; argument(s): &quot;The SMTP server requires a secure connection or the client was not auth
enticated. The server response was: 5.7.1 Client was not authenticated&quot;
At O:\Test\email.ps1:10 char:11
+ $smtp.Send( &lt;&lt;&lt;&lt; $emailFrom, $emailTo, $subject, $body)
$smtp.Send($emailFrom, $emailTo, $subject, $body)</description>
		<content:encoded><![CDATA[<p>I am having some trouble.<br />
Here is my code. I have edited out the domains of course and I am usign 2 variables.</p>
<p>$args[0] = $site<br />
$args[1] = $site2</p>
<p>$emailFrom = &#8220;user@domain.com&#8221;<br />
$emailTo = &#8220;user2@domain.com&#8221;<br />
$subject = &#8220;The $site has been deployed&#8221;<br />
$body = &#8220;The $site has been deployed &#8221;<br />
$smtpServer = &#8220;smtp.domain.com&#8221;<br />
$smtp = new-object Net.Mail.SmtpClient($smtpServer)</p>
<p>I execute it with the following error:<br />
PS O:\Test&gt; .\email.ps1 test test<br />
Exception calling &#8220;Send&#8221; with &#8220;4&#8243; argument(s): &#8220;The SMTP server requires a secure connection or the client was not auth<br />
enticated. The server response was: 5.7.1 Client was not authenticated&#8221;<br />
At O:\Test\email.ps1:10 char:11<br />
+ $smtp.Send( &lt;&lt;&lt;&lt; $emailFrom, $emailTo, $subject, $body)<br />
$smtp.Send($emailFrom, $emailTo, $subject, $body)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to convert from base-10 (decimal) to any other base by elaine</title>
		<link>http://www.searchmarked.com/math/how-to-convert-from-base-10-decimal-to-any-other-base.php/comment-page-1#comment-1222</link>
		<dc:creator>elaine</dc:creator>
		<pubDate>Fri, 12 Feb 2010 07:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/math/how-to-convert-from-base-10-decimal-to-any-other-base.php#comment-1222</guid>
		<description>Thank you for such a fine explanation of how to do this problem. I have been working on it for 3 days and finally have a clear understanding and feel ready for the test.</description>
		<content:encoded><![CDATA[<p>Thank you for such a fine explanation of how to do this problem. I have been working on it for 3 days and finally have a clear understanding and feel ready for the test.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to deal with &#8220;Login Failure: the target account name is incorrect&#8221; on a Windows file share by Narayan</title>
		<link>http://www.searchmarked.com/windows/how-to-deal-with-login-failure-the-target-account-name-is-incorrect-on-a-windows-file-share.php/comment-page-1#comment-1221</link>
		<dc:creator>Narayan</dc:creator>
		<pubDate>Thu, 11 Feb 2010 06:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/windows/how-to-deal-with-login-failure-the-target-account-name-is-incorrect-on-a-windows-file-share.php#comment-1221</guid>
		<description>Hi,

I faced same issue, but on a VM.
I have created a snapshot on Win 2k3 vm and tried to use the snapshot after 2 months. 
My snapshot has a setup of web application so when ever I try to use it, I got &quot;No authority could be contacted xxx &quot; message on browser and Login Failue if i try to access the HDD of the VM.

Fix:

My network admin said that, if snapshot is of 1 month old and we revert back to it then the VM is automatically kicked out of domain and we need to add it back again.

Regards,
Narayan</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I faced same issue, but on a VM.<br />
I have created a snapshot on Win 2k3 vm and tried to use the snapshot after 2 months.<br />
My snapshot has a setup of web application so when ever I try to use it, I got &#8220;No authority could be contacted xxx &#8221; message on browser and Login Failue if i try to access the HDD of the VM.</p>
<p>Fix:</p>
<p>My network admin said that, if snapshot is of 1 month old and we revert back to it then the VM is automatically kicked out of domain and we need to add it back again.</p>
<p>Regards,<br />
Narayan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to send an email using a Windows Powershell script by Mi.Ke.</title>
		<link>http://www.searchmarked.com/windows/how-to-send-an-email-using-a-windows-powershell-script.php/comment-page-1#comment-1220</link>
		<dc:creator>Mi.Ke.</dc:creator>
		<pubDate>Tue, 09 Feb 2010 06:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/windows/how-to-send-an-email-using-a-windows-powershell-script.php#comment-1220</guid>
		<description>Hi Harley,

I want to use this code to send a mail after a 
GET-USER -Filter .... &#124; MOVE-MAILBOX .....
Every User should receive a mail at to be informed that his mailbox has been transferred to the new server (f.i. from 2003 --&gt; 2007)

Any idea how to get this work ?

Thx - Regards Mi.Ke.</description>
		<content:encoded><![CDATA[<p>Hi Harley,</p>
<p>I want to use this code to send a mail after a<br />
GET-USER -Filter &#8230;. | MOVE-MAILBOX &#8230;..<br />
Every User should receive a mail at to be informed that his mailbox has been transferred to the new server (f.i. from 2003 &#8211;&gt; 2007)</p>
<p>Any idea how to get this work ?</p>
<p>Thx &#8211; Regards Mi.Ke.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to work around the Warning: cannot yet handle MBCS in html_entity_decode()! error with WP-Postviews by Muhammad Fahd</title>
		<link>http://www.searchmarked.com/wordpress/how-to-work-around-the-warning-cannot-yet-handle-mbcs-in-html_entity_decode-error-with-wp-postviews.php/comment-page-1#comment-1219</link>
		<dc:creator>Muhammad Fahd</dc:creator>
		<pubDate>Thu, 04 Feb 2010 21:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/?p=75#comment-1219</guid>
		<description>Thank you so much for this contribution</description>
		<content:encoded><![CDATA[<p>Thank you so much for this contribution</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to recover from the Registry cannot load the hive Blue Screen of Death Error by jgilpin</title>
		<link>http://www.searchmarked.com/windows/how-to-recover-from-the-stop-c0000218-registry-file-failure-registry-cannot-load-the-hive-file-systemrootsystem32configsoftware-blue-screen-of-death-error.php/comment-page-1#comment-1218</link>
		<dc:creator>jgilpin</dc:creator>
		<pubDate>Wed, 03 Feb 2010 20:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.searchmarked.com/windows/how-to-recover-from-the-stop-c0000218-registry-file-failure-registry-cannot-load-the-hive-file-systemrootsystem32configsoftware-blue-screen-of-death-error.php#comment-1218</guid>
		<description>Any help would be appreciated</description>
		<content:encoded><![CDATA[<p>Any help would be appreciated</p>
]]></content:encoded>
	</item>
</channel>
</rss>
