-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSR-71.bat
50 lines (41 loc) · 1.21 KB
/
SR-71.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
@echo off
REM --> Check for permissions
IF '%PROCESSOR_ARCHITECTURE%' EQU 'amd64' (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\icacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\icacls.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"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:test
C:\Python34\py.exe test
if errorlevel 3 (
cls
echo Installing Python3 prerequisite for %PROCESSOR_ARCHITECTURE% processor architecture.
if %PROCESSOR_ARCHITECTURE%==x86 (
msiexec /qb+ /i resources\python-3.4.4.msi
goto test
)
msiexec /qb+ /i resources\python-3.4.4.amd64.msi
goto test
)
if errorlevel 2 (
echo Installing/Upgrading prerequisite Python modules
C:\Python34\Scripts\pip.exe install colorama
cls
C:\Python34\py.exe SR_71.py
)
pause