diff options
author | mattifestation <mattgraeber@gmail.com> | 2014-01-25 11:45:59 -0500 |
---|---|---|
committer | mattifestation <mattgraeber@gmail.com> | 2014-01-25 11:45:59 -0500 |
commit | 7f0267db7c15e20cbee63533824e42517a28ed90 (patch) | |
tree | eea8f5b76afd656d802f09a3f0368aa215dac838 /PowerSploit.psm1 | |
parent | 3d564121d7ce5c5fa297bd62a2ceefa6387d6cc6 (diff) | |
download | PowerSploit-7f0267db7c15e20cbee63533824e42517a28ed90.tar.gz PowerSploit-7f0267db7c15e20cbee63533824e42517a28ed90.zip |
Disable non-standard cmdlet verb checking
Diffstat (limited to 'PowerSploit.psm1')
-rw-r--r-- | PowerSploit.psm1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PowerSploit.psm1 b/PowerSploit.psm1 index 5ea3b62..550b8be 100644 --- a/PowerSploit.psm1 +++ b/PowerSploit.psm1 @@ -1 +1 @@ -Get-ChildItem $PSScriptRoot | ? { $_.PSIsContainer } | % { Import-Module $_.FullName } +Get-ChildItem $PSScriptRoot | ? { $_.PSIsContainer } | % { Import-Module $_.FullName -DisableNameChecking } |