PoshCode Archive  Artifact [a7c8b353a2]

Artifact a7c8b353a22d6718cbef3b77dd4815077638e969b26c33e6b3a286180842f4e9:

  • File listdlls-possible-draft.ps1 — part of check-in [7e53d2874c] at 2018-06-10 13:46:05 on branch trunk — incompleted (user: greg zakharov size: 2201)

# encoding: ascii
# api: powershell
# title: listdlls(possible draft)
# description: incompleted
# version: 0.1
# type: function
# author: greg zakharov
# license: CC0
# function: Get-DllList
# x-poshcode-id: 4803
# x-archived: 2014-01-21T08:53:28
# x-published: 2014-01-16T18:24:00
#
#
Set-Alias listdlls Get-DllList

function Get-DllList {
  [CmdletBinding()]
  param(
    [Parameter(Position=0)]
    [Alias('n')]
    [String]$ProcessName,
    
    [Parameter(Position=0)]
    [Alias('id')]
    [String]$ProcessID,
    
    [Parameter(Position=0)]
    [Alias('d')]
    [String]$DllName,
    
    [Alias('v')]
    [Switch]$Version
  )
  
  begin {
    $del = '-' * 75
    
    function tbl([Diagnostics.ProcessModule[]]$modules) {
      $res = $modules | select @{Name='Base'; Expression={'0x' + `
      $_.BaseAddress.ToString('x8')}},@{Name='Size'; Expression={'0x' + `
      $_.ModuleMemorySize.ToString('x')}},@{Name='Path'; Expression={$_.ModuleName}}
      
      return ($res | ft -a)
    }
    
    function get([Diagnostics.Process[]]$scope) {
      $scope | % {
        if ($_.MainModule -ne $null) {
          "`n{0} pid: {1}`n$del" -f $_.MainModule.ModuleName.ToLower(), $_.Id
          tbl $_.Modules
        }
      }
    }
  }
  process {
    if (![String]::IsNullOrEmpty($ProcessName)) {
      get ([Diagnostics.Process]::GetProcessesByName($ProcessName))
    }
    elseif ($ProcessID -ge 0) {
      $p = [Diagnostics.Process]::GetProcessById($ProcessID)
      "`n{0} pid: {1}`n$del" -f $_.MainModule.ModuleName.ToLower(), $_.Id
      tbl $_.Modules
    }
    elseif (![String]::IsNullOrEmpty($DllName)) {
      if ($Version) {
        $isit = (gcm -ea 0 -c Application $DllName).FileVersionInfo | fl
        
        if ($isit -eq $null) {
          Write-Host Can not find module directly. -fo Red
        }
        else {$isit}
      }
      
      [Diagnostics.Process]::GetProcesses() | % {
        if ($_.Modules -match $DllName) {
          '{0, 25} pid: {1}' -f $_.ProcessName, $_.Id
        }
      }
    }
    else {
      get ([Diagnostics.Process]::GetProcesses())
    }
  }
  end {}
}