File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ VIProductVersion "{suap-project-version}"
99VIAddVersionKey " ProductName" " {suap-display-name}"
1010VIAddVersionKey " FileDescription" " {suap-project-description}"
1111VIAddVersionKey " FileVersion" " {suap-project-version}"
12+ VIAddVersionKey " CompanyName" " Cloudy Org"
13+ VIAddVersionKey " LegalCopyright" " © 2026 Goldy"
1214
1315SetCompressor /SOLID Lzma
1416
@@ -39,15 +41,17 @@ Section "MainSection"
3941 File " {suap-binary-path}"
4042 File " {suap-icon-path}"
4143
44+ # Placing shortcut in "C:\ProgramData\Microsoft\Windows\Start Menu\Programs"
45+ CreateDirectory " $SMPROGRAMS\Cloudy"
46+ CreateShortcut " $SMPROGRAMS\Cloudy\{suap-project-name}.lnk" " $INSTDIR\{suap-binary-name}.exe" " " " $INSTDIR\{suap-icon-file-name}" 0
47+
4248 WriteUninstaller " $INSTDIR\uninstall.exe"
4349
4450 # Windows needs to know our application can be uninstalled via it's uninstall apps settings.
51+ WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\{suap-project-name}" " Publisher" " Cloudy Org"
4552 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\{suap-project-name}" " DisplayName" " {suap-display-name}"
53+ WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\{suap-project-name}" " DisplayVersion" " {suap-project-version}"
4654 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\{suap-project-name}" " UninstallString" " $INSTDIR\uninstall.exe"
47-
48- # Placing shortcut in "C:\ProgramData\Microsoft\Windows\Start Menu\Programs"
49- CreateDirectory " $SMPROGRAMS\Cloudy"
50- CreateShortcut " $SMPROGRAMS\Cloudy\{suap-project-name}.lnk" " $INSTDIR\{suap-binary-name}.exe" " " " $INSTDIR\{suap-icon-file-name}" 0
5155SectionEnd
5256
5357Section " Uninstall"
You can’t perform that action at this time.
0 commit comments