From df8ecb1726684fcad6895e4322c3d36a46350d6a Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 23 Feb 2023 22:54:25 +0100 Subject: [PATCH] added setuser-readonly script for permissions --- tools/setuser-readonly.cmd | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 tools/setuser-readonly.cmd diff --git a/tools/setuser-readonly.cmd b/tools/setuser-readonly.cmd new file mode 100644 index 0000000..298b3e3 --- /dev/null +++ b/tools/setuser-readonly.cmd @@ -0,0 +1,43 @@ +@echo off + +IF %1.==. 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 +) + +echo setting permissions for Users 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 + icacls %1 /grant Users:RX /t /c /l /q + +) else ( + + echo *** FILE mode *** + takeown /F %1 /A 1>nul + icacls %1 /inheritance:r + icacls %1 /grant Administrators:F /c /l /q + icacls %1 /grant Users:RX /c /l /q + +) +echo. +GOTO END + +:nosystemdrive +echo ERROR: cannot use the SystemDrive! +GOTO END + +:USAGE +echo "usage: %0 " + +:END +