-
Notifications
You must be signed in to change notification settings - Fork 1
/
startnet.cmd
245 lines (216 loc) · 4.1 KB
/
startnet.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
@echo off
title Windows Pocket Edition - Version Beta 0.1.1 (Build: B1)
echo ....Welcome to Windows Pocket Edition....
pause
cls
:start
echo ....Start List....
echo 1) Shutdown
echo 2) File Manager
echo 3) Programs list
echo 4) Tools
echo 5) Control Panel
echo 6) About WPE
set /p soption=Select an option from the Start List:
if %soption%==1 call :sdown
if %soption%==3 call :plistcls
if %soption%==4 call :toolscls
if %soption%==5 call :cpanelcls
if %soption%==6 call :aboutwpe
if %soption%==2 call :explorer
echo.
goto start
:sdown
exit
:plistcls
cls
goto plist
:toolscls
cls
goto tools
:cpanelcls
cls
goto cpanel
:explorer
start fm.exe
cls
goto start
:tools
echo ....Tools....
echo 1) Ping a website
echo 2) Ping google.com
echo 3) DiskPart
echo 4) Command Prompt
echo 5) Registry Editor
echo 6) 7zip
echo 7) NTPWEdit
echo 8) Go Back
set /p toption=Select a tool:
if %toption%==1 call :pingsite
if %toption%==2 call :pingg
if %toption%==3 call :diskp
if %toption%==4 call :cmd
if %toption%==8 goto rstart
if %toption%==6 call :7zip
if %toption%==5 call :reg
if %toption%==7 call :ntp
goto tools
:ntp
cls
ntp
goto tools
:7zip
cls
cd "7-Zip"
7zFM
cd..
goto tools
:cmd
cls
echo Make sure to type 'exit' when you are done!
pause
conhost
cls
goto tools
:reg
cls
regedit
goto tools
:pingsite
echo.
set /p toption=Enter the website you want to ping:
ping %toption%
pause
cls
goto tools
:pingg
echo.
ping google.com
pause
cls
goto tools
:diskp
cls
diskpart
cls
goto tools
:cpanel
echo ....Control Panel....
echo Adjust your computer's settings.
echo.
echo 1) Change terminal colors
echo 2) Exit Control Panel
set /p coption=Choose a setting to change:
if %coption%==1 call :scolor
if %coption%==2 goto rstart
goto cpanel
:scolor
cls
echo Color Change
echo.
echo 0 = Black 8 = Gray
echo 1 = Blue 9 = Light Blue
echo 2 = Green A = Light Green
echo 3 = Aqua B = Light Aqua
echo 4 = Red C = Light Red
echo 5 = Purple D = Light Purple
echo 6 = Yellow E = Light Yellow
echo 7 = White F = Bright White
echo.
set /p bcoption=Choose the Background color:
echo.
set /p fgoption=Choose the Text color:
color %bcoption%%fgoption%
cls
goto cpanel
:rstart
cls
goto start
:plist
echo 1) Notepad
echo 2) Task Manager
echo 3) Paint
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%==6 goto rstart
if %poption%==2 call :taskmgrcls
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
goto plist
:glist
echo.
echo Games [DIR]
echo 1) The Game Of Life
echo 2) Close folder
set /p goption=Select a game from the Games List:
if %goption%==1 call :tgol
if %goption%==2 goto plistcls
goto glist
:notepadappcls
cls
goto notepadapp
:notepadapp
notepad.exe
goto plist
:taskmgrcls
cls
goto taskmgr
:taskmgr
taskmgr
goto plist
:tgol
cls
echo ....Game Of Life!....
echo.
echo Character 1: David
echo Character 2: Lisa
echo Character 3: Archie
set /p chargol=Enter the name of the character of your choice!
if %chargol%==1 call :David
if %chargol%==2 call :Lisa
if %chargol%==3 call :Archie
cls
echo.
echo Please enter the name of the character of your choice.
goto tgol
:David
cls
echo Lady voice: David
pause
echo.
echo Lady voice: Daaaaaaviiiiiid
pause
echo.
echo Lady voice: Oh look he is waking up!
echo Man voice: Ah he is so handsome!
pause
cls
echo Doctor: (to you) Welcome to the world! (to the lady and man) Congratulations on your newborn baby!
echo Dad: Thank you very much doctor!
echo Doctor: You can be dismissed from the hospital anytime you want.
echo Mum: Thank you!
pause
cls
:aboutwpe
cls
echo Windows Pocket Edition - Version Beta 0.1.1 (Build: B1) - Made by The Kernel Brothers
echo.
echo Contributors: Tjari
pause
cls
goto start