Last active
September 4, 2024 19:40
-
-
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
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