Fixed URL for Install-AtomicRedTeam (#632)

This commit is contained in:
Tony M Lambert
2019-11-10 19:43:28 -06:00
committed by Michael Haag
parent eb9f0fbcd6
commit 6ea465cf61
@@ -14,7 +14,7 @@ We made installing Atomic Red Team extremely easy.
Once the environment is ready, run PowerShell as an adminstrator and run the following PowerShell one liner:
`IEX (New-Object Net.WebClient).DownloadString('http://psInstall.AtomicRedTeam.com'); Install-AtomicRedTeam -verbose`
`IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/execution-frameworks/Invoke-AtomicRedTeam/install-atomicredteam.ps1'); Install-AtomicRedTeam -verbose`
[Source](install-atomicredteam.ps1)
@@ -65,7 +65,7 @@ Invoke-AtomicTest All
This assumes your atomics folder is in the default location of `C:\AtomicRedTeam\atomic-red-team-master\atomics`
You can overide the default path to the atomics folder using the `$PSDefaultParameterValues` preference variable as shown below.
You can override the default path to the atomics folder using the `$PSDefaultParameterValues` preference variable as shown below.
```
$PSDefaultParameterValues = @{"Invoke-AtomicTest:PathToAtomicsFolder"="C:\Users\myuser\Documents\code\atomic-red-team\atomics"}