Folder Group Structure scanner?

mosprovider

Member
Mar 29, 2002
89
0
0
Im looking for a program that I can set to scan a server folder where I would specify how far subfolder wise it will scan then give me all the assocaited windows groups granting access. I know there are mass software bundles that you can pay huge sums for to do this but id like a small program that can do this when needed on a small set of folders.

Anyone know of a program like this?

Thanks!

-v
 
Last edited:

Ichinisan

Lifer
Oct 9, 2002
28,298
1,235
136
For listing subdirectories:

TREE

Code:
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

U:\>tree
Folder PATH listing for volume apps-svr-data
Volume serial number is 68EF-42CD
U:.
├───Favorites
│   ├───Bookmarks Toolbar Folder
│   ├───Links
│   ├───Ryan Norton
│   └───ThinkCentre Recommended Sites
├───My Documents
│   └───Visual Studio 2005
│       ├───Backup Files
│       │   ├───TestOCR-Processing
│       │   └───Text Processor
│       ├───Settings
│       └───Visualizers
└───Outlook

U:\>tree /?
Graphically displays the folder structure of a drive or path.

TREE [drive:][path] [/F] [/A]

   /F   Display the names of the files in each folder.
   /A   Use ASCII instead of extended characters.


U:\>_

I don't think you can limit the number of levels it will dig, unfortunately. Also, it doesn't list NTFS permissions / security.


Maybe try:
Start > Run > CMD
Code:
cd \
dir /ad /s /b > output.txt
start output.txt
Maybe you can make some kind of script that uses the list from Output.txt as input.
 
Last edited: