create script for USER access rights in Filesystem #115
This commit is contained in:
parent
11b8682e2b
commit
d9e1fb3f9b
43
tools/setuser-fullaccess.cmd
Normal file
43
tools/setuser-fullaccess.cmd
Normal file
@ -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 FULLA-ACCESS ...
|
||||||
|
|
||||||
|
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:F /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:F /c /l /q
|
||||||
|
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:nosystemdrive
|
||||||
|
echo ERROR: cannot use the SystemDrive!
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:USAGE
|
||||||
|
echo "usage: %0 <path>"
|
||||||
|
|
||||||
|
:END
|
||||||
|
|
43
tools/setuser-noaccess.cmd
Normal file
43
tools/setuser-noaccess.cmd
Normal file
@ -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 removing access rights for Users on [ %1 ] ...
|
||||||
|
|
||||||
|
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 /remove Users /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 /remove Users /c /l /q
|
||||||
|
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:nosystemdrive
|
||||||
|
echo ERROR: cannot use the SystemDrive!
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:USAGE
|
||||||
|
echo "usage: %0 <path>"
|
||||||
|
|
||||||
|
:END
|
||||||
|
|
Loading…
Reference in New Issue
Block a user