User would like to install the Laserfiche Windows client and Snapshot using unattended installation. They are using Microsoft Intune to run the script but running into issues with the script.
Anyone have suggestions how to use unattended installation to install the Laserfiche Windows client and Snapshot only? Using version 10.4.0.331
Running this script works, but it wants to install .NET Framework 3.5.
@echo off
rem Uninstall LaserFiche and Snapshot
rem Snapshot
start /w msiexec /x "{426592AB-AC0A-4128-805B-66D3801A4272}" /q
rem LaserFiche
start /w msiexec /x "{4910C198-A685-4CEB-9D4F-0CC1DD40644D}" /q
"WindowsClient\SetupLF.exe" -silent -log "C:\Windows\Temp" INSTALLLEVEL=300
Exit
This script runs and displays the Laserfiche Windows Client 10.4 Setup dialog and aborts the installation. SetupLF.exe -option <Properties>
@echo off
rem Uninstall LaserFiche and Snapshot
rem Snapshot
start /w msiexec /x "{426592AB-AC0A-4128-805B-66D3801A4272}" /q
rem LaserFiche
start /w msiexec /x "{4910C198-A685-4CEB-9D4F-0CC1DD40644D}" /q
"WindowsClient\SetupLF.exe" -silent LFADDLOCAL="Client" LFSSADDLOCAL="Snapshot" -log "C:\Windows\Temp\LaserFiche"
Exit