[SOLVED] Package to install "Epson Scan 2"

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
cg_heuliez
Messages: 12
Registration: Nov 13, 2024 - 08:23

June 25, 2025 - 4:08 PM

Hello,
We have Epson WF3825 printers in our fleet.
I would like to create a WAPT package that installs the scanning utility: "Epson Scan 2". It can be downloaded here: https://download.epson-europe.com/pub/d ... 8779eu.exe
The problem is that I can't find a silent installation option; even after unzipping the .exe file.
I'm starting to think that silent installation isn't possible... I've tried all the known switches: /VERYSILENT; /Q; /N... but without success.
So, if silent installation isn't possible, is there a way around this?
Thank you for your replies; if there are any. Have ;-)
a good evening!
User avatar
dcardon
WAPT Expert
Messages: 1929
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

June 26, 2025 - 10:29

Hi Benoit,

printer driver installers are often executable zip files with a command line that launches after extraction.

You can extract the file with 7-Zip and test the silent installation flags on the setup.exe file inside to see if it works.

Alternatively, you can launch printer driver installations directly by pointing to the .inf files, but I don't remember the exact command line.

Regards,

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
User avatar
blemoigne
Messages: 178
Registration: July 17, 2020 - 11:29

June 26, 2025 - 11:50

Good morning,
A solution has been found here:
https://www.itninja.com/question/epson-scanner-software

Install:

Code: Select all

Setup.exe /SI -sms /Nodisp
Uninstall:

Code: Select all

 "C:\Program Files (x86)\epson\escndv\setup\setup.exe" /r -sms /Nodisp
First, you need to extract the contents of epson668779eu.exe with 7zip in order to execute the first command.
We should be able to package it (with 7zip as a dependency).

Good day,
Bertrand
cg_heuliez
Messages: 12
Registration: Nov 13, 2024 - 08:23

June 27, 2025 - 08:31

Thank you; the installation line works. Now all that's left is to package it in the WAPT package!
User avatar
blemoigne
Messages: 178
Registration: July 17, 2020 - 11:29

June 27, 2025 - 11:20

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
    unzip("epson668779eu.exe")
    setupexe = glob.glob('*/*/Setup.exe')[0]
    install_exe_if_needed(setupexe, "/SI -sms /Nodisp",key='Epson Scan 2',min_version='')
    register_uninstall('Epson Scan 2', quiet_uninstall_string='"C:\Program Files (x86)\epson\Epson Scan 2\Setup\setup.exe" /r -sms /Nodisp')
cg_heuliez
Messages: 12
Registration: Nov 13, 2024 - 08:23

June 27, 2025 - 1:22 PM

Thank you; but it wasn't a request. ;-)
I managed to get the package myself.
User avatar
blemoigne
Messages: 178
Registration: July 17, 2020 - 11:29

June 27, 2025 - 1:25 PM

This could be useful to others ;)
Locked