<?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"
	>
<channel>
	<title>Comments on: Copying Windows Directory Information Into a Spreadsheet?</title>
	<atom:link href="http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/</link>
	<description>because technology is just another ecosystem</description>
	<pubDate>Tue, 02 Dec 2008 16:01:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: stephen o'grady</title>
		<link>http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/#comment-1633</link>
		<dc:creator>stephen o'grady</dc:creator>
		<pubDate>Thu, 23 Feb 2006 22:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=740#comment-1633</guid>
		<description>mike: that would have been a great idea, but fortunately wasn't necessary. we got the data we needed using the trial of the app here:

http://www.novell.com/coolsolutions/tools/14782.html

didn't work particularly fast, but it got the job done. 

thanks to everyone who wrote in with suggestions. 
</description>
		<content:encoded><![CDATA[<p>mike: that would have been a great idea, but fortunately wasn&#8217;t necessary. we got the data we needed using the trial of the app here:</p>
<p><a href="http://www.novell.com/coolsolutions/tools/14782.html" >http://www.novell.com/coolsolutions/tools/14782.html</a></p>
<p>didn&#8217;t work particularly fast, but it got the job done. </p>
<p>thanks to everyone who wrote in with suggestions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Dolan</title>
		<link>http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/#comment-1632</link>
		<dc:creator>Mike Dolan</dc:creator>
		<pubDate>Wed, 22 Feb 2006 22:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=740#comment-1632</guid>
		<description>Why not access the shared drive from a Linux box and write a shell script to list/parse what you need? Like parse an "ls -l" output and dump it into a CSV text file. Open it in OO or Excel.</description>
		<content:encoded><![CDATA[<p>Why not access the shared drive from a Linux box and write a shell script to list/parse what you need? Like parse an &#8220;ls -l&#8221; output and dump it into a CSV text file. Open it in OO or Excel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephen o'grady</title>
		<link>http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/#comment-1631</link>
		<dc:creator>stephen o'grady</dc:creator>
		<pubDate>Tue, 21 Feb 2006 22:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=740#comment-1631</guid>
		<description>thanks guys - i'll try these, after i try one of a couple of directory printer applications that seem to be able to read and dump the drive contents. they probably, now that i think about it, leverage the exact things you're discussing.</description>
		<content:encoded><![CDATA[<p>thanks guys - i&#8217;ll try these, after i try one of a couple of directory printer applications that seem to be able to read and dump the drive contents. they probably, now that i think about it, leverage the exact things you&#8217;re discussing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fraxas</title>
		<link>http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/#comment-1630</link>
		<dc:creator>Fraxas</dc:creator>
		<pubDate>Tue, 21 Feb 2006 06:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=740#comment-1630</guid>
		<description>Search the extended MSDN documentation on the Shell scripting object.  I'm sure there's a way to iterate over files with it -- you can even use JScript rather than VBasic if you want.  The last time I ran into Windows scripting was coming up with a shell script tha would open the Run dialog -- something I need to do because Toshiba hates me, and put the Windows key in the top right of the keyboard and put the Fn key where Win should be.  Luckily it came with a utility for binding Fn+arbitrarykeystroke to an executable.

here's some VB that creates a shell object you can operate on to get at files and things, and use as a hook for grovelling around MSDN:

Dim objShell
Set objShell = CreateObject("Shell.Application")</description>
		<content:encoded><![CDATA[<p>Search the extended MSDN documentation on the Shell scripting object.  I&#8217;m sure there&#8217;s a way to iterate over files with it &#8212; you can even use JScript rather than VBasic if you want.  The last time I ran into Windows scripting was coming up with a shell script tha would open the Run dialog &#8212; something I need to do because Toshiba hates me, and put the Windows key in the top right of the keyboard and put the Fn key where Win should be.  Luckily it came with a utility for binding Fn+arbitrarykeystroke to an executable.</p>
<p>here&#8217;s some VB that creates a shell object you can operate on to get at files and things, and use as a hook for grovelling around MSDN:</p>
<p>Dim objShell<br />
Set objShell = CreateObject(&#8221;Shell.Application&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rohit Sankaran</title>
		<link>http://redmonk.com/sogrady/2006/02/20/copying-windows-directory-information-into-a-spreadsheet/#comment-1629</link>
		<dc:creator>Rohit Sankaran</dc:creator>
		<pubDate>Mon, 20 Feb 2006 22:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=740#comment-1629</guid>
		<description>This /might/ be possible, if you have +wx on the directory. Make a batch file with the code listing below and execute it?

dir [whatever switches] :gn &#62;filelisting.txt

Then you can view filelisting.txt on Firefox.

Then again I might be way off base.</description>
		<content:encoded><![CDATA[<p>This /might/ be possible, if you have +wx on the directory. Make a batch file with the code listing below and execute it?</p>
<p>dir [whatever switches] :gn &gt;filelisting.txt</p>
<p>Then you can view filelisting.txt on Firefox.</p>
<p>Then again I might be way off base.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
