aYOUne
translate
Not in your language

This page is not yet available in en. You're reading the de version.

Silent Install (für IT-Admins)

Wenn Sie aYOUne für viele Mitarbeiter ausrollen — z.B. über Active Directory, Microsoft Intune, Jamf oder ein eigenes Software-Verteilungs-Tool — soll der Installer ohne Klicks durchlaufen. Diese Seite beschreibt die Silent-Install-Optionen pro Plattform.

Windows (.exe)

Der Windows-Installer basiert auf NSIS und unterstützt:

aYOUne-Setup-x.y.z.exe /S

Der /S-Parameter (groß S) installiert ohne Dialoge, ohne Fortschrittsanzeige, ohne Neustart-Frage. Standardmäßig in %PROGRAMFILES%\aYOUne\ mit Desktop-Verknüpfung und Startmenü-Eintrag.

Optionen:

Parameter Wirkung
/S Silent — keine Dialoge, keine UI
/D=C:\Pfad\zum\Ziel Installations-Verzeichnis (muss letzter Parameter sein, kein Leerzeichen vor dem Pfad)
/NCRC Skip Integritäts-Check der Setup-Datei (schneller, weniger sicher)

Beispiel — Roll-out über Intune:

  1. Setup-EXE in Intune als Win32-App hochladen.
  2. Install-Command: aYOUne-Setup-2026.4.0.exe /S
  3. Uninstall-Command: "%PROGRAMFILES%\aYOUne\Uninstall aYOUne.exe" /S
  4. Detection-Rule: Datei %PROGRAMFILES%\aYOUne\aYOUne.exe existiert + Version ≥ 2026.4.0.

Updates verteilen: der Installer überschreibt jede ältere Version idempotent. Sie können ohne Deinstallation einfach den neuen .exe mit /S ausführen — Daten und Einstellungen bleiben erhalten.

macOS (.dmg)

DMG kann nicht silent installieren — Apple zwingt zur Drag-&-Drop-Geste. Workaround für Massen-Roll-out: das .app aus dem DMG extrahieren und direkt nach /Applications/ kopieren.

# Lade die DMG und mounte sie
hdiutil attach aYOUne-2026.4.0.dmg -nobrowse -quiet

# Kopiere das App-Bundle
cp -R "/Volumes/aYOUne/aYOUne.app" /Applications/

# Unmount
hdiutil detach "/Volumes/aYOUne" -quiet

# Quarantäne entfernen, sonst zeigt Gatekeeper bei jedem Start einen Dialog
xattr -dr com.apple.quarantine /Applications/aYOUne.app

Roll-out über Jamf: Skript wie oben als „Run Script" Policy. Der xattr-Schritt ist wichtig — sonst kommt bei jedem Mitarbeiter beim ersten Start die „aus dem Internet geladen"-Warnung.

Alternative: aYOUne als signiertes .pkg von Tolinax beziehen — .pkg lässt sich silent installieren mit installer -pkg aYOUne-2026.4.0.pkg -target /. Bitte direkt bei Tolinax-Support anfragen, das .pkg ist nicht standardmäßig im Download-Bereich.

Linux (.AppImage)

AppImage braucht keine Installation — Datei ausführbar machen und starten:

chmod +x aYOUne-2026.4.0.AppImage
mv aYOUne-2026.4.0.AppImage /opt/aYOUne/aYOUne

Desktop-Eintrag pro User:

cat > ~/.local/share/applications/ayoune.desktop <<EOF
[Desktop Entry]
Name=aYOUne
Exec=/opt/aYOUne/aYOUne %U
Icon=/opt/aYOUne/aYOUne.png
Type=Application
Categories=Office;
StartupNotify=true
EOF

System-weiter Eintrag (/usr/share/applications/ayoune.desktop) für Roll-out via Ansible / Puppet.

Auto-Update auf Linux: AppImage hat keinen integrierten Auto-Update-Mechanismus. Sie müssen die Datei manuell ersetzen oder einen appimaged-Daemon einsetzen. Zentrale Verteilung über das eigene Paketrepo (.deb/.rpm) ist möglich — bei Tolinax-Support anfragen.

Konfiguration vorbelegen (alle Plattformen)

Wenn Sie wollen, dass die App ohne Konto-Setup-Frage startet (z.B. immer mit Ihrem Tenant), legen Sie eine Konfigurations-Datei vor dem ersten Start an:

OS Pfad Inhalt
Windows %PROGRAMDATA%\aYOUne\config.json {"defaultTenant": "ihre-firma", "checkUpdates": true}
macOS /Library/Application Support/aYOUne/config.json gleich
Linux /etc/aYOUne/config.json gleich

Beim ersten Start liest die App diese Datei, setzt die Voreinstellungen und überspringt die Tenant-Auswahl. Mitarbeiter müssen nur noch ihr persönliches Login eingeben.

Logging im Roll-out

Der Installer schreibt Setup-Logs nach:

  • Windows: %TEMP%\aYOUne-install.log
  • macOS: /var/log/install.log (für .pkg)
  • Linux: stdout, abrufbar über AppImage-Start mit --verbose

Bei Roll-out-Problemen schicken Sie Tolinax-Support diese Datei plus den Diagnose-ZIP aus der App (siehe Fehlerbehebung).

Test-Roll-out

Bevor Sie auf 500 Rechner ausrollen: testen Sie auf 3-5 Pilot-Rechnern. Diese Punkte abhaken:

  • Installer läuft ohne UI durch
  • App startet beim ersten Doppelklick auf Verknüpfung
  • Login funktioniert
  • Auto-Update meldet sich nach max. 1 Stunde
  • Tray-Symbol erscheint beim Logon (nicht erst nach manuellem App-Start)
  • Notifications-Berechtigung wurde abgefragt und bestätigt

Den letzten Punkt automatisieren Sie durch eine MDM-Policy für die App-Bundle-ID com.tolinax.ayoune-desktop — dann fragt das System gar nicht erst.

Work with this page

Ready-made instructions for your AI tool. Copy, paste, go — the AI fetches the content itself via the address in the text.

Summarise the steps for me The essentials, in the right order.
Read the following documentation by tolinax UG and work with it.

This page: https://ayoune.com/en/docs/desktop-client/silent-install-fuer-it-admins-.md
The complete collection: https://ayoune.com/en/docs/desktop-client.md

Summarise the content for me.

- First, in two sentences: what is this about?
- Then the steps in the order I need to take them.
- One line per step, in plain language.
- At the end: what I should have ready beforehand.

Leave out nothing I need in order to actually finish.
A note on sources:
- Every page of this documentation is available as Markdown (the same address with `.md`).
- A machine-readable overview of all public content is at `/llms.txt`.
- If you have access to the aYOUne MCP server, you can work against live data
  instead of this snapshot. If not, ignore this point.
Explain what I need this for What it is good for — and when it is worth it.
Read the following documentation by tolinax UG and work with it.

This page: https://ayoune.com/en/docs/desktop-client/silent-install-fuer-it-admins-.md
The complete collection: https://ayoune.com/en/docs/desktop-client.md

Explain to me what I need this for.

1. Which problem does it solve? In one sentence, from my point of view.
2. Three typical situations in which it genuinely helps me.
3. When I do NOT need it — that saves me time.
4. What I can do instead if it is not a fit.

Stick to what the source says. Where it gives nothing, say so openly instead
of guessing.
A note on sources:
- Every page of this documentation is available as Markdown (the same address with `.md`).
- A machine-readable overview of all public content is at `/llms.txt`.
- If you have access to the aYOUne MCP server, you can work against live data
  instead of this snapshot. If not, ignore this point.
Help me set this up Step by step, asking me as you go.
Read the following documentation by tolinax UG and work with it.

This page: https://ayoune.com/en/docs/desktop-client/silent-install-fuer-it-admins-.md
The complete collection: https://ayoune.com/en/docs/desktop-client.md

Walk me through the setup step by step.

- First tell me what I need to have ready (access, data, time).
- Then take me through ONE step at a time. Wait for my "next".
- For each step, say how I can tell that it worked.
- If something goes wrong, ask me for the exact message instead of guessing.

If the instructions leave a point open, tell me so rather than inventing it.
A note on sources:
- Every page of this documentation is available as Markdown (the same address with `.md`).
- A machine-readable overview of all public content is at `/llms.txt`.
- If you have access to the aYOUne MCP server, you can work against live data
  instead of this snapshot. If not, ignore this point.
Help me with a problem Narrow down the cause instead of guessing.
Read the following documentation by tolinax UG and work with it.

This page: https://ayoune.com/en/docs/desktop-client/silent-install-fuer-it-admins-.md
The complete collection: https://ayoune.com/en/docs/desktop-client.md

Help me narrow down a problem.

- First ask me what I observe and what I expected instead.
- From that, derive the most likely causes consistent with this source.
- For each cause, give me ONE test that confirms or rules it out.
- Order them so the cheapest test comes first.

Do not guess. If the source does not cover the problem, tell me where I should
look next.
A note on sources:
- Every page of this documentation is available as Markdown (the same address with `.md`).
- A machine-readable overview of all public content is at `/llms.txt`.
- If you have access to the aYOUne MCP server, you can work against live data
  instead of this snapshot. If not, ignore this point.
Explain it in plain words No jargon, from the ground up.
Read the following documentation by tolinax UG and work with it.

This page: https://ayoune.com/en/docs/desktop-client/silent-install-fuer-it-admins-.md
The complete collection: https://ayoune.com/en/docs/desktop-client.md

Explain the content so that someone without prior knowledge understands it.

- Start with the purpose: why does this exist at all?
- Explain technical terms in half a sentence on first use.
- One everyday comparison where it genuinely holds — none where it limps.
- At the end: the three things worth remembering.

Do not shorten by dropping conditions. A simplification that hides a
prerequisite is a false statement.
A note on sources:
- Every page of this documentation is available as Markdown (the same address with `.md`).
- A machine-readable overview of all public content is at `/llms.txt`.
- If you have access to the aYOUne MCP server, you can work against live data
  instead of this snapshot. If not, ignore this point.
A checklist to tick off To follow along while you do it.
Read the following documentation by tolinax UG and work with it.

This page: https://ayoune.com/en/docs/desktop-client/silent-install-fuer-it-admins-.md
The complete collection: https://ayoune.com/en/docs/desktop-client.md

Turn this into a **tick-off checklist** for practical use.

- Exactly one action per item, in the imperative.
- Order it so that no item depends on a later prerequisite.
- Prerequisites and pitfalls as indented sub-items.
- End with an acceptance step: how do I know everything is right?
A note on sources:
- Every page of this documentation is available as Markdown (the same address with `.md`).
- A machine-readable overview of all public content is at `/llms.txt`.
- If you have access to the aYOUne MCP server, you can work against live data
  instead of this snapshot. If not, ignore this point.

Was this article helpful?

👎 No (0)
Leave a comment