User Tools

Site Tools


userspace:notepad2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

userspace:notepad2 [2014/05/28 22:26]
SisterOfMercy
userspace:notepad2 [2021/08/23 08:37]
Line 1: Line 1:
-====== Notepad2 4.2.25 ====== 
-Adaptation of the opsi-template scripts for Notepad2. \\ 
-Notepad2 is a fast and light-weight Notepad-like text editor with syntax highlighting.\\ 
  
-Website of the author, with x86 and x64 installation files: http://www.flos-freeware.ch/notepad2.html \\ 
- 
-During the installation a notepad2.ini is copied to the installation directory of notepad2, which redirects notepad2 to use the ini file in the Application Data folder of the user. This way each user can mess with his own settings. \\ 
- 
-==== control file ==== 
- 
-<code winst> 
-[Package] 
-version: 1 
-depends:  
-incremental: False 
- 
-[Product] 
-type: localboot 
-id: notepad2 
-name: Notepad2 Text Editor 
-description: Notepad2 is a fast and lightweight Notepad-like text editor with syntax highlighting. 
-advice:  
-version: 4.2.25 
-priority: 0 
-licenseRequired: False 
-productClasses:  
-setupScript: setup3264.ins 
-uninstallScript: uninstall3264.ins 
-updateScript:  
-alwaysScript:  
-onceScript:  
-customScript:  
-userLoginScript:  
- 
-[Changelog] 
-notepad2 (4.2.25-1) testing; urgency=low 
- 
-  * Initial package 
- 
- -- ICT <ict@gcecad-service.nl>  Thu, 03 Apr 2014 19:01:31 +0000 
- </code> 
- 
- 
-==== setup3264.ins ==== 
- 
-<code winst> 
-; Copyright (c) uib gmbh (www.uib.de) 
-; This sourcecode is owned by uib 
-; and published under the Terms of the General Public License. 
-; credits: http://www.opsi.org/en/credits/ 
-; 
-; License Management removed 
- 
- 
-[Actions] 
-requiredWinstVersion >= "4.10.8.6" 
- 
-;DefVar $MsiId32$ 
-;DefVar $UninstallProgram32$ 
-;DefVar $MsiId64$ 
-;DefVar $UninstallProgram64$ 
-DefVar $LogDir$ 
-DefVar $ProductId$   
-DefVar $MinimumSpace$ 
-DefVar $InstallDir32$ 
-DefVar $InstallDir64$ 
-DefVar $ExitCode$ 
-DefVar $INST_SystemType$ 
-;DefVar $INST_architecture$ 
-DefVar $INST_MsVersion$ 
- 
-set $INST_MsVersion$ = GetMsVersionInfo 
-Set $INST_SystemType$ = GetSystemType 
-;set $INST_architecture$ = GetProductProperty("install_architecture","system specific") 
-Set $LogDir$ = "%SystemDrive%\tmp" 
- 
-; ---------------------------------------------------------------- 
-; - Please edit the following values                             - 
-; ---------------------------------------------------------------- 
-;$ProductId$ should be the name of the product in opsi 
-; therefore please: only lower letters, no umlauts,  
-; no white space use '-' as a seperator 
-Set $ProductId$       = "notepad2" 
-Set $MinimumSpace$    = "50 MB" 
-; the path were we find the product after the installation 
-Set $InstallDir32$      = "%ProgramFiles32Dir%\" + $ProductId$ 
-Set $InstallDir64$      = "%ProgramFiles64Dir%\" + $ProductId$ 
-; ---------------------------------------------------------------- 
- 
-if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$)) 
- LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$ 
- isFatalError 
- ; Stop process and set installation status to failed 
-endif 
-if $INST_MsVersion$ < "5.1" 
- LogError "Windows XP or newer is required for " + $ProductId$   
- isFatalError 
-endif 
-  
-comment "Show product picture" 
-ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$ 
- 
-if FileExists("%ScriptPath%\delsub3264.ins") 
- comment "Start uninstall sub section" 
- Sub "%ScriptPath%\delsub3264.ins" 
-endif 
-  
-comment "installing" 
- 
-if ($INST_SystemType$ = "x86 System" 
-;and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
- Message "Installing " + $ProductId$ + "..." 
- comment "Start setup program" 
- Winbatch_install_32 
- Sub_check_exitcode 
- comment "Copy files" 
- Files_install_32 /32Bit 
- comment "Patch Registry" 
- Registry_install /32Bit 
- comment "Copy files to all userprofiles" 
- Files_install_allusers /AllNTUserProfiles  
- comment "Create shortcuts" 
- LinkFolder_install 
-endif 
- 
-if ($INST_SystemType$ = "64 Bit System" 
-;and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
- Message "Installing " + $ProductId$ + "..." 
- comment "Start setup program" 
- Winbatch_install_64 
- Sub_check_exitcode 
- comment "Copy files" 
- Files_install_64 /64Bit 
- comment "Patch Registry" 
- Registry_install /64Bit 
- comment "Copy files to all userprofiles" 
- Files_install_allusers /AllNTUserProfiles 
- comment "Create shortcuts" 
- LinkFolder_install 
-endif 
-  
- 
-[Winbatch_install_32] 
-"%ScriptPath%\files\Notepad2_4.2.25_x86.exe" /silent 
- 
-[Files_install_32] 
-copy -s "%ScriptPath%\files\programfiles\Notepad2.ini" "$InstallDir32$" 
- 
-[Winbatch_install_64] 
-"%ScriptPath%\files\Notepad2_4.2.25_x64.exe" /silent 
- 
-[Files_install_64] 
-copy -s "%ScriptPath%\files\programfiles\Notepad2.ini" "$InstallDir64$" 
- 
-[Files_install_allusers] 
-copy -s "%ScriptPath%\files\appdata\Notepad2.ini" "%UserProfileDir%\Application Data\" 
- 
-[Registry_install] 
-; Example of setting some values of an registry key: 
-; 
-; openkey [HKEY_LOCAL_MACHINE\Software\$ProductId$] 
-; set "name1" = "some string value" 
-; set "name2" = REG_DWORD:0001 
-; set "name3" = REG_BINARY:00 af 99 cd 
- 
-[LinkFolder_install] 
-; Example of deleting a folder from AllUsers startmenu: 
-; 
-; set_basefolder common_programs 
-; delete_subfolder $ProductId$ 
-; 
-; Example of creating an shortcut to the installed exe in AllUsers startmenu: 
-; 
-; set_basefolder common_programs 
-; set_subfolder $ProductId$ 
-; 
-; set_link 
-; name: $ProductId$ 
-; target: <path to the program> 
-; parameters: 
-; working_dir: $InstallDir$ 
-; icon_file: 
-; icon_index: 
-; end_link 
-; 
-; Example of creating an shortcut to the installed exe on AllUsers desktop: 
-; 
-; set_basefolder common_desktopdirectory 
-; set_subfolder "" 
-; 
-; set_link 
-; name: $ProductId$ 
-; target: <path to the program> 
-; parameters: <some_param> 
-; working_dir: $InstallDir$ 
-; icon_file: <path to icon file> 
-; icon_index: 2 
-; end_link 
- 
- 
-[Sub_check_exitcode] 
-comment "Test for installation success via exit code" 
-set $ExitCode$ = getLastExitCode 
-; informations to exit codes see 
-; http://msdn.microsoft.com/en-us/library/aa372835(VS.85).aspx 
-; http://msdn.microsoft.com/en-us/library/aa368542.aspx 
-if ($ExitCode$ = "0") 
- comment "Looks good: setup program gives exitcode zero" 
-else 
- comment "Setup program gives a exitcode unequal zero: " + $ExitCode$ 
- if ($ExitCode$ = "1605") 
- comment "ERROR_UNKNOWN_PRODUCT 1605 This action is only valid for products that are currently installed." 
- comment "Uninstall of a not installed product failed - no problem" 
- else 
- if ($ExitCode$ = "1641") 
- comment "looks good: setup program gives exitcode 1641" 
- comment "ERROR_SUCCESS_REBOOT_INITIATED 1641 The installer has initiated a restart. This message is indicative of a success." 
- else 
- if ($ExitCode$ = "3010") 
- comment "looks good: setup program gives exitcode 3010" 
- comment "ERROR_SUCCESS_REBOOT_REQUIRED 3010 A restart is required to complete the install. This message is indicative of a success." 
- else 
- logError "Fatal: Setup program gives an unknown exitcode unequal zero: " + $ExitCode$ 
- isFatalError 
- endif 
- endif 
- endif 
-endif 
-</code> 
- 
-==== uninstall3264.ins ==== 
- 
-<code winst>; Copyright (c) uib gmbh (www.uib.de) 
-; This sourcecode is owned by uib gmbh 
-; and published under the Terms of the General Public License. 
-; credits: http://www.opsi.org/en/credits/ 
-; 
-; License Management removed 
- 
-[Actions] 
-requiredWinstVersion >= "4.10.8.6" 
- 
-;DefVar $MsiId32$ 
-;DefVar $UninstallProgram32$ 
-;DefVar $MsiId64$ 
-;DefVar $UninstallProgram64$ 
-DefVar $LogDir$ 
-DefVar $ExitCode$ 
-DefVar $ProductId$ 
-DefVar $InstallDir32$ 
-DefVar $InstallDir64$ 
-DefVar $INST_SystemType$ 
-;DefVar $INST_architecture$ 
- 
-Set $INST_SystemType$ = GetSystemType 
-;set $INST_architecture$ = GetProductProperty("install_architecture","system specific") 
- 
- 
-Set $LogDir$ = "%SystemDrive%\tmp" 
- 
-; ---------------------------------------------------------------- 
-; - Please edit the following values                             - 
-; ---------------------------------------------------------------- 
-Set $ProductId$       = "notepad2" 
-Set $InstallDir32$      = "%ProgramFiles32Dir%\" + $ProductId$ 
-Set $InstallDir64$      = "%ProgramFiles64Dir%\" + $ProductId$ 
-; ---------------------------------------------------------------- 
- 
- 
-comment "Show product picture" 
-ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$ 
- 
-Message "Uninstalling " + $ProductId$ + " ..." 
- 
-if FileExists("%ScriptPath%\delsub3264.ins") 
- comment "Start uninstall sub section" 
- Sub "%ScriptPath%\delsub3264.ins" 
-endif 
-</code> 
- 
-==== delsub3264.ins ==== 
- 
-<code winst> 
-; Copyright (c) uib gmbh (www.uib.de) 
-; This sourcecode is owned by uib gmbh 
-; and published under the Terms of the General Public License. 
-; credits: http://www.opsi.org/en/credits/ 
-; 
-; License Management removed 
- 
-DefVar $UninstallProgram32$ 
-DefVar $UninstallProgram64$ 
- 
-Set $UninstallProgram32$ = $InstallDir32$ + "\Notepad2.inf" 
-Set $UninstallProgram64$ = $InstallDir64$ + "\Notepad2.inf" 
- 
-if ($INST_SystemType$ = "x86 System" 
-;and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
- Message "Uninstalling " + $ProductId$ + "..." 
- 
- if FileExists($UninstallProgram32$) 
- comment "Uninstall program found, starting uninstall" 
- Winbatch_uninstall_32 
- sub_check_exitcode 
- endif 
- 
-; if not (GetRegistryStringValue32("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" + $MsiId32$ + "] DisplayName") = "") 
-; comment "MSI id " + $MsiId32$ + " found in registry, starting msiexec to uninstall" 
-; Winbatch_uninstall_msi_32 
-; sub_check_exitcode 
-; endif 
-  
- comment "Delete files" 
- Files_uninstall_32 /32Bit 
- Files_uninstall_allusers /AllNTUserProfiles 
- comment "Cleanup registry" 
- Registry_uninstall /32Bit 
-endif 
- 
-if ($INST_SystemType$ = "64 Bit System" 
-;and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
- Message "Uninstalling " + $ProductId$ + "..." 
- 
- if FileExists($UninstallProgram64$) 
- comment "Uninstall program found, starting uninstall" 
- Winbatch_uninstall_64 
- sub_check_exitcode 
- endif 
- 
-; if not (GetRegistryStringValue64("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" + $MsiId64$ + "] DisplayName") = "") 
-; comment "MSI id " + $MsiId64$ + " found in registry, starting msiexec to uninstall" 
-; Winbatch_uninstall_msi_64 
-; sub_check_exitcode 
-; endif 
-  
- comment "Delete files" 
- Files_uninstall_64 /64Bit 
- Files_uninstall_allusers /AllNTUserProfiles 
- comment "Cleanup registry" 
- Registry_uninstall /64Bit 
-endif 
- 
-comment "Delete program shortcuts" 
-LinkFolder_uninstall 
- 
-[Winbatch_uninstall_32] 
-rundll32.exe advpack.dll,LaunchINFSectionEx  "$UninstallProgram32$",DefaultUninstall,,8,N 
- 
-[Files_uninstall_32] 
-; Example for recursively deleting the installation directory (don't forget the trailing backslash): 
-; 
-; delete -sf "$InstallDir32$\" 
- 
-[Winbatch_uninstall_64] 
-rundll32.exe advpack.dll,LaunchINFSectionEx  "$UninstallProgram64$",DefaultUninstall,,8,N 
- 
-[Files_uninstall_64] 
-; Example for recursively deleting the installation directory (don't forget the trailing backslash): 
-; 
-; delete -sf "$InstallDir64$\" 
- 
- 
-[Files_uninstall_allusers] 
-delete -f "%AppdataDir%\Notepad2.ini" 
- 
-[Registry_uninstall] 
-; Example of deleting a registry key: 
-; 
-; deletekey [HKEY_LOCAL_MACHINE\Software\$ProductId$] 
- 
-[LinkFolder_uninstall] 
-; Example of deleting a folder from AllUsers startmenu: 
-; 
-; set_basefolder common_programs 
-; delete_subfolder $ProductId$ 
-; 
-; Example of deleting a shortcut from AllUsers desktop: 
-; 
-; set_basefolder common_desktopdirectory 
-; set_subfolder "" 
-; delete_element $ProductId$ 
- 
-[Sub_check_exitcode] 
-comment "Test for installation success via exit code" 
-set $ExitCode$ = getLastExitCode 
-; informations to exit codes see 
-; http://msdn.microsoft.com/en-us/library/aa372835(VS.85).aspx 
-; http://msdn.microsoft.com/en-us/library/aa368542.aspx 
-if ($ExitCode$ = "0") 
- comment "Looks good: setup program gives exitcode zero" 
-else 
- comment "Setup program gives a exitcode unequal zero: " + $ExitCode$ 
- if ($ExitCode$ = "1605") 
- comment "ERROR_UNKNOWN_PRODUCT 1605 This action is only valid for products that are currently installed." 
- comment "Uninstall of a not installed product failed - no problem" 
- else 
- if ($ExitCode$ = "1641") 
- comment "looks good: setup program gives exitcode 1641" 
- comment "ERROR_SUCCESS_REBOOT_INITIATED 1641 The installer has initiated a restart. This message is indicative of a success." 
- else 
- if ($ExitCode$ = "3010") 
- comment "looks good: setup program gives exitcode 3010" 
- comment "ERROR_SUCCESS_REBOOT_REQUIRED 3010 A restart is required to complete the install. This message is indicative of a success." 
- else 
- logError "Fatal: Setup program gives an unknown exitcode unequal zero: " + $ExitCode$ 
- isFatalError 
- endif 
- endif 
- endif 
-endif 
-</code> 
userspace/notepad2.txt ยท Last modified: 2021/08/23 08:37 (external edit)