Page 1 of 1

Import Databases Silently

Posted: 08 Nov 2016 21:45
by mason
Good day,

I've successfully installed openLCA silently for all users but I need to be able to have my silent install script install and activate databases for all users without having to touch each computer by hand.

Below is the PowerShell code I'm using to install openLCA silently for all users:

Code: Select all

$installDirectory = split-path -parent $MyInvocation.MyCommand.Definition
$argumentsList = "/ALLUSERS=1 /S /D=C:\Program Files (x86)\openLCA"
 
start-process "$installDirectory\openlca-1.5.0.20160912-win-64bit.exe" -ArgumentList $argumentsList -wait
Specifically I'm checking in to see if anyone happens to know how to silently install and activate openlca_lcia_methods_1_5_5.zolca for all users.

Thanks,
Mason