opus-nt/apply-locally.bat

19 lines
404 B
Batchfile
Raw Normal View History

@echo off
setlocal EnableDelayedExpansion
cd /d %~dp0
set execName=%~n0
set tweakPath=%cd%\tweaks - converted
for /d %%i in ("bin\*") do set path=%cd%\%%i;!path!
echo.
echo WARNING!
echo this will apply opus-nt's tweaks to your currently running system.
pause
for /d %%t in ("%tweakpath%\*") do (
call "applyTweakLocally.bat" "%%t"
)
echo.
echo done. restart your system to see all the changes.
pause