New-EPRInstallation
SYNOPSIS
Function for installing Easit Process Runner.
SYNTAX
1 2 3 |
|
DESCRIPTION
Function for installing a new instance of Easit Process Runner. This function will first look for settings in .\lib\installerSettings.json relative to path provided as FromDirectory. The settings in this file will be replaced in memory with any input provided with InstallLocation, SystemName, Port and TomcatXmx. Settings provided via a parameter will be used over settings in installerSettings.json
EXAMPLES
EXAMPLE 1
1 |
|
EXAMPLE 2
1 |
|
EXAMPLE 3
1 |
|
PARAMETERS
-DoNotSendInstallationDetailsToEasit
Specifies if the installer should NOT try to send server and installations details to Easit upon completed installation.
1 2 3 4 5 6 7 8 9 |
|
-FromDirectory
Path to the directory of expanded install archive containing the directories 'archives' and 'lib'.
1 2 3 4 5 6 7 8 9 |
|
-IgnoreDirectoryStructure
Specifies if the installer should add 'Easit' or not to the InstallLocation. With IgnoreDirectoryStructure omitted: D:\Easit\EPR-[SystemName] With IgnoreDirectoryStructure provided: D:\EPR-[SystemName]
1 2 3 4 5 6 7 8 9 |
|
-InstallLocation
Path to where EPR should be installed.
1 2 3 4 5 6 7 8 9 |
|
-InstanceID
ID from Easit AB representing the customers instance.
1 2 3 4 5 6 7 8 9 |
|
-Port
Specifies the port EPR will listen on for incoming requests.
1 2 3 4 5 6 7 8 9 |
|
-ProgressAction
Determines how PowerShell responds to progress updates generated by a script, cmdlet, or provider, such as the progress bars generated by the Write-Progress cmdlet. The Write-Progress cmdlet creates progress bars that show a command's status.
The ProgressAction parameter takes one of the ActionPreference enumeration values: SilentlyContinue, Stop, Continue, Inquire, Ignore, Suspend, or Break.
1 2 3 4 5 6 7 8 9 |
|
-SystemName
The input for SystemName will be combined with 'EPR-'. This will then be used to name the Tomcat service and SystemRoot.
1 2 3 4 5 6 7 8 9 |
|
-TomcatXmx
Specifies how mush memory the Tomcat service will able to use.
1 2 3 4 5 6 7 8 9 |
|
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.