Skip to content

Instantly share code, notes, and snippets.

@ion-storm
Forked from stephent23/PS Script: SUNBURST DLL
Created December 15, 2020 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ion-storm/b145d76e7ec89eb0de0bb63523ec01fa to your computer and use it in GitHub Desktop.
Save ion-storm/b145d76e7ec89eb0de0bb63523ec01fa 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