perm bugfix
This commit is contained in:
parent
059201e9cf
commit
55fe4f7ca3
@ -68,10 +68,6 @@ cd /D %SystemDrive%\
|
|||||||
call set-permissions.cmd
|
call set-permissions.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
echo cd to %T% ...
|
|
||||||
cd /D %T%
|
|
||||||
echo.
|
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
echo READY.
|
echo READY.
|
||||||
echo.
|
echo.
|
||||||
|
@ -1,22 +1,16 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set T=c:\TEMP
|
|
||||||
set TOOLS=c:\tools
|
set TOOLS=c:\tools
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
takeown /F c:\*.txt /A
|
takeown /F c:\*.txt /A 1>nul
|
||||||
icacls c:\*.txt /inheritance:r
|
icacls c:\*.txt /inheritance:r 1>nul
|
||||||
icacls c:\*.txt /grant Administrators:F
|
icacls c:\*.txt /grant Administrators:F 1>nul
|
||||||
icacls c:\*.txt /grant Users:RX
|
icacls c:\*.txt /grant Users:RX 1>nul
|
||||||
|
|
||||||
echo.
|
|
||||||
takeown /F %T% /R /A /D Y 1>nul
|
|
||||||
icacls %T% /inheritance:r
|
|
||||||
icacls %T% /grant Administrators:F /t /c /l 1>nul
|
|
||||||
icacls %T% /grant Users:RX /t /c /l 1>nul
|
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
|
echo working on folder [ %TOOLS% ] ...
|
||||||
takeown /F %TOOLS% /R /A /D Y 1>nul
|
takeown /F %TOOLS% /R /A /D Y 1>nul
|
||||||
icacls %TOOLS% /inheritance:r
|
icacls %TOOLS% /inheritance:r
|
||||||
icacls %TOOLS% /grant Administrators:F /t /c /l 1>nul
|
icacls %TOOLS% /grant Administrators:F /t /c /l 1>nul
|
||||||
|
Loading…
Reference in New Issue
Block a user