# HG changeset patch # User Oleksandr Gavenko # Date 1502669812 -10800 # Node ID 8e8a16e1c5b3d567ac38ba663056fd65d59a0b24 # Parent 69aed373ceb9a6eae685e8305272f64401607dcc Attrib utility. diff -r 69aed373ceb9 -r 8e8a16e1c5b3 windows.rst --- a/windows.rst Wed Aug 09 01:58:42 2017 +0300 +++ b/windows.rst Mon Aug 14 03:16:52 2017 +0300 @@ -518,12 +518,22 @@ cmd> icacls %FILE% /reset cmd> icacls %FILE% /inheritance:r +Read file attributes:: + + cmd> attrib %FILE% + +Set/remove attributes (``/s`` - recursive):: + + cmd> attrib +r -h %DIR% /s + https://technet.microsoft.com/en-us/library/cc753525.aspx Icacls. http://support.microsoft.com/kb/919240 The ``Icacls.exe`` utility is available for Windows Server 2003 with Service Pack 2. https://technet.microsoft.com/en-us/library/2009.07.geekofalltrades.aspx Geek of all Trades Setting Permissions from the Command Line. +https://technet.microsoft.com/en-us/library/bb490868.aspx + Attrib utility. User management ===============