diff --git a/execution-frameworks/Invoke-AtomicRedTeam/README.md b/execution-frameworks/Invoke-AtomicRedTeam/README.md index 96a7fd4d..6b08f989 100644 --- a/execution-frameworks/Invoke-AtomicRedTeam/README.md +++ b/execution-frameworks/Invoke-AtomicRedTeam/README.md @@ -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"}