- shift-right-click in your root ksp directory and "open powershell window"
- paste the below code and hit enter
- 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