From c19f924de9e85eda941e5aedd501223469f7351d Mon Sep 17 00:00:00 2001 From: Chris Long Date: Sun, 7 Apr 2019 23:42:09 -0700 Subject: [PATCH] Update install-redteam.ps1 --- Vagrant/scripts/install-redteam.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrant/scripts/install-redteam.ps1 b/Vagrant/scripts/install-redteam.ps1 index c5011a4..b5a3bfe 100644 --- a/Vagrant/scripts/install-redteam.ps1 +++ b/Vagrant/scripts/install-redteam.ps1 @@ -42,7 +42,7 @@ $powersploitRepoPath = "C:\Users\vagrant\AppData\Local\Temp\powersploit.zip" if (-not (Test-Path $powersploitRepoPath)) { Invoke-WebRequest -Uri "$powersploitDownloadUrl" -OutFile $powersploitRepoPath Expand-Archive -path "$powersploitRepoPath" -destinationpath 'c:\Tools\PowerSploit' -Force - Copy-Item "c:\Tools\PowerSploit\PowerSploit-master\*" "$Env:windir\System32\WindowsPowerShell\v1.0\Modules" -Recurse -Force + Copy-Item "c:\Tools\PowerSploit\PowerSploit-dev\*" "$Env:windir\System32\WindowsPowerShell\v1.0\Modules" -Recurse -Force } else { Write-Host "PowerSploit was already installed. Moving On." }