吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3552|回复: 17
收起左侧

[原创工具] 版本信息生成工具

  [复制链接]
chishingchan 发表于 2023-4-5 16:09

应坛友所求:版本信息生成工具 - 第4页 - 『原创发布区』 - 吾爱破解 - LCG - LSG |安卓破解|病毒分析|[url]www.52pojie.cn[/url]

我也将本人之前写的可执行文件版本信息发布
2.png

AutoIt3 源码:
[HTML] 纯文本查看 复制代码
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseUpx=y
#AutoIt3Wrapper_Compile_Both=y
#AutoIt3Wrapper_UseX64=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
 
Local $Width = 480
Local $Height = 100
Local $x, $y
 
GUICreate("可执行文件版本信息", $Width, $Height, @DesktopWidth - $Width - 8, 4, -1, BitOR(16+8, 256+8))
 
Local $InputBrowse = GUICtrlCreateButton("浏览(&B)", 8, 10, 52, 20)
$InputFile = GUICtrlCreateInput("", 70, 12, 400, 16)
GUICtrlSetState(-1, 8)
GUICtrlCreateLabel("合法版权", 10, 34)
$LegalCopyright = GUICtrlCreateInput("", 70, 32, 400, 16)
GUICtrlCreateLabel("公司名称", 10, 54)
$CompanyName = GUICtrlCreateInput("", 70, 52, 400, 16)
GUICtrlCreateLabel("文件版本", 10, 74)
$FileVersion = GUICtrlCreateInput("", 70, 72, 400, 16)
 
GUISetState(@SW_SHOW)
 
While 1
    $x = GUICtrlRead($InputFile)
    If $y <> $x Then
        If FileExists(GUICtrlRead($InputFile)) Then
            GUICtrlSetData($LegalCopyright, FileGetVersion(GUICtrlRead($InputFile), "LegalCopyright"))
            GUICtrlSetData($CompanyName, FileGetVersion(GUICtrlRead($InputFile), "CompanyName"))
            GUICtrlSetData($FileVersion, FileGetVersion(GUICtrlRead($InputFile)))
            Local $IS = "AppCopyright=" & GUICtrlRead($LegalCopyright) & @CRLF & "AppPublisher=" & GUICtrlRead($CompanyName) & @CRLF & "VersionInfoVersion=" & GUICtrlRead($FileVersion)
            ClipPut($IS)
        EndIf
    EndIf
    $y = $x
    Switch GUIGetMsg()
        Case -3
            ExitLoop
        Case $InputBrowse
            GUICtrlSetData($InputFile, FileOpenDialog("请选择一个可执行文件。", @WindowsDir & "", "可执行文件 (*.exe)", 1))
    EndSwitch
WEnd


使用方法:
1、按浏览选择文件
2、将可执行文件拖到第一栏

使用后,信息会被复制到剪贴板,信息适用于 Inno Setup 脚本。

注意:附件文件共两个,32位和64位,如发现某个获取的不正确请更改。
获取文件版本信息.7z (840.89 KB, 下载次数: 80)

免费评分

参与人数 2吾爱币 +8 热心值 +2 收起 理由
asylm + 1 + 1 热心回复!
风之暇想 + 7 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

LYF2001 发表于 2023-4-7 16:32
来了,感谢分享啊,虽然我用不到
yuangencai 发表于 2023-4-8 21:28
t711s 发表于 2023-4-8 23:31
FXZ0203 发表于 2023-4-9 18:33
感谢分享
521wuyanfei 发表于 2023-4-9 18:35
感谢分享
Kanye 发表于 2023-4-9 19:59
looks good to me
yubao0205 发表于 2023-4-9 20:04
这个好,以后就方便了
Reset1 发表于 2023-4-13 10:09
可以修改APK文件版本信息吗
heaty 发表于 2023-4-13 10:18
感谢分享。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-8-29 08:40

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表