aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormattifestation <mattgraeber@gmail.com>2014-03-16 10:09:52 -0400
committermattifestation <mattgraeber@gmail.com>2014-03-16 10:09:52 -0400
commit5fabddcf1d17bd2a11ded4fd4c5fc35ff1095103 (patch)
tree8d63f9c8a17c3c4f99ada404e7916776f5ee94ba /README.md
parent202e8f4b367397cabf0cfc39f279e7ba5d7d793b (diff)
downloadPowerSploit-5fabddcf1d17bd2a11ded4fd4c5fc35ff1095103.tar.gz
PowerSploit-5fabddcf1d17bd2a11ded4fd4c5fc35ff1095103.zip
Fixed error in PowerSploit ADS removal one-liner
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6db060b..20c0417 100644
--- a/README.md
+++ b/README.md
@@ -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.