-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelfx_Install_French.ps1
25 lines (19 loc) · 1008 Bytes
/
Selfx_Install_French.ps1
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
# Définir l'URL du projet GitHub et le chemin de destination
$url = "https://github.com/damienvanrobaeys/SelfX/archive/refs/heads/main.zip"
$destination = "$env:USERPROFILE\Desktop\SelfX-main.zip"
# Télécharger le projet GitHub
Invoke-WebRequest -Uri $url -OutFile $destination
# Extraire le zip
$extractPath = "$env:USERPROFILE\Desktop\SelfX-main"
Expand-Archive -Path $destination -DestinationPath $extractPath -Force
# Se déplacer dans le répertoire extrait et installer la version standard
Set-Location -Path "$extractPath\SelfX-main\SelfX Standard"
# Exécutez la commande d'installation appropriée ici
.\Install_tool.ps1
# Demander où est le dossier "SelfX FR"
$sourceXmlPath = Read-Host -Prompt 'Enter the path to the "SelfX FR" folder'
# Ajouter les fichiers "\*.xml"
$sourceXmlPath = Join-Path -Path $sourceXmlPath -ChildPath "*.xml"
# Remplacer les fichiers XML
$destinationXmlPath = "$env:LOCALAPPDATA\SelfX\"
Copy-Item -Path $sourceXmlPath -Destination $destinationXmlPath -Force