永恒心锁的头像-永恒心锁-分享互联网
管理员
永恒心锁,有态度的分享者!
分享一个使用NSIS制作安装包的UI插件-永恒心锁-分享互联网

分享一个使用NSIS制作安装包的UI插件

控件特点 使用Duilib与NSIS结合的方式,UI部分由Duilib来实现,安装流程由NSIS脚本来控制 控件提供了清晰且丰富的接口,完全支持各种应用界面定制要求 支持阴影边框,支持异形窗口安装包界面定...
NSIS 脚本学习-永恒心锁-分享互联网

NSIS 脚本学习

; 安装包信息 !define PRODUCT_NAME 'CoXoo' ; 要修改安装包,快捷方式版本,请修改此常量 !define PRODUCT_VERSION '1.6.1' !define PRODUCT_PUBLISHER 'CoXoo.com' !define PRODUCT_WEB_SITE ...
DotNet版本检测-永恒心锁-分享互联网

DotNet版本检测

; LogicLib extensions for checking Microsoft .NET Framework versions and service packs. ; ; Latests Updates by Brandon Hansen, KG6YPI (RemoteHams.com) ; Dec 26, 2011 - .NET Framewo...
NSIS 选择不同组件-永恒心锁-分享互联网

NSIS 选择不同组件

!define CUST_INI '$PLUGINSDIR\custom.ini' !include Logiclib.nsh !include Sections.nsh !define SEC1_TEXT 'Section One' ;组件1 !define SEC2_TEXT 'Section Two' ;组件2 !define SEC3_TEX...
NSIS 按键皮肤-永恒心锁-分享互联网

NSIS 按键皮肤

; example_MUI.nsi ;-------------------------------- !define VERSION 1.1 !define NAME 'Skinned Button plugin for NSIS' ; The name of the installer Name '${NAME} ${VERSION}' ; The fi...
Oracle Linux v9.0-永恒心锁-分享互联网

Oracle Linux v9.0

Oracle Linux (简称 OL) 是一款完全免费且能 100% 兼容 RHEL 应用程序二进制文件的系统,它是基于 RHEL 的另一个“重构发行版”,与之前的 CentOS 并无本质区别。相比迁移到 Ubuntu、Debian 需...
8个月前
08013
NSIS 托盘提示-永恒心锁-分享互联网

NSIS 托盘提示

Name 'NotifyIcon Example' OutFile 'notifyicon.exe' Icon '${NSISDIR}\Contrib\Graphics\Icons\modern-install-colorful.ico' XPStyle on Section 'ThisNameIsIgnoredSoWhyBother?' InitPlugi...
NSIS 获取CPU-永恒心锁-分享互联网

NSIS 获取CPU

cpudesc::tell Pop $0 ;full identification string in $0 StrCpy $1 $0 4 90 ;pull out four characters after RAM= IntOp $1 1$1 - 10000 ;ignore any leading zeros, the number is not octa...
ubuntu Linux v24.04-永恒心锁-分享互联网

ubuntu Linux v24.04

Ubuntu是基于Debian GNU/Linux,支持x86、amd64(即x64)和ppc架构,由全球化的专业开发团队(Canonical Ltd)打造的开源GNU/Linux操作系统。Ubuntu对GNU/Linux的普及特别是桌面普及作出了巨大贡献...
8个月前
08513
NSIS 自动显示组件-永恒心锁-分享互联网

NSIS 自动显示组件

!include 'UsefulLib.nsh' Name TestSelectSection OutFile 'TestSelectSection.exe' Page components Page instfiles ShowInstDetails show Section '01' SEC01 SectionEnd Section '02' SEC02...