Inital Commit

Core winPEL: Added background and init script to load menu
MainMenu: Added basic functionality and first tool.
Tools:
Added Dell OwnerTag removal tool/script
This commit is contained in:
2023-01-28 20:21:31 +01:00
commit c55b319638
6 changed files with 56 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

51
PE-ToolKit/MainMenu.bat Normal file
View File

@@ -0,0 +1,51 @@
@ECHO OFF
REM ##################################################################
REM # #
REM # @description: #
REM # Bootable Windows toolkit
REM # #
REM # @project: WinPE-ToolKit #
REM # @author: Bram Prieshof #
REM ##################################################################
ECHO --------------------------
ECHO Welcome to WinPE Toolkit
ECHO by Brammp
ECHO --------------------------
REM Load main Menu on start
GOTO MainMenu
:DellRemoveTag
DellRemoveTag\platformtags64.exe DOT
DellRemoveTag\platformtags64.exe DAT
echo Owner tag removed, Press any key to return to the main menu . . .
pause >null
GOTO MainMenu
:MainMenu
COLOR 17
ECHO.
ECHO .........................
ECHO Main Menu
ECHO .........................
ECHO.
ECHO 1 - Remove Owner tag on Dell systems
ECHO.
ECHO 100 - Poweroff
ECHO 101 - Reboot
ECHO 102 - Drop to PE shell
ECHO.
SET /P M=Type a number then press ENTER:
IF %M%==1 GOTO :DellRemoveTag
IF %M%==100 wpeutil shutdown
IF %M%==101 wpeutil reboot
IF %M%==102 GOTO EOF
:EOF
echo Dropping to PE shell
cls
color 07