Skip to content

Instantly share code, notes, and snippets.

@stephent23
Last active December 15, 2020 13:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stephent23/4156c2ba0fbc032266c3110bc16b3c4d to your computer and use it in GitHub Desktop.
Save stephent23/4156c2ba0fbc032266c3110bc16b3c4d to your computer and use it in GitHub Desktop.
PowerShell Script to identify the SolarWinds.Orion.Core.BusinessLayer.dll on host and return the location/file hash
$path_ = "C:\"
$list = @(Get-ChildItem -Path $path_ -Name "SolarWinds.Orion.Core.BusinessLayer.dll" -Recurse)
$list | % {
$fullPath = $path_ + $_
Get-FileHash $fullPath -Algorithm SHA256 | Format-List
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment