Link to home
Start Free TrialLog in
Avatar of ValleyENT
ValleyENT

asked on

GPO or Batch File: Change Permissions on Local Folder

I recently rolled out a large application to 135 end-users. Come to find out that specific permissions need to be set on the local install root. I do not want to remotely connect to 135 systems for obvious reasons. Is there a way to push out a GPO or BATCH to give everyone permissions to a "C:\Program Files\Application" directory?
ASKER CERTIFIED SOLUTION
Avatar of Henrik Johansson
Henrik Johansson
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Joseph Daly
Or if you wanted to do it via batch file you could do it this way using the CACLS command.

Link to CACLS switches
http://www.geocities.com/rick_lively/MANUALS/COMMANDS/C/CACLS.HTM
cacls "c:\folder" /t /e /g users:F

Open in new window