2015-12-10 20:49:13 +00:00
|
|
|
$packageName= 'openlivewriter'
|
|
|
|
$fileType = 'EXE'
|
2015-12-10 13:30:49 +00:00
|
|
|
$silentArgs = '--silent'
|
|
|
|
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path)
|
2015-12-10 20:49:13 +00:00
|
|
|
$fileFullPath = Join-Path $scriptPath 'OpenLiveWriterSetup.exe'
|
2015-12-10 13:30:49 +00:00
|
|
|
|
2015-12-10 20:49:13 +00:00
|
|
|
Install-ChocolateyInstallPackage $packageName $fileType $silentArgs $fileFullPath
|
|
|
|
|
|
|
|
Write-Output "The install log is at `"$env:localappdata\SquirrelTemp\SquirrelSetup.log`""
|