Skip to content

Instantly share code, notes, and snippets.

@rrptex
Last active November 6, 2025 10:13
Show Gist options
  • Select an option

  • Save rrptex/894d02990b85cbae0718623c022c719c to your computer and use it in GitHub Desktop.

Select an option

Save rrptex/894d02990b85cbae0718623c022c719c to your computer and use it in GitHub Desktop.
Exibe metadados de um aplicativo executável no ms-dos
powershell -Command "(Get-Item 'C:\JWSLite\JWSLite.exe').VersionInfo.FileVersion"
powershell -Command "(Get-Item 'C:\JWSLite\JWSLite.exe').VersionInfo.CompanyName"
FileVersion Versão completa e formatada do arquivo powershell -c "(gci 'C:\path\file.exe').VersionInfo.FileVersion"
ProductVersion Versão completa e formatada do produto powershell -c "(gci 'C:\path\file.exe').VersionInfo.ProductVersion"
FileDescription Descrição do propósito do arquivo powershell -c "(gci 'C:\path\file.exe').VersionInfo.FileDescription"
ProductName Nome do produto ao qual o arquivo pertence powershell -c "(gci 'C:\path\file.exe').VersionInfo.ProductName"
CompanyName Nome da empresa que criou o arquivo. powershell -c "(gci 'C:\path\file.exe').VersionInfo.CompanyName"
LegalCopyright Informações de Copyright. powershell -c "(gci 'C:\path\file.exe').VersionInfo.LegalCopyright"
OriginalFilename O nome original do arquivo quando foi compilado powershell -c "(gci 'C:\path\file.exe').VersionInfo.OriginalFilename"
InternalName Nome interno usado pelo binário. powershell -c "(gci 'C:\path\file.exe').VersionInfo.InternalName"
Language O idioma dos recursos de versão. powershell -c "(gci 'C:\path\file.exe').VersionInfo.Language"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment