Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Created December 23, 2015 21:56
Show Gist options
  • Save FeodorFitsner/166df2ddf0dbb1b2b9c4 to your computer and use it in GitHub Desktop.
Save FeodorFitsner/166df2ddf0dbb1b2b9c4 to your computer and use it in GitHub Desktop.
Install Redis
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