440LVB Posted May 13, 2005 Posted May 13, 2005 Hello I want to change the rights of a folder that I create with AutoIT. Can I do that? (either with a DOS command or with an AutoIT function) Thanks
Andre Posted May 13, 2005 Posted May 13, 2005 Hi, on 2000/Xp use the dos command : cacls Andre What about Windows without using AutoIt ?It would be the same as driving a car without an steering Wheel!
440LVB Posted May 13, 2005 Author Posted May 13, 2005 Hi,on 2000/Xp use the dos command : caclsAndre<{POST_SNAPBACK}>I saw that. Thank you for your answer, but the command has an error :RunWait(@ComSpec & " /c " & "cacls d:\" & @UserName & " /T /G " & @UserName & ":F /G Administrateur:F"The error is on & ":F /G Administrateur:F". Is the number of '&' that I can use in one string limited?
buzz44 Posted May 13, 2005 Posted May 13, 2005 (edited) Try that? RunWait(@ComSpec & " /c " & 'cacls "d:\" & @UserName' & " /T /G " & '@UserName & ":F /G Administrateur:F"') Or>? #Include <process.au3> _RunDOS("cacls " & '"d:\" & @UserName' & " /T /G " & @UserName & ":F /G Administrateur:F") I wish I was better at qoutation marks with command prompt. Edited May 13, 2005 by Burrup qq
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now