diff options
author | mattifestation <mattgraeber@gmail.com> | 2014-03-16 10:09:52 -0400 |
---|---|---|
committer | mattifestation <mattgraeber@gmail.com> | 2014-03-16 10:09:52 -0400 |
commit | 5fabddcf1d17bd2a11ded4fd4c5fc35ff1095103 (patch) | |
tree | 8d63f9c8a17c3c4f99ada404e7916776f5ee94ba /README.md | |
parent | 202e8f4b367397cabf0cfc39f279e7ba5d7d793b (diff) | |
download | PowerSploit-5fabddcf1d17bd2a11ded4fd4c5fc35ff1095103.tar.gz PowerSploit-5fabddcf1d17bd2a11ded4fd4c5fc35ff1095103.zip |
Fixed error in PowerSploit ADS removal one-liner
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -240,7 +240,7 @@ To see the commands imported, type `Get-Command -Module PowerSploit` If you're running PowerShell v3 and you want to remove the annoying 'Do you really want to run scripts downloaded from the Internet' warning, once you've placed PowerSploit into your module path, run the following one-liner: `$Env:PSModulePath.Split(';') | % { if ( Test-Path (Join-Path $_ PowerSploit) ) - {Get-ChildItem -Recurse | Unblock-File} }` + {Get-ChildItem $_ -Recurse | Unblock-File} }` For help on each individual command, Get-Help is your friend. |