Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
HTTP2COM/IGPythonService.nsi at master · codeadict/HTTP2COM · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
codeadict
/
HTTP2COM
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
2
Code
Issues
1
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
HTTP2COM
/
IGPythonService.nsi
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
166 lines (131 loc) · 5.27 KB
master
Breadcrumbs
HTTP2COM
/
IGPythonService.nsi
Copy path
Top
File metadata and controls
Code
Blame
166 lines (131 loc) · 5.27 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
BrandingText
"
IGPython HTTP2COM Service
"
;
Passed in from command line:
!define
CONFIG_VERSION
"
0.0.1
"
!define
CONFIG_PROJECT_URL
"
http://www.igpython.co.uk/
"
!define
CONFIG_SHORT_APP_NAME
"
HTTP2COM
"
!define
CONFIG_LONG_APP_NAME
"
IGPython Http2Com
"
!define
CONFIG_PUBLISHER
"
IGPython
"
!define
CONFIG_ICON
"
logo.ico
"
!define
CONFIG_EXECUTABLE
"
IGPythonService.exe
"
!define
CONFIG_OUTPUT_FILE
"
IGPythonServiceSetup.exe
"
!define
INST_KEY
"
Software\${CONFIG_PUBLISHER}\${CONFIG_LONG_APP_NAME}
"
!define
UNINST_KEY
"
Software\Microsoft\Windows\CurrentVersion\Uninstall\${CONFIG_LONG_APP_NAME}
"
!define
UNINSTALL_SHORTCUT
"
Uninstall ${CONFIG_LONG_APP_NAME}.lnk
"
!define
MUI_ICON
"
${CONFIG_ICON}
"
!define
MUI_UNICON
"
${CONFIG_ICON}
"
;
INCLUDES
!addplugindir
"
${CONFIG_PLUGIN_DIR}
"
!addincludedir
"
${CONFIG_PLUGIN_DIR}
"
!include
"
MUI2.nsh
"
!include
InstallOptions.nsh
!define
PRODUCT_NAME
"
${CONFIG_LONG_APP_NAME}
"
;
GENERAL SETTINGS
Name
"
${CONFIG_LONG_APP_NAME}
"
OutFile
"
${CONFIG_OUTPUT_FILE}
"
InstallDir
"
$PROGRAMFILES\${CONFIG_PUBLISHER}\${CONFIG_LONG_APP_NAME}
"
InstallDirRegKey
HKLM
"
${INST_KEY}
"
"
Install_Dir
"
SetCompressor
lzma
SetOverwrite
on
CRCCheck
on
XPStyle
on
Icon
"
${CONFIG_ICON}
"
ReserveFile
"
configuration.ini
"
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Macros
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Function
LaunchService
SetShellVarContext
all
SimpleSC::InstallService
"
IGPython HTTP2COM
"
"
IGPython HTTP2COM
"
"
16
"
"
2
"
"
$INSTDIR\${CONFIG_EXECUTABLE}
"
"
"
"
"
"
"
Pop
$0
SimpleSC::StartService
"
IGPython HTTP2COM
"
"
"
30
Pop
$0
FunctionEnd
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Sections ;;
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Page
Custom
ServiceConfigPage
Function
.onInit
InitPluginsDir
File
/oname
=
$PLUGINSDIR
\configuration.ini
"
configuration.ini
"
FunctionEnd
Section
"
-${CONFIG_LONG_APP_NAME}
"
COM2
SectionIn
RO
ClearErrors
SetShellVarContext
all
SetOutPath
"
$INSTDIR
"
File
${CONFIG_ICON}
File
*.pyd
File
*.dll
File
w9xpopen.exe
File
${CONFIG_EXECUTABLE}
SetOutPath
"
$INSTDIR\config
"
File
/r
config\*.*
IfErrors
0
files_ok
MessageBox
MB_OK
|
MB_ICONEXCLAMATION
"
Installation failed. An error occured writing to the ${CONFIG_LONG_APP_NAME} Folder.
"
Quit
files_ok:
CreateDirectory
"
$SMPROGRAMS\${CONFIG_LONG_APP_NAME}
"
CreateShortCut
"
$SMPROGRAMS\${CONFIG_LONG_APP_NAME}\${UNINSTALL_SHORTCUT}
"
\
"
$INSTDIR\uninstall.exe
"
SectionEnd
Section
-Post
WriteUninstaller
"
$INSTDIR\uninstall.exe
"
WriteRegStr
HKLM
"
${INST_KEY}
"
"
InstallDir
"
$INSTDIR
WriteRegStr
HKLM
"
${INST_KEY}
"
"
Version
"
"
${CONFIG_VERSION}
"
WriteRegStr
HKLM
"
${INST_KEY}
"
"
"
"
$INSTDIR\${CONFIG_EXECUTABLE}
"
WriteRegStr
HKLM
"
${UNINST_KEY}
"
"
DisplayName
"
"
$(^Name)
"
WriteRegStr
HKLM
"
${UNINST_KEY}
"
"
UninstallString
"
"
$INSTDIR\uninstall.exe
"
WriteRegStr
HKLM
"
${UNINST_KEY}
"
"
DisplayIcon
"
"
$INSTDIR\${CONFIG_EXECUTABLE}
"
WriteRegStr
HKLM
"
${UNINST_KEY}
"
"
DisplayVersion
"
"
${CONFIG_VERSION}
"
WriteRegStr
HKLM
"
${UNINST_KEY}
"
"
URLInfoAbout
"
"
${CONFIG_PROJECT_URL}
"
WriteRegStr
HKLM
"
${UNINST_KEY}
"
"
Publisher
"
"
${CONFIG_PUBLISHER}
"
SectionEnd
Section
"
Uninstall
"
SEC91
SetShellVarContext
all
SimpleSC::StopService
"
IGPython HTTP2COM
"
1
30
Pop
$0
SimpleSC::RemoveService
"
IGPython HTTP2COM
"
Pop
$0
Delete
"
$INSTDIR\uninstall.exe
"
Delete
"
$INSTDIR\${CONFIG_ICON}
"
Delete
"
$INSTDIR\*.pyd
"
Delete
"
$INSTDIR\*.dll
"
Delete
"
$INSTDIR\${CONFIG_EXECUTABLE}
"
Delete
"
$INSTDIR\w9xpopen.exe
"
Delete
"
$INSTDIR\config\*.*
"
RMDir
"
$INSTDIR\config
"
RMDir
"
$INSTDIR
"
RMDIR
"
$PROGRAMFILES\${CONFIG_PUBLISHER}
"
RMDir
"
$PROGRAMFILES\${CONFIG_PUBLISHER}
"
;
Remove Start Menu shortcuts
Delete
"
$SMPROGRAMS\${CONFIG_LONG_APP_NAME}\${UNINSTALL_SHORTCUT}
"
RMDir
"
$SMPROGRAMS\${CONFIG_LONG_APP_NAME}
"
SetAutoClose
true
SectionEnd
;
PAGE SETUP
!define
MUI_ABORTWARNING
;
a confirmation message should be displayed if the user clicks cancel
!define
MUI_WELCOMEFINISHPAGE_BITMAP
"
modern-wizard.bmp
"
!insertmacro
MUI_PAGE_WELCOME
;
welcome page
!insertmacro
MUI_PAGE_INSTFILES
;
install files page
Function
ServiceConfigPage
!insertmacro
MUI_HEADER_TEXT
"
Service Settings
"
"
Serial Port and Server configurations - please fill all elements
"
!insertmacro
INSTALLOPTIONS_DISPLAY
"
configuration.ini
"
FunctionEnd
;
Finish page
!define
MUI_FINISHPAGE_RUN
!define
MUI_FINISHPAGE_TITLE
"
${CONFIG_LONG_APP_NAME} has been installed!
"
!define
MUI_FINISHPAGE_TITLE_3LINES
!define
MUI_FINISHPAGE_RUN_TEXT
"
Run ${CONFIG_LONG_APP_NAME}
"
!define
MUI_FINISHPAGE_RUN_FUNCTION
"
LaunchService
"
!define
MUI_FINISHPAGE_LINK
"
${CONFIG_PUBLISHER} homepage.
"
!define
MUI_FINISHPAGE_LINK_LOCATION
"
${CONFIG_PROJECT_URL}
"
!define
MUI_FINISHPAGE_NOREBOOTSUPPORT
!insertmacro
MUI_PAGE_FINISH
;
Uninstaller pages
!insertmacro
MUI_UNPAGE_CONFIRM
!insertmacro
MUI_UNPAGE_INSTFILES
!define
MUI_UNWELCOMEFINISHPAGE_BITMAP
"
modern-wizard.bmp
"
!insertmacro
MUI_UNPAGE_FINISH
;
LANGUAGE FILES
!define
MUI_LANGSTRINGS
!insertmacro
MUI_LANGUAGE
"
English
"
You can’t perform that action at this time.