w10install/optional/unpack-setacl.cmd
Michael H.G. Schmidt 25f6bb1fe9 setacl and others
2021-10-03 17:51:43 +02:00

23 lines
362 B
Batchfile

@echo off
set TOOLS=c:\tools
set ZIP=..\software\setacl.zip
set T=C:\TEMP
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking SetACL ...
%TOOLS%\7z e -y -aoa -o%T%\setacl %ZIP% 1>nul
move /Y %T%\setacl\*.exe %TOOLS%\setacl.exe
rd /S /Q %T%\setacl
echo.
echo ####### %0 #######
pause