window上可执行程序打包发布

工具
Inno Setup Compiler

脚本(xxx.iss)

; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName “VideoRecord”
#define MyAppVersion “2.1”
#define MyAppPublisher “HARMO ROBOTICS, Inc.”
#define MyAppURL “http://www.harmorobotics.com/”
#define MyAppExeName “VideoRecord.exe”
#define MyAppAssocName MyAppName + " File"
#define MyAppAssocExt “.myp”
#define MyAppAssocKey StringChange(MyAppAssocName, " ", “”) + MyAppAssocExt

[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)

//每个app id不一样,可以修改
AppId={ {58045396-FF1F-472F-A282-77093180FD44}
AppName={#MyAppName}
AppVersion={#MyAppVe

猜你喜欢

转载自blog.csdn.net/xt18971492243/article/details/115361150