E-POST MAILER is a software solution from Deutsche Post that enables business customers to send letters digitally directly from any computer programme (e.g. word processing). Deutsche Post then takes care of printing, enveloping, franking and physically delivering the letter to the recipient.
May require additional apps to be installed. These are the pre-install commands from Scappman:
Install VCRedist
Execute-Process -Path "$dirFiles\vcredist_x86.exe" -Parameters "/quiet /norestart" -WindowStyle Hidden -IgnoreExitCodes "1638"
Install certificate
Execute-Process -Path "certutil.exe" -Parameters "-f -addstore -enterprise TrustedPublisher "$dirFiles\epost.cer"" -WindowStyle Hidden
Install mfilemon
Execute-Process -Path "$dirFiles\mfilemon-setup.exe" -Parameters "/VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES /LOG="$envProgramData\Scappman\Logs\$($appVendor)\$($appName)\$($appVersion) $($appArch)\logfile-mfilemon.log"" -WindowStyle Hidden
Post-install command:
Remove AutoUpdater DLL
if ($is64bit) {
$PF = $envProgramFilesX86
} else {
$PF = $envProgramFiles
}
Remove-File -Path "$PF\E-POST MAILER (N)\AutoUpdater.NET.dll"