commit c55b319638a15c874c48b6bb1c4e8ddc0fe5122d Author: Bram Prieshof Date: Sat Jan 28 20:21:31 2023 +0100 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 diff --git a/PE-ToolKit/DellRemoveTag/PlatTags.exe b/PE-ToolKit/DellRemoveTag/PlatTags.exe new file mode 100644 index 0000000..fc4ded4 Binary files /dev/null and b/PE-ToolKit/DellRemoveTag/PlatTags.exe differ diff --git a/PE-ToolKit/DellRemoveTag/PlatformTags32.exe b/PE-ToolKit/DellRemoveTag/PlatformTags32.exe new file mode 100644 index 0000000..fff3df1 Binary files /dev/null and b/PE-ToolKit/DellRemoveTag/PlatformTags32.exe differ diff --git a/PE-ToolKit/DellRemoveTag/PlatformTags64.exe b/PE-ToolKit/DellRemoveTag/PlatformTags64.exe new file mode 100644 index 0000000..a5d5bdc Binary files /dev/null and b/PE-ToolKit/DellRemoveTag/PlatformTags64.exe differ diff --git a/PE-ToolKit/MainMenu.bat b/PE-ToolKit/MainMenu.bat new file mode 100644 index 0000000..e54e98c --- /dev/null +++ b/PE-ToolKit/MainMenu.bat @@ -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 \ No newline at end of file diff --git a/Windows/System32/startnet.cmd b/Windows/System32/startnet.cmd new file mode 100644 index 0000000..3fd5f0c --- /dev/null +++ b/Windows/System32/startnet.cmd @@ -0,0 +1,5 @@ +@echo off +wpeinit +REM Load menu from PE-Toolkit +cd \PE-ToolKit +MainMenu.bat \ No newline at end of file diff --git a/Windows/System32/winpe.jpg b/Windows/System32/winpe.jpg new file mode 100644 index 0000000..e14b7ed Binary files /dev/null and b/Windows/System32/winpe.jpg differ