-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallation.ps1
70 lines (63 loc) · 2.61 KB
/
installation.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
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
63
64
65
66
67
68
69
70
$installationPath = "$($Env:Programfiles)"
$currentPath = "$(Get-Location)"
$programPath = $currentPath + "\dist\search"
$verifyPath = $installationPath + "\search\"
If (Test-Path $verifyPath) {
try {
Remove-Item $verifyPath -Recurse
Write-Host "Previous installation removed" -ForegroundColor Green
} catch {
Write-Host "Could not remove the previous installation" -ForegroundColor Red
Exit 1
}
if (Test-Path $programPath) {
try {
Copy-Item -Path $programPath -Destination $verifyPath -Recurse
Write-Host "moved program" -ForegroundColor Green
} catch {
Write-Host "Could not move the program" -ForegroundColor Red
Exit 1
}
try {
$oldpath = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH).path
if ($oldpath.split(';') -like $verifyPath) {
Write-Host "the environment variable already exists" -ForegroundColor Cyan
} else {
$newpath = "$oldpath;$verifyPath"
Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newpath
Write-Host "Environment variable created" -ForegroundColor Green
}
} catch {
Host "We could not create your environment variable you will have to do it manually." -ForegroundColor Red
}
} else {
Write-Host "program files do not exist" -ForegroundColor Red
Exit 1
}
} Else {
if (Test-Path $programPath) {
try {
Copy-Item -Path $programPath -Destination $verifyPath -Recurse
Write-Host "moved program" -ForegroundColor Green
} catch {
Write-Host "Could not move the program" -ForegroundColor Red
Exit 1
}
try {
$oldpath = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH).path
if ($oldpath.split(';') -like $verifyPath) {
Write-Host "the environment variable already exists" -ForegroundColor Cyan
} else {
$newpath = "$oldpath;$verifyPath"
Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newpath
Write-Host "Environment variable created" -ForegroundColor Green
}
} catch {
Host "We could not create your environment variable you will have to do it manually." -ForegroundColor Red
}
} else {
Write-Host "program files do not exist" -ForegroundColor Red
Exit 1
}
}
Write-Host "Installation process completed" -ForegroundColor Cyan