-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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