-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
790 lines (727 loc) · 36.2 KB
/
Program.cs
File metadata and controls
790 lines (727 loc) · 36.2 KB
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System.Net;
using Microsoft.Win32;
using System.IO.Compression;
using System.ComponentModel;
using System.Security;
namespace console
{
internal class Program
{ [DllImport("kernel32.dll", ExactSpelling = true)]
private static extern IntPtr GetConsoleWindow();
private static IntPtr ThisConsole = GetConsoleWindow();
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
private const int HIDE = 0;
private const int MAXIMIZE = 3;
private const int MINIMIZE = 6;
private const int RESTORE = 9;
static bool DownloadCompleted = false;
static bool FirstTime = true;
static int currentTimes = 1;
static int Times = 0;
static WebClient client = new WebClient();
static void Main(string[] args)
{
Console.SetWindowSize(Console.LargestWindowWidth, Console.LargestWindowHeight);
ShowWindow(ThisConsole, MAXIMIZE);
string username;
string command;
WriteIntroduction();
//Turns text color to gray
Console.ForegroundColor = ConsoleColor.Gray;
try
{
StreamReader sr = new StreamReader("data/data.txt");
username = sr.ReadLine();
sr.Close();
}
catch
{
try
{
StreamWriter sw = new StreamWriter("data/data.txt");
//Tries to get username if is null then will try again
Console.Write("Tell us your username: ");
username = Convert.ToString(Console.ReadLine()).ToLower(); ;
if (username != "") { }
else while (username == "")
{
Console.Write("Tell us your username: ");
username = Convert.ToString(Console.ReadLine()).ToLower();
if (username != "") { }
else { }
}
sw.WriteLine(username);
sw.Close();
Console.Clear();
WriteIntroduction();
}
catch
{
Directory.CreateDirectory("data");
StreamWriter sw = new StreamWriter("data/data.txt");
//Tries to get username if is null then will try again
Console.Write("Tell us your username: ");
username = Convert.ToString(Console.ReadLine()).ToLower();
if (username != "") { }
else while (username == "")
{
Console.Write("Tell us your username: ");
username = Convert.ToString(Console.ReadLine()).ToLower();
if (username != "") { }
else { }
}
sw.WriteLine(username);
sw.Close();
Console.Clear();
WriteIntroduction();
}
}
//Commands section
while (true){
//Prefix
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write("<");
//Name
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write($"{username.ToLower().Replace(" ", "-")}@juple-terminal");
//Prefix
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write("> ~$ ");
Console.ForegroundColor = ConsoleColor.Cyan;
//Commands with arguments
command = Convert.ToString(Console.ReadLine()).ToLower();
//Echo command reapeats your arguments
if (command.Contains("echo"))
{
//Deletes first 'echo' from message
var regex = new Regex(Regex.Escape("echo "));
if (command == "echo")
{
Console.ForegroundColor = ConsoleColor.Red; Console.Write("Invalid usage!\n"); Thread.Sleep(50);
Console.Write("Right usage:"); Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write(" echo"); Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.Write(" <message>"); Console.ForegroundColor = ConsoleColor.Red;
Console.Write(".\n\n");
}
else if (regex.Replace(command, "", 1) == "") {
Console.ForegroundColor = ConsoleColor.Red; Console.Write("Invalid usage!\n"); Thread.Sleep(50);
Console.Write("Right usage:"); Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write(" echo"); Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.Write(" <message>"); Console.ForegroundColor = ConsoleColor.Red;
Console.Write(".\n\n");
}
else
{
string work = regex.Replace(command, "", 1);
string[] chars = new string[command.Length];
//Will put every char of message to individual string to array
for (int i = 0; i < command.Length; i++)
{
if (work == "") break;
string letter = work.Substring(0, 1);
chars[i] = letter;
work = work.Remove(0, 1);
}
//Will write every letter of message with break 10 miliseconds between them
foreach (string lett in chars)
{
Console.Write(lett);
Thread.Sleep(10);
}
Console.WriteLine();
Console.WriteLine();
Thread.Sleep(50);
}
}
//Changename
else if (command.Contains("changename"))
{
//Checks if user wrote command without arguments
var regex = new Regex(Regex.Escape("changename "));
if (command == "changename")
{
Console.ForegroundColor = ConsoleColor.Red; Console.Write("Invalid usage!\n"); Thread.Sleep(50);
Console.Write("Right usage:"); Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write(" changename"); Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.Write(" <name>"); Console.ForegroundColor = ConsoleColor.Red;
Console.Write(".\n\n");
}
else if (regex.Replace(command, "", 1) == "")
{
Console.ForegroundColor = ConsoleColor.Red; Console.Write("Invalid usage!\n"); Thread.Sleep(50);
Console.Write("Right usage:"); Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write(" changename"); Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.Write(" <name>"); Console.ForegroundColor = ConsoleColor.Red;
Console.Write(".\n\n");
}
//If user wrote arguments it will change name to what user typed
else
{
//Change username in current session
string work = regex.Replace(command, "", 1);
Console.Write("Do you really want to change your name to {0}(y/n): ", work);
string answer = Convert.ToString(Console.ReadLine().ToLower());
if (answer == "y") username = work.Replace(" ", "-").ToLower();
else if (answer == "n") { }
else
{
while (true)
{
Thread.Sleep(50);
Console.Write("Do you really want to change your name to {0}(y/n): ", work);
answer = Convert.ToString(Console.ReadLine().ToLower());
if (answer == "y") { username = work.Replace(" ", "-").ToLower(); break; }
else if (answer == "n") { break; }
}
}
//Chnage user
try
{
StreamWriter sw = new StreamWriter("data/data.txt");
sw.WriteLine(username);
sw.Close();
}
catch
{
Directory.CreateDirectory("data");
StreamWriter sw = new StreamWriter("data/data.txt");
sw.WriteLine(username);
sw.Close();
}
//Enter
Console.WriteLine();
}
}
//Download project
else if (command.Contains("--d") && command.Contains("projects "))
{
WebClient webClient = new WebClient();
//Quiet argument
if (command.Contains("--q"))
{
string work1 = command.Replace("projects ", "").Replace("--d ", "").Replace("--q ", "");
switch (work1)
{
//Calculator download
case "calculator":
try
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgress);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadDoneCalcQuiet);
Uri uri = new Uri("https://drive.google.com/uc?id=1Qkj3KnFFGOMPbtSB47NFaDuGgE6Umt3K&export=download");
client.DownloadFileAsync(uri, "Calc-setup.zip");
Console.WriteLine("Downloading...");
while (!DownloadCompleted)
{
}
DownloadCompleted = false;
FirstTime = true;
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Something happend while we tried to download installator for this program.\n" +
"Please check your internet connection and try again\n");
Console.ForegroundColor = ConsoleColor.Cyan;
}
break;
//PC Components Monitor download
case "pc-components-monitor":
try
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgress);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadDonePCMonitQuiet);
Uri uri = new Uri("https://drive.google.com/uc?id=1gygNC51rgtR5kBvWJnObpy6UYtfEe01P&export=download");
client.DownloadFileAsync(uri, "Calc-setup.zip");
Console.WriteLine("Downloading...");
while (!DownloadCompleted)
{
}
DownloadCompleted = false;
FirstTime = true;
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Something happend while we tried to download installator for this program.\n" +
"Please check your internet connection and try again\n");
Console.ForegroundColor = ConsoleColor.Cyan;
}
break;
//Tic-Tac download
case "tictactoe":
Console.WriteLine("Downloading...");
try
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgress);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadDoneTicTacToeQuiet);
Uri uri = new Uri("https://drive.google.com/uc?id=18z80CD1k88EwReQzky7iAZju8dDdNeGe&export=download");
client.DownloadFileAsync(uri, "Calc-setup.zip");
Console.WriteLine("Downloading...");
while (!DownloadCompleted)
{
}
DownloadCompleted = false;
FirstTime = true;
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Something happend while we tried to download installator for this program.\n" +
"Please check your internet connection and try again\n");
Console.ForegroundColor = ConsoleColor.Cyan;
}
break;
default:
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("Coulnd't find project!\n" +
"For list of all projects write '");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write("projects");
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("'!");
Console.ForegroundColor = ConsoleColor.Cyan;
break;
}
}
//Without quiet argument
else
{
string work = command.Replace("projects --d ", "");
work.ToLower();
//Without quite argument
switch (work)
{
//Calculator download
case "calculator":
try
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgress);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadDoneCalculator);
Uri uri = new Uri("https://drive.google.com/uc?id=1Qkj3KnFFGOMPbtSB47NFaDuGgE6Umt3K&export=download");
client.DownloadFileAsync(uri, "Calc-setup.zip");
Console.WriteLine("Downloading...");
while (!DownloadCompleted)
{
}
DownloadCompleted = false;
FirstTime = true;
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Something happend while we tried to download installator for this program.\n" +
"Please check your internet connection and try again\n");
Console.ForegroundColor = ConsoleColor.Cyan;
}
;
break;
//PC Components Monitor download
case "pc-components-monitor":
try
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgress);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadDonePCMonit);
Uri uri = new Uri("https://drive.google.com/uc?id=1gygNC51rgtR5kBvWJnObpy6UYtfEe01P&export=download");
client.DownloadFileAsync(uri, "Calc-setup.zip");
Console.WriteLine("Downloading...");
while (!DownloadCompleted)
{
}
DownloadCompleted = false;
FirstTime = true;
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Something happend while we tried to download installator for this program.\n" +
"Please check your internet connection and try again\n");
Console.ForegroundColor = ConsoleColor.Cyan;
}
break;
//Tic-Tac download
case "tictactoe":
try
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgress);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadDoneTicTacToe);
Uri uri = new Uri("https://drive.google.com/uc?id=18z80CD1k88EwReQzky7iAZju8dDdNeGe&export=download");
client.DownloadFileAsync(uri, "Calc-setup.zip");
Console.WriteLine("Downloading...");
while (!DownloadCompleted)
{
}
DownloadCompleted = false;
FirstTime = true;
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Something happend while we tried to download installator for this program.\n" +
"Please check your internet connection and try again\n");
Console.ForegroundColor = ConsoleColor.Cyan;
}
break;
default:
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("Coulnd't find project!\n" +
"For list of all projects write '");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write("projects");
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("'!");
Console.ForegroundColor = ConsoleColor.Cyan;
break;
}
}
}
else if (command.Contains("open"))
{
string work = command.Replace("open ", "");
if (!(work.Contains("http://") && work.Contains("www.")))
{
work = "https://www." + work;
}
else if (!(work.Contains("http://")) && work.Contains("www."))
{
work = "https://" + work;
}
try
{
try
{
Process.Start(work);
}
catch
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
work = work.Replace("&", "^&");
Process.Start(new ProcessStartInfo(work) { UseShellExecute = true });
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
Process.Start("xdg-open", work);
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
Process.Start("open", work);
}
else
{
throw;
}
}
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("The URL wasn't in correct format. \n" +
"Correct format: www.website.com!");
Console.ForegroundColor = ConsoleColor.Cyan;
}
}
else
{
Commands.GetCommand(command);
}
}
}
public static void WriteIntroduction()
{
//Changes text color to red
Console.ForegroundColor = ConsoleColor.Green;
Console.Title = "Juple - The best terminal you will ever see!";
//String for first dashed line
string dash = "┌-------------------------------------------------------------------------------------------------------------┐";
//Centers text
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
//Writes dashed line
Console.WriteLine(dash);
Thread.Sleep(50);
//Centers text
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
//Writes welcome line
Console.WriteLine("| ,--. ,--. ,--. ,--. ,--. ,--. |");
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
Console.WriteLine("| | | | | ,---. | | ,---. ,---. ,--,--,--. ,---. ,-' '-. ,---. | |,--.,--. ,---. | | ,---. |");
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
Console.WriteLine("| | |.'.| || .-. :| || .--'| .-. || || .-. : '-. .-'| .-. | ,--. | || || || .-. || || .-. : |");
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
Console.WriteLine("| | ,'. || --.| || `--.' '-' '| | | || --. | | ' '-' ' | '-' /' '' '| '-' '| || --. |");
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
Console.WriteLine("| '--' '--' `----'`--' `---' `---' `--`--`--' `----' `--' `---' `-----' `----' | |-' `--' `----' |");
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
Console.WriteLine("| `--' |");
Thread.Sleep(50);
//Centerws text
Console.SetCursorPosition((Console.WindowWidth - dash.Length) / 2, Console.CursorTop);
//Writes bottom dashed line
Console.WriteLine("└-------------------------------------------------------------------------------------------------------------┘");
Thread.Sleep(50);
//Turns text color to red and writes warning
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write("\n Welcome to Juple - a simple terminal made by Jupiter!\n For list of all commands type '");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write("help");
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write("'.\n");
Thread.Sleep(50);
Console.Write("\n");
Thread.Sleep(50);
}
public static void WriteCommandsList()
{
string[] commands = {"Command", "help", "ver", "clear", "projects", "echo", "changename", "open" , "github", "terminal.exit"};
string[] descriptions = {"Description", "Will show you this list of all commands", "Shows you version of terminal you are running", "Clear all commands you wrote", "Gives you list of all my projects" ,"Repeats message you write", "Change your name to what you want", "Opens website you input", "Bring you to my GitHub page", "Exits the Juple terminal"};
string[] args = { "Arguments\n", "", "", "", "--d --q <project>", "<message>", "<name>", "<URL>", "", "", ""};
for (int i = 0; i < commands.Length; i++)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write(commands[i]);
Thread.Sleep(50);
Console.ForegroundColor = ConsoleColor.Red;
Console.SetCursorPosition(Console.WindowWidth / 8, Console.CursorTop);
Console.Write(args[i]);
Thread.Sleep(50);
Console.ForegroundColor = ConsoleColor.Yellow;
Console.SetCursorPosition(Console.WindowWidth / 4, Console.CursorTop);
Console.Write(descriptions[i] + "\n");
Thread.Sleep(50);
}
}
public static void WriteProjectsList()
{
string[] projects = {"Calculator", "PC-Components-Monitor", "TicTacToe", "And more is coming..." };
string[] descriptions = { "A simple calculator made with windows forms", "An app for monitoring components of your computer", "Simple TicTacToe game made with windows forms", "Find all my projects at https://github.com/Jupiter090" };
for (int i = 0; i < projects.Length; i++)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write(projects[i]);
Thread.Sleep(50);
Console.ForegroundColor = ConsoleColor.Yellow;
Console.SetCursorPosition(Console.WindowWidth / 8, Console.CursorTop);
Console.Write(descriptions[i] + "\n");
Thread.Sleep(50);
}
}
public static void ClearCurrentConsoleLine()
{
int currentLineCursor = Console.CursorTop;
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write(new string(' ', Console.WindowWidth));
Console.SetCursorPosition(0, currentLineCursor);
}
private static void DownloadProgress(object sender, DownloadProgressChangedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
Console.SetCursorPosition(0, Console.CursorTop - 1);
ClearCurrentConsoleLine();
double bytesIn = double.Parse(e.BytesReceived.ToString());
double totalBytes = double.Parse(e.TotalBytesToReceive.ToString());
double percentage = bytesIn / totalBytes * 100;
Console.Write("[");
for (int i = 0; i < 10; i++)
{
if(i < Math.Round(percentage / 10))
{
Console.ForegroundColor = ConsoleColor.Green;
Console.Write("-");
Console.ForegroundColor = ConsoleColor.Cyan;
}
else
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write("-");
Console.ForegroundColor = ConsoleColor.Cyan;
}
}
Console.WriteLine("] " + Math.Round(percentage / 10) * 10 + "%");
currentTimes++;
}
private static void DownloadDoneCalcQuiet(object sender, AsyncCompletedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
try
{
ZipFile.ExtractToDirectory("Calc-setup.zip", Directory.GetCurrentDirectory());
}catch
{ }
File.Delete("Calc-setup.zip");
Process process = new Process();
process.StartInfo.FileName = "msiexec";
process.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
process.StartInfo.Arguments = "/qb /i Calc-Setup.msi";
process.StartInfo.Verb = "runas";
process.Start();
process.WaitForExit(60000);
File.Delete("Calc-Setup.msi");
Times = 0;
currentTimes = 1;
DownloadCompleted = true;
Console.WriteLine("Download completed!");
Console.WriteLine();
}
private static void DownloadDonePCMonitQuiet(object sender, AsyncCompletedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
try {
ZipFile.ExtractToDirectory("Calc-Setup.zip", Directory.GetCurrentDirectory());
}
catch
{
}
File.Delete("Calc-Setup.zip");
Process process2 = new Process();
process2.StartInfo.FileName = "msiexec";
process2.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
process2.StartInfo.Arguments = "/qb /i PC-Components-Monitor-Setup.msi";
process2.StartInfo.Verb = "runas";
process2.Start();
process2.WaitForExit(60000);
File.Delete("PC-Components-Monitor-Setup.msi");
Times = 0;
currentTimes = 1;
DownloadCompleted = true;
Console.WriteLine("Download completed!");
Console.WriteLine();
}
private static void DownloadDoneTicTacToeQuiet(object sender, AsyncCompletedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
try
{
ZipFile.ExtractToDirectory("Calc-Setup.zip", Directory.GetCurrentDirectory());
}
catch
{
}
File.Delete("Calc-Setup.zip");
Process process2 = new Process();
process2.StartInfo.FileName = "msiexec";
process2.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
process2.StartInfo.Arguments = "/qb /i TicTacToe-Setup.msi";
process2.StartInfo.Verb = "runas";
process2.Start();
process2.WaitForExit(60000);
File.Delete("TicTacToe-Setup.msi");
Times = 0;
currentTimes = 1;
DownloadCompleted = true;
Console.WriteLine("Download completed!");
Console.WriteLine();
}
private static void DownloadDoneTicTacToe(object sender, AsyncCompletedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
try
{
ZipFile.ExtractToDirectory("Calc-Setup.zip", Directory.GetCurrentDirectory());
}
catch
{
}
File.Delete("Calc-Setup.zip");
Process process2 = new Process();
process2.StartInfo.FileName = "msiexec";
process2.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
process2.StartInfo.Arguments = "/i TicTacToe-Setup.msi";
process2.StartInfo.Verb = "runas";
process2.Start();
process2.WaitForExit(60000);
File.Delete("TicTacToe-Setup.msi");
Times = 0;
currentTimes = 1;
DownloadCompleted = true;
Console.WriteLine("Download completed!");
Console.WriteLine();
}
private static void DownloadDoneCalculator(object sender, AsyncCompletedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
try
{
ZipFile.ExtractToDirectory("Calc-Setup.zip", Directory.GetCurrentDirectory());
}
catch
{
}
File.Delete("Calc-Setup.zip");
Process process2 = new Process();
process2.StartInfo.FileName = "msiexec";
process2.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
process2.StartInfo.Arguments = "/i Calc-Setup.msi";
process2.StartInfo.Verb = "runas";
process2.Start();
process2.WaitForExit(60000);
File.Delete("Calc-Setup.msi");
Times = 0;
currentTimes = 1;
DownloadCompleted = true;
Console.WriteLine("Download completed!");
Console.WriteLine();
}
private static void DownloadDonePCMonit(object sender, AsyncCompletedEventArgs e)
{
Times++;
int time = Times;
while (currentTimes != time)
{
}
try
{
ZipFile.ExtractToDirectory("Calc-Setup.zip", Directory.GetCurrentDirectory());
}
catch
{
}
File.Delete("Calc-Setup.zip");
Process process2 = new Process();
process2.StartInfo.FileName = "msiexec";
process2.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
process2.StartInfo.Arguments = "/i PC-Components-Stats-Setup.msi";
process2.StartInfo.Verb = "runas";
process2.Start();
process2.WaitForExit(60000);
File.Delete("PC-Components-Stats-Setup.msi");
Times = 0;
currentTimes = 1;
DownloadCompleted = true;
Console.WriteLine("Download completed!");
Console.WriteLine();
}
}
}