Last active
December 15, 2020 07:44
-
-
Save packetvitality/b2703380106b583c02cd50dfe246a9e4 to your computer and use it in GitHub Desktop.
Quick & Dirty PS check for SUNBURST DLL locations
This file contains hidden or 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
if (test-path -path "C:\Program Files (x86)\N-able Technologies\Windows Software Probe\bin\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\Solarwinds\Network Topology Mapper\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\Solarwinds\Network Topology Mapper\Service\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\DPI\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\NCM\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\Interfaces.Discovery\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\DPA\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\HardwareHealth\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\Interfaces\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\NetFlowTrafficAnalysis\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
if (test-path -path "C:\Program Files (x86)\SolarWinds\Orion\NPM\SolarWinds.Orion.Core.BusinessLayer.dll") {Write-Output "Exist!"} | |
credit for locations: | |
https://gist.github.com/KyleHanslovan/0c8a491104cc55d6e4bd9bff7214a99e#file-dll_locations-txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment