-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwindows_start.bat
58 lines (46 loc) · 1.43 KB
/
windows_start.bat
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
@echo off
setlocal
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else (
goto gotAdmin
)
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" (
del "%temp%\getadmin.vbs"
)
pushd "%CD%"
CD /D "%~dp0"
goto :eof :: or use 'exit /b'
:--------------------------------------
set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs"
:: Define repository URL and clone directory
set "repoURL=https://github.com/sachinsenal0x64/FIXARR"
set "cloneDir=FIXARR"
:: Check if fixarr.py exists
if not exist "%cloneDir%\fixarr.py" (
echo fixarr.py does not exist. Cloning Git repository...
git clone %repoURL% %cloneDir%
)
:: Change to the clone directory
cd /d %cloneDir%
:: Print message and install packages
echo Installing Packages......
pip install -r requirements.txt
:: Run fixarr.py without displaying the console window
set python_path=python
set code_file=fixarr.py
start cmd.exe /k %python_path% %code_file%
endlocal
@REM @CMD.EXE