Skip to content

Instantly share code, notes, and snippets.

@absane
Created May 17, 2022 14:14
Show Gist options
  • Save absane/f1bb65b1f26c21b86428d404bda417cb to your computer and use it in GitHub Desktop.
Save absane/f1bb65b1f26c21b86428d404bda417cb to your computer and use it in GitHub Desktop.
@echo off
REM https://www.telerik.com/products/decompiler.aspx
set targetDir="C:\inetpub\SolarWinds - Copy\bin"
set outDir="c:\SWDecompiled"
For /R %targetDir% %%G IN (*.dll) do (
justdecompile /target:"%%G" /out:"%outDir%\%%~nxG"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment