From 3151668a7f485e21b275ab01a4399bc580852188 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Tue, 27 Apr 2021 00:04:08 -0700 Subject: [PATCH] Update install-velociraptor.ps1 --- Vagrant/scripts/install-velociraptor.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrant/scripts/install-velociraptor.ps1 b/Vagrant/scripts/install-velociraptor.ps1 index e25413803..34fc5acbf 100644 --- a/Vagrant/scripts/install-velociraptor.ps1 +++ b/Vagrant/scripts/install-velociraptor.ps1 @@ -16,7 +16,7 @@ Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Determining latest release of Velocir $ProgressPreference = 'SilentlyContinue' $tag = (Invoke-WebRequest "https://api.github.com/repos/Velocidex/velociraptor/releases" -UseBasicParsing | ConvertFrom-Json)[0].tag_name # Workaround hardcoded URL until this issue gets fixed: https://github.com/Velocidex/velociraptor/issues/528 -$velociraptorDownloadUrl = "https://github.com/Velocidex/velociraptor/releases/download/v0.5.7/velociraptor-v0.5.7-windows-amd64.msi" +$velociraptorDownloadUrl = "https://github.com/Velocidex/velociraptor/releases/download/v0.5.8/velociraptor-v0.5.8-windows-amd64.msi" #$velociraptorDownloadUrl = "https://github.com/Velocidex/velociraptor/releases/download/$tag/velociraptor-$tag-windows-amd64.msi" $velociraptorMSIPath = 'C:\Users\vagrant\AppData\Local\Temp\velociraptor.msi' $velociraptorLogFile = 'c:\Users\vagrant\AppData\Local\Temp\velociraptor_install.log'