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

Question

Question

Administration Console Unattended Installation

asked on September 27

Now that the Administration Console has been moved from the Windows Client installation to the Server installation in version 11.  Is there a way to do an Unattended Installation of just the Administration Console?

0 0

Answer

APPROVED ANSWER SELECTED ANSWER
replied on September 27

Yep. In PowerShell:

$LFServerInstallerDirectory = 'C:\Installers\Laserfiche11_20230713\en\Server\'

$InstallLogDirectory = 'C:\Logs\LFAdminInstall'
New-Item -ItemType Directory -Path $InstallLogDirectory -Force

cd $LFServerInstallerDirectory
.\SetupLf.exe -silent -log $InstallLogDirectory ADDLOCAL=LFAdmin

Update the $LFServerInstallerDirectory and $InstallLogDirectory variable values as appropriate.

Must run in an elevated session (as Administrator).

If for whatever reason you don't want logging, remove "-log $InstallLogDirectory" from the last command.

1 0

Replies

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

Sign in to reply to this post.