Skip to content

Commit 9f72c4c

Browse files
Add files via upload
1 parent 4f0173d commit 9f72c4c

File tree

3 files changed

+117
-0
lines changed

3 files changed

+117
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@echo off
2+
chcp 65001 > nul
3+
4+
echo ***********************
5+
echo * Basic Theme *
6+
echo ***********************
7+
echo.
8+
9+
set /P c=Do you want apply the basic theme ?[Y\N]?
10+
if /I "%c%" EQU "Y" (goto :CTT)
11+
if /I "%c%" EQU "N" (goto :ANNULATION)
12+
13+
:CTT
14+
if exist %userprofile%\tss\classic\classicthemetray.exe (ren "%userprofile%\tss\classic\classicthemetray.exe" ClassicThemeTray_old.exe
15+
echo The classic theme has been disabled) else (echo The classic theme is already disabled)
16+
17+
start %userprofile%\TSS\classic\classicthemetray_old.exe /disable
18+
19+
Set BT2=BasicThemer2.exe
20+
tasklist | find /i "%BT2%">nul && echo AC || (start C:\TSS\BasicTheme\BasicThemer2.exe)
21+
if exist %userprofile%\tss\basic\BasicThemer2.exe (echo The basic theme is already active) else (ren "%userprofile%\tss\basic\BasicThemer2_old.exe" BasicThemer2.exe
22+
echo The basic theme has been activated)
23+
24+
set /P c=Do you want to restart explorer ?[Y\N]?
25+
if /I "%c%" EQU "Y" (TASKKILL /f /im explorer.exe
26+
start explorer.exe)
27+
if /I "%c%" EQU "N" (goto :MSG)
28+
29+
:MSG
30+
echo Task completed
31+
pause
32+
goto :FIN
33+
34+
:ANNULATION
35+
echo Task aborted
36+
pause
37+
38+
:FIN
39+
End
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@echo off
2+
chcp 65001 > nul
3+
4+
echo ***************************
5+
echo * Classique Theme *
6+
echo ***************************
7+
echo.
8+
9+
set /P c=Do you want apply the classic theme ?[Y\N]?
10+
if /I "%c%" EQU "Y" (goto :CTT)
11+
if /I "%c%" EQU "N" (goto :ANNULATION)
12+
13+
:CTT
14+
if exist %userprofile%\tss\classic\classicthemetray.exe (echo The classic theme is already active) else (ren "%userprofile%\tss\classic\classicthemetray_old.exe" classicthemetray.exe
15+
echo The classic theme has been activated)
16+
17+
Set BT2=basicthemer2.exe
18+
tasklist | find /i "%BT2%">nul && (TASKKILL /f /im BasicThemer2.exe) || echo INA
19+
if exist %userprofile%\tss\basic\basicthemer2.exe (ren "%userprofile%\tss\basic\basicthemer2.exe" BasicThemer2_old.exe
20+
echo The basic theme has been disabled) else (echo The basic theme is already disabled)
21+
22+
start %userprofile%\TSS\classic\classicthemetray.exe /enable
23+
24+
set /P c=Do you want to restart explorer ?[Y\N]?
25+
if /I "%c%" EQU "Y" (TASKKILL /f /im explorer.exe
26+
start explorer.exe)
27+
if /I "%c%" EQU "N" (goto :MSG)
28+
29+
:MSG
30+
echo Task completed
31+
pause
32+
goto :FIN
33+
34+
:ANNULATION
35+
echo Task aborted
36+
pause
37+
38+
:FIN
39+
End
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@echo off
2+
chcp 65001 > nul
3+
4+
echo *****************************
5+
echo * DWM-Effects Theme *
6+
echo *****************************
7+
echo.
8+
9+
set /P c=Do you want apply the DWM-Effect theme ?[Y\N]?
10+
if /I "%c%" EQU "Y" (goto :CTT)
11+
if /I "%c%" EQU "N" (goto :ANNULATION)
12+
13+
:CTT
14+
if exist %userprofile%\TSS\classic\classicthemetray.exe (ren "%userprofile%\TSS\classic\classicthemetray.exe" ClassicThemeTray_old.exe
15+
echo The classic theme has been disabled) else (echo The classic theme is already disabled)
16+
17+
start %userprofile%\TSS\classic\classicthemetray_old.exe /disable
18+
19+
Set BT2=basicthemer2.exe
20+
tasklist | find /i "%BT2%">nul && (TASKKILL /f /im BasicThemer2.exe) || echo INA
21+
if exist %userprofile%\tss\basic\basicthemer2.exe (ren "%userprofile%\tss\basic\basicthemer2.exe" BasicThemer2_old.exe
22+
echo The basic theme has been disabled) else (echo The basic theme is already disabled)
23+
24+
set /P c=Do you want to restart explorer ?[Y\N]?
25+
if /I "%c%" EQU "Y" (TASKKILL /f /im explorer.exe
26+
start explorer.exe)
27+
if /I "%c%" EQU "N" (goto :MSG)
28+
29+
:MSG
30+
echo Task completed
31+
pause
32+
goto :FIN
33+
34+
:ANNULATION
35+
echo Task aborted
36+
pause
37+
38+
:FIN
39+
End

0 commit comments

Comments
 (0)