We use a group policy to install the Laserfiche Client on our organization's computers. In the group policy, it simply has a startup script the runs the following batch file:
IF NOT EXIST "C:\Program Files (x86)\Laserfiche\Client\Client9.2.1.562.txt" ( "\\lfiche1\Software\Laserfiche Avante 9.2.1.562\en\Client\setup.exe" -noui -iacceptlicenseagreement -log "C:\Program Files (x86)\Laserfiche\Logs\ClientInstall" INSTALLLEVEL=400 LFCDESKTOPSHORTCUTS=1 echo> "C:\Program Files (x86)\Laserfiche\Client\Client9.2.1.562.txt" DEL "C:\Program Files (x86)\Laserfiche\Client\Client9.2.0.343.txt" )
The batch file is launching setup.exe and the software installs, but for someone reason it never creates the "Client9.2.1.562.txt" file. If I create a separate batch file with just the "echo> "C:\Program Files (x86)\Laserfiche\Client\Client9.2.1.562.txt" in it, it creates the file without any problem.
Can anyone tell me if I am missing something? We have been using this since version 9.1.0.x and it was working then. I'm not sure when it stopped though.