Skip to content

Instantly share code, notes, and snippets.

@JonnyOThan
JonnyOThan / dllversions.md
Last active September 23, 2025 21:15
Print Dll Versions
  1. shift-right-click in your root ksp directory and "open powershell window"
  2. paste the below code and hit enter
  3. the output will be in the dll_versions.txt file

Get-ChildItem -Path . -Recurse -Filter "*.dll" | ForEach-Object { $v = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_.FullName); "$($_.FullName) - ProductVersion: $($v.ProductVersion), FileVersion: $($v.FileVersion)" } | Out-File dll_versions.txt