Skip to content

Commit

Permalink
V1.1
Browse files Browse the repository at this point in the history
Changelog in der Readme
  • Loading branch information
JDot029 committed Dec 18, 2023
1 parent 0006034 commit cbefad8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 54 deletions.
12 changes: 0 additions & 12 deletions Autorun.bat

This file was deleted.

18 changes: 13 additions & 5 deletions Readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===========================
GMS HINTERGRUND TOOL V 1.0
GMS HINTERGRUND TOOL V 1.1
===========================

Warum?
Expand All @@ -8,13 +8,13 @@ Warum?
damit man sich wieder ein eigenes Hintergrundbild setzen kann.

Wichtig:
- Das Tool funktioniert derzeit nur auf den alten Dell Laptops. Für mehr kompatibilität wird bald gesorgt!
- Das Tool funktioniert mittlerweile einwandfrei auf den Dell Laptops aus den Laptopwagen.

Vorraussetzungen:
- Bild im Format .png oder .jpg
- Bild im Format .jpg

Anleitung:
1. Kopiere dein Bild in diesen Ordner. Stelle sicher, dass es Hintergrund.png heißt.
1. Kopiere dein Bild in diesen Ordner. Stelle sicher, dass es Hintergrund.jpg heißt.
2. Doppelklick auf das Programm Tool.bat und wähle Option 1. Danach option 3 um das Programm zu beenden.
3. Fertig. Jetzt wird das Hintergrundbild automatisch bei jeder anmeldung geladen.
Das kann jedoch manchmal bis zu 5min dauern!
Expand All @@ -33,5 +33,13 @@ Kontakt / Fehler Melden:

Discord: K5G#2093

Readme.md Version 1.2
Changelog:
V1.1:
- Alles in einer Batch Datei
- Fehler im Batch-Code behoben
- Veränderte Readme

Readme.md Version 1.3



45 changes: 8 additions & 37 deletions Tool.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,7 @@ title Hintergrund-Tool
color 0f
goto MENU1
:MENU1
ECHO.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
cls
echo -------------------------------------
ECHO - 1 Tool Installieren
ECHO - 2 Tool deinstallieren
Expand All @@ -49,16 +17,19 @@ IF %menuna%==1 (goto INST)
IF %menuna%==2 (goto DEINST)
IF %menuna%==3 (goto ENDE)
:INST
rmdir H:\TOOL
md H:\TOOL
xcopy "Hintergrund.png" "H:\TOOL\BG.png"
xcopy "Hintergrund.jpg" "H:\TOOL\BG.jpg"
xcopy "Autorun.bat" "C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
xcopy /F "Hintergrund.jpg" "H:\TOOL\Hintergrund.jpg"
cd "C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
echo ^@echo off > autorun.bat
@echo xcopy "H:/TOOL/Hintergrund.jpg" "C:\users\%username%\AppData\Roaming\Microsoft\Windows\Themes\CachedFiles\Temp.jpg\" >> autorun.bat
@echo ren Temp.jpg CachedImage_1366_768_POS4.jpg >> autorun.bat
@echo Installation abgeschlossen!
goto MENU1

:DEINST
del "H:\TOOL\" /F /Q
del "C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Autorun.bat" /F /Q
del "C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\autorun.bat" /F /Q
@echo Deinstallation abgeschlossen!
goto MENU1

Expand Down

0 comments on commit cbefad8

Please sign in to comment.