XLCubed is now FluenceXL. The new wiki can be found here: https://help.fluencexl.com/

Difference between revisions of "XLCubed Silent Installation"

(Command Line Properties)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
To create a silent installation for XLCubed Excel Edition, first install the appropriate prerequisites as detailed on [[XLCubed Excel Edition Prerequisites]]. The Windows Installer MSI may then be obtained by entering the following at the command line for v9.0 and newer:
+
To run the installation for XLCubed (v9.0 and newer) in silent mode, enter the following at command the command line to automatically download and install any prerequisites as well as XLCubed itself:
  
{{Code|Dark.exe -x SupportFiles XLCubedInstaller.exe}}
+
{{Code|XLCubedInstaller.exe /quiet}}
  
where XLCubedInstaller.exe should be replaced with the full path of the setup executable. You can download Dark [[File:WiXDark310.zip|here]]. This will extract the MSI into a subdirectory called {{Code|SupportFiles\AttachedContainer}}. This MSI can then be invoked silently by passing the {{Code|/q}} switch:
+
If you would prefer to download all the prerequisites ahead of time (for example, if there is no internet access on the target computer), then you can run the following command line to create a folder containing all of the files in the correct layout. This can then be copied to a DVD or directly to the target computer:
  
{{Code|msiexec.exe /i "XLCubed Excel Edition.msi" /qn}}
+
{{Code|XLCubedInstaller.exe /layout}}
  
===Extracting older versions===
+
==Command Line Properties==
  
To extract older versions run this command link instead of using Dark as above:
+
There are some command line properties that can be set to modify the default installation behaviour.
 +
 
 +
They can either be used with the .exe bootstrapper:
 +
 
 +
{{Code|1=XLCubedInstaller.exe INSTALLLOCATION="C:\My Install Folder"}}
 +
 
 +
Or directly with the .msi:
 +
 
 +
{{Code|1=msiexec.exe /i INSTALLLOCATION="C:\My Install Folder" "MSINAME.msi"}}
 +
 
 +
===XLCubed Excel Edition===
 +
 
 +
The following properties are available:
 +
 
 +
{| class="wikitable"
 +
! Name !! Description !! Default
 +
|-
 +
| INSTALLLOCATION
 +
| Where the product files should be installed
 +
| %ProgramFiles(x86)%\XLCubed Ltd\XLCubed Excel Edition
 +
|}
 +
 
 +
===XLCubed Web Edition===
 +
 
 +
The following properties are available:
 +
 
 +
{| class="wikitable"
 +
! Name !! Description !! Default
 +
|-
 +
| INSTALLLOCATION
 +
| Where the product files should be installed
 +
| WWWRoot\VIRTUALDIRECTORYNAME
 +
|-
 +
| SKIPCONFIGUREIIS
 +
| Whether the application is installed in IIS
 +
| 0
 +
|-
 +
| VIRTUALDIRECTORYNAME
 +
| The name of the application in IIS
 +
| XLCubedWeb
 +
|-
 +
| INSTALLSCHEDULINGSERVICE
 +
| Whether the scheduling service is installed
 +
| 1
 +
|}
 +
 
 +
==Previous Versions==
 +
 
 +
The Windows Installer MSI may be obtained by entering the following at the command line:
  
 
{{Code|XLCubedInstaller.exe /ExtractCab}}
 
{{Code|XLCubedInstaller.exe /ExtractCab}}
 +
 +
where XLCubedInstaller.exe should be replaced with the full path of the setup executable. This will extract the MSI into a subdirectory called {{Code|SupportFiles}}. If desired, this MSI can then be invoked silently by passing the {{Code|/qn}} switch:
 +
 +
{{Code|msiexec.exe /i "MSINAME.msi" /qn}}
 +
 +
Using this method, any prerequisites must be installed manually.
  
 
==See Also==
 
==See Also==
 
* [[XLCubed Excel Edition Prerequisites]]
 
* [[XLCubed Excel Edition Prerequisites]]
 +
* [[XLCubed Web Edition Prerequisites]]
 +
* [[XLCubed MSI Installation]]
 +
* [[XLCubed Offline Installation]]
 +
* [[Administrative XLCubed Installation]]
 +
* [[Settings File Customisation]]
  
 
[[Category: Installation]]
 
[[Category: Installation]]

Latest revision as of 15:53, 13 December 2023

To run the installation for XLCubed (v9.0 and newer) in silent mode, enter the following at command the command line to automatically download and install any prerequisites as well as XLCubed itself:

XLCubedInstaller.exe /quiet

If you would prefer to download all the prerequisites ahead of time (for example, if there is no internet access on the target computer), then you can run the following command line to create a folder containing all of the files in the correct layout. This can then be copied to a DVD or directly to the target computer:

XLCubedInstaller.exe /layout

Command Line Properties

There are some command line properties that can be set to modify the default installation behaviour.

They can either be used with the .exe bootstrapper:

XLCubedInstaller.exe INSTALLLOCATION="C:\My Install Folder"

Or directly with the .msi:

msiexec.exe /i INSTALLLOCATION="C:\My Install Folder" "MSINAME.msi"

XLCubed Excel Edition

The following properties are available:

Name Description Default
INSTALLLOCATION Where the product files should be installed %ProgramFiles(x86)%\XLCubed Ltd\XLCubed Excel Edition

XLCubed Web Edition

The following properties are available:

Name Description Default
INSTALLLOCATION Where the product files should be installed WWWRoot\VIRTUALDIRECTORYNAME
SKIPCONFIGUREIIS Whether the application is installed in IIS 0
VIRTUALDIRECTORYNAME The name of the application in IIS XLCubedWeb
INSTALLSCHEDULINGSERVICE Whether the scheduling service is installed 1

Previous Versions

The Windows Installer MSI may be obtained by entering the following at the command line:

XLCubedInstaller.exe /ExtractCab

where XLCubedInstaller.exe should be replaced with the full path of the setup executable. This will extract the MSI into a subdirectory called SupportFiles. If desired, this MSI can then be invoked silently by passing the /qn switch:

msiexec.exe /i "MSINAME.msi" /qn

Using this method, any prerequisites must be installed manually.

See Also