Janaka Sampath said:
Thank you Mark, by the please tell me how do I run this vb script in my
server. Does it auto run when double click
on it or there is some another way.
It is generally a poor idea to run command line scripts
by double clicking them -- unless they merely perform
some action which you don't care to view.
If you do this (double click) then when the program
terminates, the window closes, and you will not be
able to view the results.
Instead: Open a command prompt (aka DOS window,
even if it isn't really). Run the program from the open
command prompt. You may need to change directory
to the location of the program if it is not in a directory
listed on the command path.
If there is much output (as this will likely generate) then
you are probably even better off if you redirect the output
to a text file so you can view it or save it for later.
commandName [any parameters] >c:\myresults.txt
The ">" symbol sends the output to that file -- you don't
have to put the file at the root of the C:\ as I have shown
but make sure you can recall where you sent it.
">> Append.txt" will do the same but instead of overwriting
an existing file will append the results to it.
--
Herb Martin
Mark Renoden said:
Hi
You can get a text dump using xcacls.vbs ...
http://download.microsoft.com/download/f/7/8/f786aaf3-a37b-45ab-b0a2-8c8c18b
bf483/XCacls_Installer.exe
Kind regards
--
Mark Renoden [MSFT]
Windows Platform Support Team
Email: (e-mail address removed)
Please note you'll need to strip ".online" from my email address to email
me; I'll post a response back to the group.
This posting is provided "AS IS" with no warranties, and confers no rights.
Janaka Sampath said:
I need to get full detail listing of folder permissions in my
File server. I want to view tree view of folder permission.
Is there any microsoft tool to view permissions in all folders at same
time.
Thanks