@Angelika-Haase
Hallo Angelika,
da ich das so für mehrere Programme benutze, habe ich mir das so konfiguriert, dass ich möglichst wenig ändern muss. Ich habe für jede Anwendung folgende Ordnerstruktur:

Config .txt (Konfigurationsdatei für 7zip)
Title="7-Zip Self Extracting Executable"
BeginPrompt="Install?"
ExecuteFile="powershell.exe"
ExecuteParameters="-ExecutionPolicy Bypass -File .\App\Install.ps1"
Setup.cmd (Script, welches die .exe Datei zusammenbaut)
"C:\Program Files\7-Zip\7z.exe" a -t7z "%~dp0\App.7z" "%~dp0\App"
copy /b "%~dp0\7zSD.sfx" + "%~dp0\Config.txt" + "%~dp0\App.7z" "%~dp0%~n0%.exe"
del "%~dp0\App.7z"
Der App-Ordner hat folgenden Inhalt:

Install.ps1 (Führt die setup.exe mit den Parametern aus der Install.xml aus und kopiert die für die Deinstallation notwendigen Dateien auf den PC)
.\App\setup.exe /configure ".\App\Install.xml"
Copy-Item -Path ".\App\Uninstall.ps1" -Destination (New-Item "C:\ProgramData\Relution\Office\" -ItemType Directory -Force) -Force
Copy-Item -Path ".\App\Uninstall.xml" -Destination (New-Item "C:\ProgramData\Relution\Office\" -ItemType Directory -Force) -Force
Copy-Item -Path ".\App\setup.exe" -Destination (New-Item "C:\ProgramData\Relution\Office\" -ItemType Directory -Force) -Force
Uninstall.ps1 (Führt die setup.exe mit den Parametern aus der Uninstall.xml aus)
C:\ProgramData\Relution\Office\setup.exe /configure "C:\ProgramData\Relution\Office\Uninstall.xml"
Install.xml (https://config.office.com)
Uninstall.xml
<Configuration>
<Remove All="TRUE"/>
<Display Level="None" AcceptEULA="TRUE" />
<Property Name="SharedComputerLicensing" Value="0" />
<Property Name="FORCEAPPSHUTDOWN" Value="FALSE" />
<Property Name="AUTOACTIVATE" Value="1" />
</Configuration>
In Relution sind dann die Parameter folgende:
Parameter für die Installation
-y
Pfad zum Uninstaller
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Parameter für die Deinstallation
-ExecutionPolicy Bypass -File C:\ProgramData\Relution\Office\Uninstall.ps1
Gruß Martin Eulitz