Files
WinPE-ToolKit/Overlay/PE-ToolKit/MainMenu.bat

51 lines
1.3 KiB
Batchfile

@ECHO OFF
TITLE WinPE Toolkit
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