forked from avivasolutionsnl/mercury-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.ps1
88 lines (77 loc) · 3.07 KB
/
setup.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#Requires -RunAsAdministrator
Param(
[string]
$currentFolder = "$PSScriptRoot",
[string]
$licenseFile = "$PSScriptRoot/license.xml",
[string]
$composeFile = "$PSScriptRoot/docker-compose.yml"
)
Function Test-CommandExists {
Param ($command)
$oldPreference = $ErrorActionPreference
$ErrorActionPreference = 'Stop'
try {
if (Get-Command $command) {
return $true
}
} catch {
Write-Host "$command does not exist";
return $false
} finally {
$ErrorActionPreference = $oldPreference
}
}
$ErrorActionPreference = 'Stop'
$ProgressPreference = 'SilentlyContinue'
If (-Not (Test-Path($licenseFile))) {
throw "license.xml file at $licenseFile not found"
}
If (-Not (Test-Path("$composeFile"))) {
throw "docker-compose.yml file at $composeFile not found"
}
Write-Host "Setting the file permissions...."
takeown.exe /R /F $currentFolder
icacls.exe $currentFolder /t /c /GRANT 'Users:F'
icacls.exe $currentFolder /t /c /GRANT 'Authenticated Users:F'
Write-Host "Setting file permissions finished!" -ForegroundColor Green
$dockerIsInstalled = ((Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall") | Where-Object { $_.GetValue( "DisplayName" ) -like "*docker*" } ).Length;
if ($dockerIsInstalled -eq 0) {
$dockerInstalexe = "$currentFolder/dockerInstal.exe"
If (-Not (Test-Path($dockerInstalexe))) {
$dockerInstalDownload = "$currentFolder/dockerInstal.exe"
Write-Host "Downloading docker...."
Invoke-WebRequest -Uri https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe -OutFile $dockerInstalDownload
Move-Item -Path $dockerInstalDownload -Destination $dockerInstalexe
Write-Host "Download of docker finished!" -ForegroundColor Green
}
else {
Write-Host "Docker already downloaded!" -ForegroundColor Green
}
Write-Host "Installing docker...."
start-process -wait $dockerInstalexe " install --quiet"
Write-Host "Docker installed!" -ForegroundColor Green
Write-Host "Starting docker...."
start-process "$env:ProgramFiles\docker\Docker\Docker for Windows.exe"
Write-Host "Docker started!" -ForegroundColor Green
}else{
Write-Host "Docker already installed!" -ForegroundColor Green
}
If (!(Test-CommandExists "az")) {
$azureclimsi = "$currentFolder/azurecli.msi"
If (-Not (Test-Path($azureclimsi))) {
Write-Host "Downloading the azure cli...."
Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile $azureclimsi
Write-Host "Download of azure cli finished!" -ForegroundColor Green
}
else {
Write-Host "Azure cli already downloaded!" -ForegroundColor Green
}
Write-Host "Installing the azure cli...."
Start-Process msiexec.exe -Wait -ArgumentList '/I $azureclimsi /quiet'
Write-Host "Installation of azure cli finished!" -ForegroundColor Green
}
else {
Write-Host "Azure cli already installed!" -ForegroundColor Green
}
Write-Host "Setup finished! Please restart for changes to take effect" -ForegroundColor Green