Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
wizz13150 authored Mar 8, 2023
1 parent 41a30d4 commit 7f23e66
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
15 changes: 15 additions & 0 deletions RTM_Bootstrap.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off

set DOWNLOAD_URL=https://raw.githubusercontent.com/wizz13150/RaptoreumStuff/main/RTM_Bootstrap.ps1
set DOWNLOAD_PATH=%CD%\RTM_Bootstrap.ps1

echo Downloading file from %DOWNLOAD_URL% ...
powershell.exe -Command "& { Invoke-WebRequest -Uri '%DOWNLOAD_URL%' -OutFile '%DOWNLOAD_PATH%' }"

if exist "%DOWNLOAD_PATH%" (
echo File downloaded successfully!
echo Running RTM_Bootstrap.ps1...
powershell.exe -ExecutionPolicy RemoteSigned -File "%DOWNLOAD_PATH%"
) else (
echo Failed to download file.
)
15 changes: 15 additions & 0 deletions RTM_Bootstrap_Es.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off

set DOWNLOAD_URL=https://raw.githubusercontent.com/wizz13150/RaptoreumStuff/main/RTM_Bootstrap_Es.ps1
set DOWNLOAD_PATH=%CD%\RTM_Bootstrap_Es.ps1

echo Descargando archivo desde %DOWNLOAD_URL% ...
powershell.exe -Command "& { Invoke-WebRequest -Uri '%DOWNLOAD_URL%' -OutFile '%DOWNLOAD_PATH%' }"

if exist "%DOWNLOAD_PATH%" (
echo Archivo descargado exitosamente!
echo Ejecutando RTM_Bootstrap_Es.ps1...
powershell.exe -ExecutionPolicy RemoteSigned -File "%DOWNLOAD_PATH%"
) else (
echo Fallo al descargar el archivo.
)
15 changes: 15 additions & 0 deletions RTM_Bootstrap_Fr.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off

set DOWNLOAD_URL=https://raw.githubusercontent.com/wizz13150/RaptoreumStuff/main/RTM_Bootstrap_Fr.ps1
set DOWNLOAD_PATH=%CD%\RTM_Bootstrap_Fr.ps1

echo Telechargement du fichier depuis %DOWNLOAD_URL% ...
powershell.exe -Command "& { Invoke-WebRequest -Uri '%DOWNLOAD_URL%' -OutFile '%DOWNLOAD_PATH%' }"

if exist "%DOWNLOAD_PATH%" (
echo Fichier telecharge avec succes !
echo Execution de RTM_Bootstrap_Fr.ps1...
powershell.exe -ExecutionPolicy RemoteSigned -File "%DOWNLOAD_PATH%"
) else (
echo Echec du telechargement du fichier.
)

0 comments on commit 7f23e66

Please sign in to comment.