Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cacls to text file

Status
Not open for further replies.

ccoll23

MIS
Jan 17, 2002
43
0
0
US
I can figure out how to send the access control list of a folder with cacls from the command prompt, but can't seem to figure how to do it with .vbs.
Any ideas?

Thanks
 
c:\cacls foldername > c:\temp\list.txt <enter>
 
You may try something like this:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "cmd /C cacls foldername > c:\temp\list.txt", 0, True

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top