-
-
Save watson/67442d8f53eefdac1dca0b41ed7563d0 to your computer and use it in GitHub Desktop.
Install Redis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Host "Downloading Redis..." -ForegroundColor Cyan | |
$redisRoot = "$env:SYSTEMDRIVE\Redis" | |
$zipPath = "$($env:USERPROFILE)\redis-2.8.19.zip" | |
(New-Object Net.WebClient).DownloadFile('https://github.com/MSOpenTech/redis/releases/download/win-2.8.19/redis-2.8.19.zip', $zipPath) | |
7z x $zipPath -y -o"$redisRoot" | Out-Null | |
del $zipPath | |
Write-Host "Installing Redis as a Windows service..." | |
& "$redisRoot\redis-server.exe" --service-install | |
Write-Host "Starting Redis service..." | |
& "$redisRoot\redis-server.exe" --service-start | |
Write-Host "Redis installed" -ForegroundColor Green |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment