Jump to content

Recommended Posts

Posted

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

Posted

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!
Posted

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?

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

qq

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
  • Recently Browsing   0 members

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