Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Added Registry Editor to Tools
Cleaned some code for CMD tool
Added a bugfix for Explorer++
Added Microsoft Paint XP
Added Calculator from Windows XP (WPE)
Added function to open Windows Calculator (Standalone)

Out of Alpha!
  • Loading branch information
alphe-lbp authored Nov 13, 2023
1 parent 9f42a7d commit 55cf450
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 16 deletions.
28 changes: 19 additions & 9 deletions line.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
title Windows Pocket Edition - Version Alpha 0.0.3 (Build: AA)
title Windows Pocket Edition - Version Beta 0.1.0 (Build: AB)
echo ....Welcome to Windows Pocket Edition....
pause
cls
Expand Down Expand Up @@ -125,17 +125,27 @@ goto start

:plist
echo 1) Notepad
echo 2) Task Manager
echo 3) Games [DIR]
echo 4) Return to Start List
echo 2) Calculator
echo 3) Task Manager
echo 4) Games [DIR]
echo 5) Return to Start List
set /p poption=Select a program from the Programs List:
if %poption%==1 call :notepadappcls
if %poption%==4 goto rstart
if %poption%==2 call :taskmgrcls
if %poption%==3 call :glist
if %poption%==5 goto rstart
if %poption%==2 call :calccls
if %poption%==3 call :taskmgrcls
if %poption%==4 call :glist
goto plist
exit /b

:calccls
cls
goto calc

:calc
calc
goto plist

:glist
echo.
echo Games [DIR]
Expand Down Expand Up @@ -199,7 +209,7 @@ cls

:aboutwpe
cls
echo Windows Pocket Edition - Version Alpha 0.0.3 (Build: AA) - Made by The Kernel Brothers
echo Windows Pocket Edition - Version Beta 0.1.0 (Build: AB) - Made by The Kernel Brothers
echo.
echo Credits: Tjari
pause
Expand All @@ -210,4 +220,4 @@ cls
goto start

:discord
start https://discord.gg/ZPhV9kT3gq
start https://discord.gg/ZPhV9kT3gq
24 changes: 17 additions & 7 deletions startnet.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
title Windows Pocket Edition - Version Alpha 0.0.4 (Build: AF)
title Windows Pocket Edition - Version Beta 0.1.0 (Build: B0)
echo ....Welcome to Windows Pocket Edition....
pause
cls
Expand Down Expand Up @@ -132,17 +132,27 @@ goto start
echo 1) Notepad
echo 2) Task Manager
echo 3) Paint
echo 4) Games [DIR]
echo 5) Return to Start List
echo 4) Calculator
echo 5) Games [DIR]
echo 6) Return to Start List
set /p poption=Select a program from the Programs List:
if %poption%==1 call :notepadappcls
if %poption%==5 goto rstart
if %poption%==6 goto rstart
if %poption%==2 call :taskmgrcls
if %poption%==4 call :glist
if %poption%==4 call :calccls
if %poption%==5 call :glist
if %poption%==3 call:paint
goto plist
exit /b

:calccls
cls
goto calc

:calc
calc.exe
goto plist

:paint
cls
mspaint
Expand Down Expand Up @@ -211,9 +221,9 @@ cls

:aboutwpe
cls
echo Windows Pocket Edition - Version Alpha 0.0.3 (Build: AF) - Made by The Kernel Brothers
echo Windows Pocket Edition - Version Beta 0.1.0 (Build: B0) - Made by The Kernel Brothers
echo.
echo Credits: Tjari
pause
cls
goto start
goto start

0 comments on commit 55cf450

Please sign in to comment.