perm bugfix

This commit is contained in:
Michael H.G. Schmidt 2023-02-17 12:32:13 +01:00
parent 059201e9cf
commit 55fe4f7ca3
2 changed files with 5 additions and 15 deletions

View File

@ -68,10 +68,6 @@ cd /D %SystemDrive%\
call set-permissions.cmd
echo.
echo cd to %T% ...
cd /D %T%
echo.
echo ####### %0 #######
echo READY.
echo.

View File

@ -1,22 +1,16 @@
@echo off
set T=c:\TEMP
set TOOLS=c:\tools
echo ####### %0 #######
takeown /F c:\*.txt /A
icacls c:\*.txt /inheritance:r
icacls c:\*.txt /grant Administrators:F
icacls c:\*.txt /grant Users:RX
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
takeown /F c:\*.txt /A 1>nul
icacls c:\*.txt /inheritance:r 1>nul
icacls c:\*.txt /grant Administrators:F 1>nul
icacls c:\*.txt /grant Users:RX 1>nul
echo.
echo working on folder [ %TOOLS% ] ...
takeown /F %TOOLS% /R /A /D Y 1>nul
icacls %TOOLS% /inheritance:r
icacls %TOOLS% /grant Administrators:F /t /c /l 1>nul