scripts/Windows/install_service_fabric.ps1
if (-not ((test-path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2017\Community") -or (test-path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2019\Community") -or (test-path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2019\Preview"))) { Write-Host "Service Fabric requires VS 2017 or VS 2019" -ForegroundColor Yellow return } Write-Host "Installing Service Fabric 7.0" -ForegroundColor Cyan # install runtime Write-Host "Downloading Service Fabric Runtime..." $exePath = "$env:TEMP\MicrosoftServiceFabricRuntime.exe" (New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/0/0/f/00fbca28-0a64-4c9a-a3a3-b11763ee17e5/MicrosoftServiceFabric.7.0.470.9590.exe', $exePath) Write-Host "Installing Service Fabric Runtime..." cmd /c start /wait $exePath /AcceptEULA Remove-Item $exePath Write-Host "Installing Service Fabric SDK..." Write-Host "Downloading..." $msiPath = "$env:TEMP\MicrosoftServiceFabricSDK.msi" (New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/0/0/f/00fbca28-0a64-4c9a-a3a3-b11763ee17e5/MicrosoftServiceFabricSDK.4.0.470.msi', $msiPath) Write-Host "Installing..." cmd /c start /wait msiexec /i "$msiPath" /quiet Remove-Item $msiPath Remove-Item "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\Service Fabric Local Cluster Manager.lnk" -Force Write-Host "Service Fabric installed" -ForegroundColor Green |