w10install/scripts/modify-desktoptheme.cmd

25 lines
500 B
Batchfile
Raw Permalink Normal View History

@echo off
2023-08-13 12:43:07 +02:00
set TOOLS=%SystemDrive%\tools
2023-01-17 07:11:47 +01:00
set CONFIG=%TOOLS%\scripts\config
2023-02-20 09:24:42 +01:00
set THEMES=%windir%\Resources\Themes
echo ####### %0 #######
2023-01-20 22:26:36 +01:00
isuseradmin
if %ERRORLEVEL% == 0 (
echo Copying AEROLITE theme ...
copy /Y %CONFIG%\aerolite.theme %THEMES%
)
2023-01-20 08:15:22 +01:00
echo Activating AEROLITE theme ...
powershell -command "Start-Process %THEMES%\aerolite.theme"
2023-01-22 21:18:28 +01:00
echo sleeping 5 seconds ...
ping 127.0.0.1 -n 5 > NUL 2>&1
taskkill /F /IM SystemSettings.exe 2>nul
echo ####### %0 #######
2023-01-20 22:26:36 +01:00