[jdk8u-dev] RFR: 8345358: Some DLL Files are missing Windows Properties

KIRIYAMA Takuya duke at openjdk.org
Wed Mar 5 09:08:03 UTC 2025


On Tue, 10 Dec 2024 22:45:15 GMT, Alexey Bakhtin <abakhtin at openjdk.org> wrote:

> Add missing properties for the j2gss.dll and sspi_bridge.dll files

Thank you for fixing.
I found this bug by verifying some Windows Properties of the .dll and .exe files in the binary with the PowerShell and reported it to JBS.


powershell -ExecutionPolicy Remotesigned .\PropsList.ps1 .\jdk


- PropsList.ps1


$path = $Args[0]

$files = Get-ChildItem -Path $path -include *.exe,*.dll -Recurse

foreach($f in $files) {

  $out = $f.VersionInfo.FileName

  $out += ";" + $f.VersionInfo.LegalCopyright
  $out += ";" + $f.VersionInfo.CompanyName
  $out += ";" + $f.VersionInfo.FileDescription
  $out += ";" + $f.VersionInfo.FileVersion
  $out += ";" + $f.VersionInfo.ProductName
  $out += ";" + $f.VersionInfo.ProductVersion
  
  Write-Host $out
}

-------------

PR Comment: https://git.openjdk.org/jdk8u-dev/pull/611#issuecomment-2700292690


More information about the jdk8u-dev mailing list