<?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 microtom.net</title>
	<atom:link href="http://www.microtom.net/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.microtom.net</link>
	<description>tom&#039;s windows tech blog</description>
	<lastBuildDate>Wed, 18 Aug 2010 08:01:31 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Convert BMP to JPG Command Line Utility (Free) by oliver marshall</title>
		<link>http://www.microtom.net/?p=619&#038;cpage=1#comment-305</link>
		<dc:creator>oliver marshall</dc:creator>
		<pubDate>Wed, 18 Aug 2010 08:01:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=619#comment-305</guid>
		<description>I get a 403 error when trying the download link</description>
		<content:encoded><![CDATA[<p>I get a 403 error when trying the download link</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;vssadmin list writers&#8221; does not return any writers by Karol Stilger</title>
		<link>http://www.microtom.net/?p=642&#038;cpage=1#comment-301</link>
		<dc:creator>Karol Stilger</dc:creator>
		<pubDate>Tue, 27 Jul 2010 12:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=642#comment-301</guid>
		<description>Nice tip!</description>
		<content:encoded><![CDATA[<p>Nice tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert BMP to JPG Command Line Utility (Free) by microtom</title>
		<link>http://www.microtom.net/?p=619&#038;cpage=1#comment-300</link>
		<dc:creator>microtom</dc:creator>
		<pubDate>Wed, 21 Jul 2010 07:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=619#comment-300</guid>
		<description>It&#039;s incredible that some people are bored enough to start attacking by trying to use massive hit counts on download content. :) I uploaded the original exe file again</description>
		<content:encoded><![CDATA[<p>It&#8217;s incredible that some people are bored enough to start attacking by trying to use massive hit counts on download content. :) I uploaded the original exe file again</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert BMP to JPG Command Line Utility (Free) by Simon</title>
		<link>http://www.microtom.net/?p=619&#038;cpage=1#comment-299</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 20 Jul 2010 14:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=619#comment-299</guid>
		<description>The file is still empty. 
Is the link ( http://www.microtom.net/?dl_id=3 ) correct?</description>
		<content:encoded><![CDATA[<p>The file is still empty.<br />
Is the link ( <a href="http://www.microtom.net/?dl_id=3" rel="nofollow">http://www.microtom.net/?dl_id=3</a> ) correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Microsoft SQL 2008 Setup: Performance Counter Registry Hive consistency check failed by Yauheni</title>
		<link>http://www.microtom.net/?p=500&#038;cpage=1#comment-287</link>
		<dc:creator>Yauheni</dc:creator>
		<pubDate>Fri, 18 Jun 2010 07:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=500#comment-287</guid>
		<description>Hello Guys,
May be it somebody helps. 
It&#039;s neccessary to create a simple console application. Go to Visual Studio click File -&gt; Visual C# -&gt; Windows -&gt; Console application. 
Paste this code:
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            string st=string.Format(&quot;{0,3}&quot;, CultureInfo.InstalledUICulture.Parent.LCID.ToString(&quot;X&quot;)).Replace(&quot; &quot;, &quot;0&quot;);
            System.Console.WriteLine(st);
            System.Console.ReadLine();
        }
    }
}

and run (F5). You will see LCID number. Remember it.

Then download Perlib.zip. Unpack. Edit Perflib.reg in this line
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\XXX]
instead XXX enter your LCID number (for example 019) that you saw in the simple program.

Click Perflib.reg -&gt; OK. Re-run your SQL Server installation.
That&#039;s all.

Thanks to Max.</description>
		<content:encoded><![CDATA[<p>Hello Guys,<br />
May be it somebody helps.<br />
It&#8217;s neccessary to create a simple console application. Go to Visual Studio click File -&gt; Visual C# -&gt; Windows -&gt; Console application.<br />
Paste this code:</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Globalization;</p>
<p>namespace ConsoleApplication2<br />
{<br />
    class Program<br />
    {<br />
        static void Main(string[] args)<br />
        {<br />
            string st=string.Format(&#8220;{0,3}&#8221;, CultureInfo.InstalledUICulture.Parent.LCID.ToString(&#8220;X&#8221;)).Replace(&#8221; &#8220;, &#8220;0&#8243;);<br />
            System.Console.WriteLine(st);<br />
            System.Console.ReadLine();<br />
        }<br />
    }<br />
}</p>
<p>and run (F5). You will see LCID number. Remember it.</p>
<p>Then download Perlib.zip. Unpack. Edit Perflib.reg in this line<br />
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\XXX]<br />
instead XXX enter your LCID number (for example 019) that you saw in the simple program.</p>
<p>Click Perflib.reg -&gt; OK. Re-run your SQL Server installation.<br />
That&#8217;s all.</p>
<p>Thanks to Max.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;vssadmin list writers&#8221; does not return any writers by Kevin Allard</title>
		<link>http://www.microtom.net/?p=642&#038;cpage=1#comment-285</link>
		<dc:creator>Kevin Allard</dc:creator>
		<pubDate>Sat, 12 Jun 2010 05:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=642#comment-285</guid>
		<description>This fixed my problem!  Thank you!  I&#039;ve been trying the other scripts but to no avail.  For some reason stopping the services and registering the DLLs twice (the script you have) worked.  Thanks a lot!</description>
		<content:encoded><![CDATA[<p>This fixed my problem!  Thank you!  I&#8217;ve been trying the other scripts but to no avail.  For some reason stopping the services and registering the DLLs twice (the script you have) worked.  Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resources on the Web by Fatan</title>
		<link>http://www.microtom.net/?page_id=176&#038;cpage=1#comment-283</link>
		<dc:creator>Fatan</dc:creator>
		<pubDate>Fri, 11 Jun 2010 13:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?page_id=176#comment-283</guid>
		<description>I always recommend to use &lt;a href=&quot;http://phpforms.net/tutorial/tutorial.html&quot; rel=&quot;nofollow&quot;&gt;php tutorial&lt;/a&gt; in addition to w3schools</description>
		<content:encoded><![CDATA[<p>I always recommend to use <a href="http://phpforms.net/tutorial/tutorial.html" rel="nofollow">php tutorial</a> in addition to w3schools</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 7: Desktop Icons suddenly disappear by Atreidae</title>
		<link>http://www.microtom.net/?p=638&#038;cpage=1#comment-282</link>
		<dc:creator>Atreidae</dc:creator>
		<pubDate>Fri, 11 Jun 2010 05:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=638#comment-282</guid>
		<description>Also something else I found
the file &quot;RS_RemoveShortcuts.ps1&quot; in the same directory contains the line  (line 12)
&quot;Remove-FileList $brokenDesktopShortcuts&quot; 
change this to &quot;# Remove-FileList $brokenDesktopShortcuts&quot;

To stop killing links to network shares and usb devices when they go offline for a brief period.</description>
		<content:encoded><![CDATA[<p>Also something else I found<br />
the file &#8220;RS_RemoveShortcuts.ps1&#8243; in the same directory contains the line  (line 12)<br />
&#8220;Remove-FileList $brokenDesktopShortcuts&#8221;<br />
change this to &#8220;# Remove-FileList $brokenDesktopShortcuts&#8221;</p>
<p>To stop killing links to network shares and usb devices when they go offline for a brief period.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 7: Desktop Icons suddenly disappear by Atreidae</title>
		<link>http://www.microtom.net/?p=638&#038;cpage=1#comment-281</link>
		<dc:creator>Atreidae</dc:creator>
		<pubDate>Fri, 11 Jun 2010 04:14:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=638#comment-281</guid>
		<description>Thanks for this.
I figured out it was a scheduled task that was causing it, but no idea it was a PS script

MS has a recommended fix, but it involves turning off ALL the maintenance tasks. (boo)
See link here.

http://support.microsoft.com/kb/978980/en-au?p=1</description>
		<content:encoded><![CDATA[<p>Thanks for this.<br />
I figured out it was a scheduled task that was causing it, but no idea it was a PS script</p>
<p>MS has a recommended fix, but it involves turning off ALL the maintenance tasks. (boo)<br />
See link here.</p>
<p><a href="http://support.microsoft.com/kb/978980/en-au?p=1" rel="nofollow">http://support.microsoft.com/kb/978980/en-au?p=1</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert BMP to JPG Command Line Utility (Free) by microtom</title>
		<link>http://www.microtom.net/?p=619&#038;cpage=1#comment-275</link>
		<dc:creator>microtom</dc:creator>
		<pubDate>Tue, 18 May 2010 14:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.microtom.net/?p=619#comment-275</guid>
		<description>Damn, again! Don&#039;t know whats wrong with that download manager :) I uploaded it again, please give it another try.</description>
		<content:encoded><![CDATA[<p>Damn, again! Don&#8217;t know whats wrong with that download manager :) I uploaded it again, please give it another try.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
