pstools.psd1
@{ RootModule = 'pstools.psm1' ModuleVersion = '8.1.0.15' CompatiblePSEditions = 'Core' GUID = 'de1b363a-38a0-4921-837f-926c9fad2603' Author = 'greg zakharov' Copyright = 'MIT' Description = @' Useful utilities for Win10 in everyday experience. Added: Get-PeHeaders Get-PeBaseReloc Get-PeCert Get-PeDebug Get-PeDelayImport Get-PeException Get-PeExport Get-PeImport Get-PeResources and some WinDbg scripts Fixed: minor bugs The documentation is not ready yet (sad but true). Development in progress. '@ PowerShellVersion = '7.2' AliasesToExport = @( 'clockres', 'clpws', 'coreinfo', 'ent', 'handle', 'loadord', 'lsess', 'pipelist', 'psdump', 'psresume', 'pstree', 'psuspend', 'streams', 'strings', 'time', 'vadump', 'whois' ) FunctionsToExport = @( 'Clear-AppCompatCache', 'Clear-PsWorkingSet', 'Find-Links', 'Get-ApiSet', 'Get-ClockRes', 'Get-CpuCache', 'Get-CpuId', 'Get-CredProviders', 'Get-Entropy', 'Get-LoadOrder', 'Get-LogonSessions', 'Get-PeBaseReloc', 'Get-PeCert', 'Get-PeDebug', 'Get-PeDelayImport', 'Get-PeException', 'Get-PeExport', 'Get-PeHeaders', 'Get-PeImport', 'Get-PeManifest', 'Get-PeResources', 'Get-PipeList', 'Get-PsDump', 'Get-PsHandle', 'Get-PsHandle', 'Get-PsTree', 'Get-PsVMInfo', 'Get-Streams', 'Get-Strings', 'Get-SysModules', 'Measure-Execution', 'Resume-PsProcess', 'Show-Covered', 'Show-WhoIs', 'Suspend-PsProcess' ) FileList = @( 'etc\parser\peview.ps1', 'etc\windbg\GetIrpsOfLsass.js', 'etc\windbg\GetKeBootTime.js', 'etc\windbg\GetSysTimerResolution.js', 'etc\windbg\InvertedFunctionTable.js', 'lib\accel.ps1', 'lib\dynamic.ps1', 'lib\pcall.ps1', 'lib\types.ps1', 'lib\utils.ps1', 'usr\Clear-AppCompatCache.ps1', 'usr\Clear-PsWorkingSet.ps1', 'usr\Find-Links.ps1', 'usr\Get-ApiSet.ps1', 'usr\Get-ClockRes.ps1', 'usr\Get-CpuCache.ps1', 'usr\Get-CpuId.ps1', 'usr\Get-CredProviders.ps1', 'usr\Get-Entropy.ps1', 'usr\Get-LoadOrder.ps1', 'usr\Get-LogonSessions.ps1', 'usr\Get-PeBaseReloc.ps1', 'usr\Get-PeCert.ps1', 'usr\Get-PeDebug.ps1', 'usr\Get-PeDelayImport.ps1', 'usr\Get-PeException.ps1', 'usr\Get-PeExport.ps1', 'usr\Get-PeHeaders.ps1', 'usr\Get-PeImport.ps1', 'usr\Get-PeManifest.ps1', 'usr\Get-PeResources.ps1', 'usr\Get-PipeList.ps1', 'usr\Get-PsDump.ps1', 'usr\Get-PsHandle.ps1', 'usr\Get-PsTree.ps1', 'usr\Get-PsVMInfo.ps1', 'usr\Get-Streams.ps1', 'usr\Get-Strings.ps1', 'usr\Get-SysModules.ps1', 'usr\Measure-Execution.ps1', 'usr\Resume-PsProcess.ps1', 'usr\Show-Covered.ps1', 'usr\Show-WhoIs.ps1', 'usr\Suspend-PsProcess.ps1', 'pstools.psd1', 'pstools.psm1' ) } |