You are viewing limited content. For full access, please sign in.

Question

Question

Laserfiche SDK installation in silent mode

asked on December 28, 2017

Hi ,

I am trying to install Laserficeh SDK 9.1 from Powershell script and using silent mode because I need to install it into Prod environment which should not have user intervention. Here my question is, even though I used silent mode, still showing the screens to click next and browsing licence key.could any one help me to install laserfiche SDk without any user interaction? 

The following I used in powershell script

Start-Process "C:\Software installations\9.1 SDK\en-US\Install\setup.exe" -ArgumentList -noUI -Wait -PassThru -Verb "RunAs"

Thank you in advance

Best regards,

Venkata Srividya

0 0

Answer

SELECTED ANSWER
replied on December 29, 2017

As Miruna said, use the Runtimeinstaller. Here is the code we use for this on some of our machines that high performance OCR and Bates numbering in the AWS Cloud. Not sure if you will need the vcredist or framework core, but here is what we do.

Install-WindowsFeature Net-Framework-Core
Start-Process -Wait -FilePath c:\temp\vcredist_x64.exe -ArgumentList "/q /norestart" -WindowStyle Hidden
Start-Process -Wait -FilePath c:\temp\LaserficheSDKRuntimeInstaller10.2.exe -ArgumentList "-iacceptlicenseagreement -s -l" -WindowStyle Hidden

 

1 0

Replies

replied on December 28, 2017

It looks like you're installing the full SDK (with code samples, merge modules and help), which requires a license and accepting the license agreement. From your description, it sounds like you need just the runtime. So you'd want to run the LaserficheSDKRuntimeInstaller.exe instead of setup.exe.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.