Jump to content

Change rights on a folder


Recommended Posts

Hi,

on 2000/Xp use the dos command : cacls

Andre

<{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?

Link to comment
Share on other sites

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 by Burrup

qq

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...