Restructured and added buildScript

This commit is contained in:
2023-03-16 23:50:28 +01:00
parent c55b319638
commit abbce7c6c0
9 changed files with 63 additions and 1 deletions

View File

@@ -0,0 +1,51 @@
@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