This repository was archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bat
More file actions
62 lines (57 loc) · 3.58 KB
/
build.bat
File metadata and controls
62 lines (57 loc) · 3.58 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
@echo off
:: Check for administrator permissions
:-------------------------------------
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>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"
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"
where /q node || ECHO Cound not find node.js, Please install! && goto :end
echo This script will build Shell Shockers for Electron.
echo Version: 1.2
where /q nativefier || ECHO Could not find nativefier on PATH. Installing... && npm install nativefier -g
set /P c=Which Platform are you trying to build for?[win64/win32/mac/linux64/all]?
if /I "%c%" EQU "win64" goto :win64
if /I "%c%" EQU "win32" goto :win32
if /I "%c%" EQU "mac" goto :darwin
if /I "%c%" EQU "linux64" goto :x8664
if /I "%c%" EQU "all" goto :all
:win64
nativefier --update --name "Shell Shockers" --arch x64 --platform windows --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
pause
goto :end
:win32
nativefier --update --name "Shell Shockers" --arch ia32 --platform windows --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
pause
goto :end
:darwin
nativefier --update --name "Shell Shockers" --arch universal --platform darwin --darwin-dark-mode-support --fast-quit --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
pause
goto :end
:x8664
nativefier --update --name "Shell Shockers" --arch x64 --platform linux --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
:all
nativefier --update --name "Shell Shockers" --arch x64 --platform windows --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
nativefier --update --name "Shell Shockers" --arch ia32 --platform windows --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
nativefier --update --name "Shell Shockers" --arch x64 --platform darwin --darwin-dark-mode-support --fast-quit --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io
nativefier --update --name "Shell Shockers" --arch x64 --platform linux --electron-version 18.2.1 --user-agent firefox --internal-urls "(.*?accounts\.google\.com.*?|.*?shellshockio-181719\.firebaseapp\.com.*?)" --single-instance https://shellshock.io --verbose
goto :end
pause
:end
pause