w10install/scripts/set-permissions.cmd
2023-02-20 07:56:50 +01:00

15 lines
268 B
Batchfile

@echo off
set TOOLS=c:\tools
echo ####### %0 #######
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 #######