440LVB 0 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 Share this post Link to post Share on other sites
Andre 0 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! Share this post Link to post Share on other sites
440LVB 0 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? Share this post Link to post Share on other sites
buzz44 1 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 Share this post Link to post Share on other sites