-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig-system.ps1
More file actions
29 lines (22 loc) · 1 KB
/
config-system.ps1
File metadata and controls
29 lines (22 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
echo "Loading system configuration"
##############################
#DO NOT EDIT: SYSTEM VARIABLES
##############################
Add-Type -AssemblyName System.IO.Compression.FileSystem
$OutputEncoding=[System.Text.UTF8Encoding]::UTF8
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force
$__rootFolder = "c:\opt"
$__jbossInstallFolder = $__rootFolder + "\jboss"
$__webclientInstallFolder = "c:\inetpub\wwwroot"
$__logFileName = "$(Get-Date -Format g)_i2b2_install.log"
$__currentDirectory = (Get-Item -Path ".\" -Verbose).FullName
$__skelDirectory = $__currentDirectory + "\skel"
$__tempFolder = $__currentDirectory + "\.temp"
$__sourceCodeRootFolder = $__tempFolder + "\i2b2"
$__sourceCodeZipFile = $__skelDirectory + "\i2b2\i2b2core-src-1704.zip"
$__dataInstallationZipFile = $__skelDirectory + "\i2b2\i2b2createdb-1704.zip"
$__webclientZipFile = $__skelDirectory + "\i2b2\i2b2webclient-1704.zip"
setEnvironmentVariable NOPAUSE 1
##############################
#END SYSTEM VARIABLES
##############################