forked from esc0rtd3w/firestick-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtual-hotspot-gui.cmd
51 lines (29 loc) · 921 Bytes
/
virtual-hotspot-gui.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
@echo off
:reset
title Amazon FireStick Virtual Hotspot Script [esc0rtd3w]
color 0e
set pathBin="%~dp0bin"
set runShellNoTerminateAndWait=cmd /k
set runShellNoTerminate=start cmd /k
set runShellWaitNoTerminate=start /wait cmd /k
set runShellTerminateAndWait=cmd /c
set runShellTerminate=start cmd /c
set runShellWaitTerminate=start /wait cmd /c
set _color="%~dp0bin\cocolor.exe"
set extractRAR="%~dp0bin\rar.exe" -y x
set extractZIP="%~dp0bin\unzip.exe" -o
set virtualRouterCMD="%~dp0bin\virtualrouter.exe"
set virtualRouterGUI="%~dp0bin\virtualrouter-gui.exe"
set sleep="%~dp0bin\wait.exe"
set rm=rmdir /s /q
set adb="%~dp0bin\adb.exe"
set adbKill=%adb% kill-server
set adbStart="%adb% start-server
set adbWait=%adb% wait-for-device
set msgbox="%~dp0bin\msgbox.exe"
taskkill /f /im VirtualRouter.exe
taskkill /f /im VirtualRouterHostConsole.exe
cls
%runShellTerminate% %virtualRouterGUI%
cls
:end