Skip to content

Commit

Permalink
Fixed error in PowerSploit ADS removal one-liner
Browse files Browse the repository at this point in the history
  • Loading branch information
mattifestation committed Mar 16, 2014
1 parent 202e8f4 commit 5fabddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 5fabddc

Please sign in to comment.