Files
PowerShellMafia-PowerSploit/PETools/PETools.psm1
T
bitform 65ebaea880 Added Get-PEHeader. PETools is now a module.
Get-PEHeader is a 32 and 64-bit in-memory and on-disk PE parsing
utility.

PETools is now a PowerShell module that can be loaded with
`Import-Module PETools`
2012-07-22 15:16:22 -04:00

4 lines
176 B
PowerShell

# Pull in all of the PE Tools
. (Join-Path $PSScriptRoot Get-PEHeader.ps1)
. (Join-Path $PSScriptRoot Get-DllLoadPath.ps1)
. (Join-Path $PSScriptRoot Get-PEArchitecture.ps1)