This commit is contained in:
Mario Fetka
2011-07-15 17:29:52 +02:00
parent 9ecc54ab99
commit b49aea8c30
7 changed files with 13 additions and 13 deletions

View File

@@ -35,11 +35,11 @@ Set $LogDir$ = "%SystemDrive%\tmp"
; therefore please: only lower letters, no umlauts,
; no white space use '-' as a seperator
Set $ProductId$ = "ultramon"
Set $MinimumSpace$ = "4 MB"
Set $MinimumSpace$ = "40 MB"
; the path were we find the product after the installation
Set $InstallDir32$ = "%ProgramFiles32Dir%\UltraMon"
Set $InstallDir64$ = "%ProgramFiles64Dir%\UltraMon"
Set $LicenseRequired$ = "false"
Set $LicenseRequired$ = "true"
Set $LicensePool$ = "p_" + $ProductId$
; ----------------------------------------------------------------
@@ -97,7 +97,7 @@ endif
;
; === MSI package =======================================================================================
; You may use the parameter PIDKEY=$Licensekey$
msiexec /i "%ScriptPath%\X86FILE" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=2 REBOOT=ReallySuppress
msiexec /i "%ScriptPath%\X86FILE" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=2 REBOOT=ReallySuppress USERNAME="%IPName%" PIDKEY=$LicenseKey$
[Files_install_32]
; Example of recursively copying some files into the installation directory:
@@ -110,7 +110,7 @@ msiexec /i "%ScriptPath%\X86FILE" /l* "$LogDir$\$ProductId$.install_log.txt" /qb
;
; === MSI package =======================================================================================
; You may use the parameter PIDKEY=$Licensekey$
msiexec /i "%ScriptPath%\AMD64FILE" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=2 REBOOT=ReallySuppress
msiexec /i "%ScriptPath%\AMD64FILE" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=2 REBOOT=ReallySuppress USERNAME="%IPName%" PIDKEY=$LicenseKey$
[Files_install_64]
; Example of recursively copying some files into the installation directory:

View File

@@ -29,10 +29,10 @@ Set $LogDir$ = "%SystemDrive%\tmp"
; ----------------------------------------------------------------
; - Please edit the following values -
; ----------------------------------------------------------------
Set $ProductId$ = "foldersize"
Set $InstallDir32$ = "%ProgramFiles32Dir%\FolderSize"
Set $InstallDir64$ = "%ProgramFiles64Dir%\FolderSize"
Set $LicenseRequired$ = "false"
Set $ProductId$ = "ultramon"
Set $InstallDir32$ = "%ProgramFiles32Dir%\UltraMon"
Set $InstallDir64$ = "%ProgramFiles64Dir%\UltraMon"
Set $LicenseRequired$ = "true"
Set $LicensePool$ = "p_" + $ProductId$
; ----------------------------------------------------------------