排序
实现窗口透明、滑动、淡入淡出等动画效果
原本没打算讲这个,但因为在第一讲课后说要讲的那两个API,都要在英文版的API手册里才能找到,故今天改为讲AnimateWindow。 相信大家都见过有些程序在运行弹出界面时带有动画效果,觉得漂亮之余...
局域网使用工具NSIS脚本
!addplugindir 'ResPlugins' #!define NSIS_VERSION_NEW ;;makensis.exe 2.21以后版本请去掉注释。 !include 'LanInfoManager.nsh' !define MUI_ICON '${RES_ICON}' !define MUI_UI '${RES_UI}'...
在卸载页面收集信息
!include nsDialogs.nsh !include LogicLib.nsh OutFile 'Test.EXE' Name 'Test' !include 'MUI2.nsh' BrandingText '永恒心锁www.yhxw3344.net' Page custom ReportPageShow ReportPageLeave !...
NSIS 重启Explorer
FindWindow $0 'Progman' 'Program Manager' System::Call User32::GetWindowThreadProcessId(ir0,*i.r0) System::Call Kernel32::OpenProcess(i0x0001,i,ir0)i.r0 System::Call Kernel32::Term...
NSIS制作安装文件全攻略(二)
#========================================================================================= ; 头文件 !include 'MUI.nsh' !include 'Sections.nsh' !include 'LogicLib.nsh' #============...
使用StdUtils实现任务栏和开始菜单锁定解锁程序图标
Caption 'InvokeShellVerb' OutFile 'InvokeShellVerb.exe' !addincludedir '..\..\Include' !include 'StdUtils.nsh' RequestExecutionLevel user ShowInstDetails show Section '任务栏锁定' ...
NSIS 产生随机数
Function Random Exch $0 Push $1 System::Call 'kernel32::QueryPerformanceCounter(*l.r1)' System::Int64Op $1 % $0 Pop $0 Pop $1 Exch $0 FunctionEnd Push '100' Call Random Pop $0
NSIS 鼠标图标
!include MUI.nsh OutFile SetCursorMUI.exe # Pages... !define MUI_COMPONENTSPAGE_NODESC !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_INSTFILE...
NSIS安装页面每次显示不同连接的脚本
/* <NSIS安装页面每次显示不同连接的脚本> 注释:每点击下一次,再返回上一次页面,就显示不同地址! */ !AddPluginDir '.\' !AddIncludeDir '.\' !include MUI2.nsh !include LogicLib.n...






用户95327106
6小时前0
感谢分享