w10install/scripts/set-permissions.cmd
Michael H.G. Schmidt 9b73342186 bugfix
2023-02-16 12:45:08 +01:00

28 lines
585 B
Batchfile

@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
echo.
takeown /F %TOOLS% /R /A /D Y 1>nul
icacls %TOOLS% /inheritance:r
icacls %TOOLS% /grant Administrators:F /t /c /l 1>nul
icacls %TOOLS% /grant Users:RX /t /c /l 1>nul
echo.
echo ####### %0 #######