Is possible to change NTFS permissions from a script ? Is there a WMI object fot that ?
I find it easier to use cacls called fomr within a script - eg - (where strFodlerName is the path/name of the file/folder) Set objShell = WScript.CreateObject ("WSCript.shell") strReturn = objShell.run ("cacls " & strFolderName & " /T /E /R " & chr(34) & "Domain Users" & chr(34), 2, true)