<?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 Computing Tidbits</title>
	<atom:link href="http://comptb.cects.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://comptb.cects.com</link>
	<description>Technical Tips for Everyday Computing</description>
	<lastBuildDate>Wed, 18 Jan 2012 02:42:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Install and configure SSH on Windows by admin_tb</title>
		<link>http://comptb.cects.com/1264-install-configure-ssh-on-windows#comment-113</link>
		<dc:creator>admin_tb</dc:creator>
		<pubDate>Wed, 18 Jan 2012 02:42:30 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=1264#comment-113</guid>
		<description>There are often permission issues with public key authentication in Windows. See: Troubleshooting Windows OpenSSH server issues in http://comptb.cects.com/1439-openssh-rsa-authentication-for-windows-and-linux and see if that fixes it. You can force public key authentication also by editing the sshd_config file. See Step 3 – Edit sshd_config in the same article.</description>
		<content:encoded><![CDATA[<p>There are often permission issues with public key authentication in Windows. See: Troubleshooting Windows OpenSSH server issues in <a href="http://comptb.cects.com/1439-openssh-rsa-authentication-for-windows-and-linux" rel="nofollow">http://comptb.cects.com/1439-openssh-rsa-authentication-for-windows-and-linux</a> and see if that fixes it. You can force public key authentication also by editing the sshd_config file. See Step 3 – Edit sshd_config in the same article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install and configure SSH on Windows by Vikash</title>
		<link>http://comptb.cects.com/1264-install-configure-ssh-on-windows#comment-112</link>
		<dc:creator>Vikash</dc:creator>
		<pubDate>Tue, 17 Jan 2012 16:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=1264#comment-112</guid>
		<description>Hi,
I have got a problem with Openssh on Windows XP.
The steps are same as using keygen to create private and public key, copy public key to another system .ssh folder, append it to authorized keys. restart the opensshd on both system.
Still getting prompt for password.
Please help.
Thanks,
Vikash</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have got a problem with Openssh on Windows XP.<br />
The steps are same as using keygen to create private and public key, copy public key to another system .ssh folder, append it to authorized keys. restart the opensshd on both system.<br />
Still getting prompt for password.<br />
Please help.<br />
Thanks,<br />
Vikash</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automate Zipping Tasks using the Command-line Interface by Ramniwas</title>
		<link>http://comptb.cects.com/114-automate-compression-tasks-cli#comment-111</link>
		<dc:creator>Ramniwas</dc:creator>
		<pubDate>Tue, 17 Jan 2012 13:05:45 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=114#comment-111</guid>
		<description>your artical for 7Za batch is verry helpful for me Thanx of lot it is done after 5month again thank you</description>
		<content:encoded><![CDATA[<p>your artical for 7Za batch is verry helpful for me Thanx of lot it is done after 5month again thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automate Zipping Tasks using the Command-line Interface by admin_tb</title>
		<link>http://comptb.cects.com/114-automate-compression-tasks-cli#comment-107</link>
		<dc:creator>admin_tb</dc:creator>
		<pubDate>Tue, 03 Jan 2012 10:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=114#comment-107</guid>
		<description>Try this.  It&#039;s not 100% tested. You may want to try it out with some test files first. Just enter your file paths in the variables dirA, dirB, dirC. I didn&#039;t see anything in your request about zipping files with WinRAR; just file manipulation.

&lt;code&gt;REM checkmovewav.bat 1/3/12

:start

@echo off
setlocal

:init
   
set dirA=C:\Utilities\Batchfiles\wavinputfolder\
set dirB=C:\Utilities\Batchfiles\winrarzipfolder\
set dirC=C:\Utilities\Batchfiles\winrarzipsnotfound\

if not exist &quot;%dirA%&quot; echo &quot;%dirA%&quot; not found! &amp; goto :EOF
if not exist &quot;%dirB%&quot; echo &quot;%dirB%&quot; not found! &amp; goto :EOF
if not exist &quot;%dirC%&quot; echo &quot;%dirB%&quot; not found! &amp; goto :EOF

    
for /R &quot;%dirA%&quot; %%f in (*.wav) do (
if not exist &quot;%dirB%%%~nf.zip&quot; (
echo &quot;%%~nxf&quot; NOT found in &quot;%dirB%&quot; 
copy &quot;%%f&quot; &quot;%dirC%&quot;

) else (

echo zipped version of &quot;%%~nxf&quot; FOUND in &quot;%dirB%&quot;
del &quot;%dirB%%%~nf.zip&quot;
move &quot;%%f&quot; &quot;%dirB%&quot;

)

)

echo.
echo Operation Completed
echo.

pause
  
:eof &lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Try this.  It&#8217;s not 100% tested. You may want to try it out with some test files first. Just enter your file paths in the variables dirA, dirB, dirC. I didn&#8217;t see anything in your request about zipping files with WinRAR; just file manipulation.</p>
<p><code>REM checkmovewav.bat 1/3/12</p>
<p>:start</p>
<p>@echo off<br />
setlocal</p>
<p>:init</p>
<p>set dirA=C:\Utilities\Batchfiles\wavinputfolder\<br />
set dirB=C:\Utilities\Batchfiles\winrarzipfolder\<br />
set dirC=C:\Utilities\Batchfiles\winrarzipsnotfound\</p>
<p>if not exist "%dirA%" echo "%dirA%" not found! &#038; goto :EOF<br />
if not exist "%dirB%" echo "%dirB%" not found! &#038; goto :EOF<br />
if not exist "%dirC%" echo "%dirB%" not found! &#038; goto :EOF</p>
<p>for /R "%dirA%" %%f in (*.wav) do (<br />
if not exist "%dirB%%%~nf.zip" (<br />
echo "%%~nxf" NOT found in "%dirB%"<br />
copy "%%f" "%dirC%"</p>
<p>) else (</p>
<p>echo zipped version of "%%~nxf" FOUND in "%dirB%"<br />
del "%dirB%%%~nf.zip"<br />
move "%%f" "%dirB%"</p>
<p>)</p>
<p>)</p>
<p>echo.<br />
echo Operation Completed<br />
echo.</p>
<p>pause</p>
<p>:eof </code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automate Zipping Tasks using the Command-line Interface by Dr.Keith J.Salmon</title>
		<link>http://comptb.cects.com/114-automate-compression-tasks-cli#comment-106</link>
		<dc:creator>Dr.Keith J.Salmon</dc:creator>
		<pubDate>Mon, 02 Jan 2012 16:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=114#comment-106</guid>
		<description>Can anyone write me a script to do the following?
Write a script to make WinRAR do the following please?

&gt;   1.. To read a directory called H:\wavinputfolder sequentially;
&gt;   2.. To extract the file name (not extension);
&gt;   3.. To look up a file (not extension) corresponding to this name in 
&gt; H:\winrarzipfolder;
&gt;   4.. If not found, to copy the file (and its .wav extension) from 
&gt; H:\waveinputfolder to H:\winrarzipsnotfound and then loop back to 1 to read 
&gt; the next wav; at end to exit;
&gt;   5.. If found, to delete the contents of the zip file and replace it with 
&gt; the wav file (complete with its extension).
&gt;   6.. To loop back to 1 until at end exit.
&gt; Example:

&gt; H:wavinputfolder                                H:\winrarzipfolder 
&gt; H:\winrarzipsnotfound                Action

&gt; Fred.wav                                                Fred.zip 
&gt; Replace contants of fred.zip, viz., with fred.wav
&gt; Sue.wav                                                Sue.zip 
&gt; As above
&gt; Mike.wav                                               Joe.zip 
&gt; Mike.wav                                        Copy (not cut) mike.wav to 
&gt; the &quot;notfound folder&quot;
&gt; Joe.wav                                                 Joe.zip 
&gt; As for fred and sue
&gt; End of folder 
&gt; Exit

&gt; Thank you.

&gt; Keith J.Salmon</description>
		<content:encoded><![CDATA[<p>Can anyone write me a script to do the following?<br />
Write a script to make WinRAR do the following please?</p>
<p>&gt;   1.. To read a directory called H:\wavinputfolder sequentially;<br />
&gt;   2.. To extract the file name (not extension);<br />
&gt;   3.. To look up a file (not extension) corresponding to this name in<br />
&gt; H:\winrarzipfolder;<br />
&gt;   4.. If not found, to copy the file (and its .wav extension) from<br />
&gt; H:\waveinputfolder to H:\winrarzipsnotfound and then loop back to 1 to read<br />
&gt; the next wav; at end to exit;<br />
&gt;   5.. If found, to delete the contents of the zip file and replace it with<br />
&gt; the wav file (complete with its extension).<br />
&gt;   6.. To loop back to 1 until at end exit.<br />
&gt; Example:</p>
<p>&gt; H:wavinputfolder                                H:\winrarzipfolder<br />
&gt; H:\winrarzipsnotfound                Action</p>
<p>&gt; Fred.wav                                                Fred.zip<br />
&gt; Replace contants of fred.zip, viz., with fred.wav<br />
&gt; Sue.wav                                                Sue.zip<br />
&gt; As above<br />
&gt; Mike.wav                                               Joe.zip<br />
&gt; Mike.wav                                        Copy (not cut) mike.wav to<br />
&gt; the &#8220;notfound folder&#8221;<br />
&gt; Joe.wav                                                 Joe.zip<br />
&gt; As for fred and sue<br />
&gt; End of folder<br />
&gt; Exit</p>
<p>&gt; Thank you.</p>
<p>&gt; Keith J.Salmon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recovering from an Accidental Partial Format of an External USB Drive by Chris Galli</title>
		<link>http://comptb.cects.com/5-accidental-format-external-drive#comment-105</link>
		<dc:creator>Chris Galli</dc:creator>
		<pubDate>Sun, 01 Jan 2012 06:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=5#comment-105</guid>
		<description>Thank you for this article! It was a Godsend to find this great tool! I too partially reformatted my drive on accident after troubleshooting my computer when my video card died out. I used this seemingly rough program but it took it seconds to fix my previously unreadable drive. I can&#039;t tell you how relieved I am to have all my hard work and memories back!</description>
		<content:encoded><![CDATA[<p>Thank you for this article! It was a Godsend to find this great tool! I too partially reformatted my drive on accident after troubleshooting my computer when my video card died out. I used this seemingly rough program but it took it seconds to fix my previously unreadable drive. I can&#8217;t tell you how relieved I am to have all my hard work and memories back!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by C</title>
		<link>http://comptb.cects.com/about#comment-101</link>
		<dc:creator>C</dc:creator>
		<pubDate>Thu, 22 Dec 2011 23:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?page_id=2#comment-101</guid>
		<description>Thanks for this site....on how to create Mulitboot USB! Love the fact you allowed PDF Print for later viewing documentation purpose.

I&#039;ve added this site to my List of Links of PC Support!</description>
		<content:encoded><![CDATA[<p>Thanks for this site&#8230;.on how to create Mulitboot USB! Love the fact you allowed PDF Print for later viewing documentation purpose.</p>
<p>I&#8217;ve added this site to my List of Links of PC Support!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Overview to Understanding Hard links, Junction Points and Symbolic links in Windows by Anonymous</title>
		<link>http://comptb.cects.com/2268-overview-to-understanding-hard-links-junction-points-and-symbolic-links-in-windows#comment-97</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 17 Nov 2011 04:56:21 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=2268#comment-97</guid>
		<description>symlink is very important while working in unix. you can also update symblink in one step check this &lt;a href=&quot;http://javarevisited.blogspot.com/2011/04/symbolic-link-or-symlink-in-unix-linux.html&quot; rel=&quot;nofollow&quot;&gt;update soft link in unix in one step&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>symlink is very important while working in unix. you can also update symblink in one step check this <a href="http://javarevisited.blogspot.com/2011/04/symbolic-link-or-symlink-in-unix-linux.html" rel="nofollow">update soft link in unix in one step</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Test Bootable USBs with a Virtual Machine by admin_tb</title>
		<link>http://comptb.cects.com/690-boot-usbs-with-qemu-manager#comment-96</link>
		<dc:creator>admin_tb</dc:creator>
		<pubDate>Wed, 19 Oct 2011 18:26:46 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=690#comment-96</guid>
		<description>Although related, that topic isn&#039;t covered because it&#039;s more complex. Qemu is generally a command line tool. Qemu Manager replaces the command line with an easy to use GUI that almost anyone can use. For further information, see &lt;a href=&quot;http://qemu.weilnetz.de/qemu-doc.html#pcsys_005fquickstart&quot; rel=&quot;nofollow&quot;&gt;QEMU Emulator User Documentation&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Although related, that topic isn&#8217;t covered because it&#8217;s more complex. Qemu is generally a command line tool. Qemu Manager replaces the command line with an easy to use GUI that almost anyone can use. For further information, see <a href="http://qemu.weilnetz.de/qemu-doc.html#pcsys_005fquickstart" rel="nofollow">QEMU Emulator User Documentation</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Test Bootable USBs with a Virtual Machine by sundar_ima</title>
		<link>http://comptb.cects.com/690-boot-usbs-with-qemu-manager#comment-95</link>
		<dc:creator>sundar_ima</dc:creator>
		<pubDate>Wed, 19 Oct 2011 15:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://comptb.cects.com/?p=690#comment-95</guid>
		<description>Nice article. I have a question though. How do you boot usb only with qemu (no qemu manager)?</description>
		<content:encoded><![CDATA[<p>Nice article. I have a question though. How do you boot usb only with qemu (no qemu manager)?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

