Last active
November 6, 2025 10:13
-
-
Save rrptex/894d02990b85cbae0718623c022c719c to your computer and use it in GitHub Desktop.
Exibe metadados de um aplicativo executável no ms-dos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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