• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

Printing (Shared) Directory in XP

G

Gina

Flightless Bird
The posts I've seen for this topic were from before 2006 and I'm hoping
something new is out there. I want to print a list of folders from our
shared drive. I've been successful pulling my own info using cmd, but the
command defaults to my drive and won't let me change it our shared drive.

Any ideas?
 
B

Bob I

Flightless Bird
One way is to run a BAT or CMD file in the folder in question.

bat file contains

DIR *.* /AD /S > filelist.txt

Gina wrote:

> The posts I've seen for this topic were from before 2006 and I'm hoping
> something new is out there. I want to print a list of folders from our
> shared drive. I've been successful pulling my own info using cmd, but the
> command defaults to my drive and won't let me change it our shared drive.
>
> Any ideas?
 
G

Gina

Flightless Bird
Can you break it down a little more, Bob? I'm not a power-user. Thanks.

"Bob I" wrote:

> One way is to run a BAT or CMD file in the folder in question.
>
> bat file contains
>
> DIR *.* /AD /S > filelist.txt
>
> Gina wrote:
>
> > The posts I've seen for this topic were from before 2006 and I'm hoping
> > something new is out there. I want to print a list of folders from our
> > shared drive. I've been successful pulling my own info using cmd, but the
> > command defaults to my drive and won't let me change it our shared drive.
> >
> > Any ideas?

>
> .
>
 
B

Bob I

Flightless Bird
Make a text file with Notepad, put "DIR" line of info in it. Save it,
change the extension from .TXT to .BAT( or .CMD), copy the file into the
directory in question and then double-click it to run it. your folder
list will appear in the file called "filelist.txt" open that and print it.


Gina wrote:
> Can you break it down a little more, Bob? I'm not a power-user. Thanks.
>
> "Bob I" wrote:
>
>
>>One way is to run a BAT or CMD file in the folder in question.
>>
>>bat file contains
>>
>>DIR *.* /AD /S > filelist.txt
>>
>>Gina wrote:
>>
>>
>>>The posts I've seen for this topic were from before 2006 and I'm hoping
>>>something new is out there. I want to print a list of folders from our
>>>shared drive. I've been successful pulling my own info using cmd, but the
>>>command defaults to my drive and won't let me change it our shared drive.
>>>
>>>Any ideas?

>>
>>.
>>
 
Top