nsis 第56页
NSIS统计后台访问服务器的脚本-永恒心锁-分享互联网

NSIS统计后台访问服务器的脚本

;统计后台访问服务器的脚本 !AddIncludeDir . !AddPluginDir . !include 'defines.nsh' Name 'Internet' OutFile 'Internet.exe' ShowInstDetails show XPStyle on Page instfiles Section '-bo...
永恒心锁的头像-永恒心锁-分享互联网永恒心锁10年前
031276
NSIS无窗体透明的闪屏效果-永恒心锁-分享互联网

NSIS无窗体透明的闪屏效果

Name '123' OutFile '123.exe' AutoCloseWindow true !include 'MUI.nsh' ;!define MUI_CUSTOMFUNCTION_GUIINIT MUIGUIInit ;!insertmacro MUI_PAGE_WELCOME !insertmacro MUI_LANGUAGE 'Englis...
永恒心锁的头像-永恒心锁-分享互联网永恒心锁10年前
0322212
NSIS检测端口是否被占用-永恒心锁-分享互联网

NSIS检测端口是否被占用

!include 'Ports.nsh' XPStyle on OutFile 'Nsistest.exe' Name 'test' Section 'test' ${Unless} ${TCPPortOpen} 8000 MessageBox MB_OK 'httpd running' ${EndUnless} ${If} ${UDPPortOpen} 1...
永恒心锁的头像-永恒心锁-分享互联网永恒心锁10年前
0385115
NSIS驱动安装插件脚本-永恒心锁-分享互联网

NSIS驱动安装插件脚本

!AddPluginDir . Name 'InstDrv.dll test' OutFile 'InstDrv-Test.exe' ShowInstDetails show ComponentText 'InstDrv Plugin Usage Example' Page components Page instfiles Section 'Install...
永恒心锁的头像-永恒心锁-分享互联网永恒心锁10年前
0312214
自定义结束页面范例-永恒心锁-分享互联网

自定义结束页面范例

############################################# !include 'MUI2.nsh' var Label ############################################# Name 'Modern UI Test' OutFile 'WelcomeFinish.exe' RequestE...
永恒心锁的头像-永恒心锁-分享互联网永恒心锁10年前
025340