Skip to content

Instantly share code, notes, and snippets.

@JonnyOThan
Last active September 23, 2025 21:15
Show Gist options
  • Select an option

  • Save JonnyOThan/03d7152a846f7dffa561c1cf8b7ccca9 to your computer and use it in GitHub Desktop.

Select an option

Save JonnyOThan/03d7152a846f7dffa561c1cf8b7ccca9 to your computer and use it in GitHub Desktop.
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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment