0

I'm just learning about icacls to set permissions to a folder. Better yet, I want to make sure that a folder is readonly. Anyone have any ideas?

C:>icacls.exe C:\TEMP\Reports [switches]

Zoredache
  • 130,897
  • 41
  • 276
  • 420
coson
  • 111
  • 1
  • 2

1 Answers1

6

Something like this perhaps? Try searching the site, there are many icacls examples.

REM take ownership and reset permissions
TAKEOWN /f "C:\TEMP\Reports" /r /d y
ICACLS "C:\TEMP\Reports" /reset /T
REM grant full control to administrators, read only to everyone else
ICACLS "C:\TEMP\Reports" /grant:r "BUILTIN\ADMINISTRATORS":(OI)(CI)F ^
                         /grant:r "BUILTIN\EVERYONE":(OI)(CI)R ^
REM set inheritance on everything below
ICACLS "C:\TEMP\Reports" /inheritance:r
Zoredache
  • 130,897
  • 41
  • 276
  • 420