w10install/tools/setgroup-readonly.cmd

46 lines
834 B
Batchfile
Raw Permalink Normal View History

@echo off
IF %1.==. GOTO USAGE
2023-08-15 14:17:13 +02:00
IF %2.==. GOTO USAGE
if /I %1 == %SystemDrive% goto nosystemdrive
if /I %1 == %SystemDrive%\ goto nosystemdrive
if NOT EXIST %1 (
echo ERROR: file or directory not found!
exit /b
)
2023-08-15 14:17:13 +02:00
echo setting permissions for Group [ %2 ] on [ %1 ] to READ-ONLY ...
if EXIST %1\* (
echo *** DIRECTORY mode ***
takeown /F %1 /R /A /D Y 1>nul
icacls %1 /inheritance:r
icacls %1 /grant Administrators:F /t /c /l /q
2023-08-15 14:17:13 +02:00
icacls %1 /grant %2:RX /t /c /l /q
) else (
echo *** FILE mode ***
2023-08-15 14:17:13 +02:00
takeown /F %1 /A 1>nul
icacls %1 /inheritance:r
icacls %1 /grant Administrators:F /c /l /q
2023-08-15 14:17:13 +02:00
icacls %1 /grant %2:RX /c /l /q
)
echo.
2023-08-15 14:17:13 +02:00
icacls %1
GOTO END
:nosystemdrive
echo ERROR: cannot use the SystemDrive!
GOTO END
:USAGE
2023-08-15 14:17:13 +02:00
echo "usage: %0 <path> <group>"
:END