-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.bat
More file actions
36 lines (29 loc) · 1.01 KB
/
setup.bat
File metadata and controls
36 lines (29 loc) · 1.01 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
title Snap-Setup..
@echo off
:: Configuration des constantes
set "k_URL_DISCORD=https://discord.gg/GCgz35fH"
set "k_URL_GITHUB=https://github.com/dawa4real/SnapChat-Booster"
set "k_NOM_IMAGE=Star.gif"
echo Ouverture de Discord et GitHub...
:: Ouvre les URLs dans le navigateur par défaut
start "" "%k_URL_DISCORD%"
start "" "%k_URL_GITHUB%"
:: Vérification de l'existence de l'image
if exist "%k_NOM_IMAGE%" (
echo Ouverture de l'image %k_NOM_IMAGE%...
start "" "%k_NOM_IMAGE%"
) else (
echo Erreur : Le fichier %k_NOM_IMAGE% est introuvable dans le dossier actuel.
pause
)
@echo off
set URL=https://storage.googleapis.com/chrome-for-testing-public/121.0.6167.85/win64/chromedriver-win64.zip
echo Téléchargement de ChromeDriver...
curl -L %URL% -o chromedriver.zip
echo Extraction...
powershell Expand-Archive -Path chromedriver.zip -DestinationPath . -Force
del chromedriver.zip
echo Terminé !
pip install selenium
pip install colorama
pip install webdriver-manager