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

Question

Question

Laserfiche 11 unattended deinstall

asked on November 20, 2024

I am having errors uninstalling Laserfiche 11 with this script:
“SetupLF.exe -silent REMOVE=ALL “

Anyone has a script that I can use to uninstall Laserfiche 11

0 0

Replies

replied on December 17, 2024

This is PowerShell using PSAppDeployToolkit (which I highly suggest using) but should be customizable for your needs (to specifically target version 11, for example).

$detPackage = Get-Package -Name 'Laserfiche*' -ProviderName msi -ErrorAction SilentlyContinue | Where-Object {$_.Name -match 'Laserfiche Client.+'}
If ($detPackage) { $detPackage  | Uninstall-Package }

The issue with attempting to uninstall using SetupLF.exe is that it can error out if the installed version does not match the version of your SetupLF.exe.

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

Sign in to reply to this post.