From ee0eb0c76a4ed34e0912f28e571c82c9f15ef6ba Mon Sep 17 00:00:00 2001 From: fufesou Date: Sat, 6 Jun 2026 09:12:29 +0800 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/FAQ.md b/FAQ.md index 7bd0744..8979322 100644 --- a/FAQ.md +++ b/FAQ.md @@ -2066,3 +2066,50 @@ docker compose up -d && docker compose logs -f > > User: I did an apt-get update/upgrade and it is now updated. There were a bunch of docker updates. That may have fixed it. I am on 1.8.1 now. +# Install RustDesk Printer During Setup + +You can choose whether to install the RustDesk Printer driver during setup. + +## UI + +The printer option is unchecked by default. Users can check it manually when installing. + +image + +image + +## Command line + +### MSI + +https://rustdesk.com/docs/en/client/windows/msi/#installprinter + +### EXE + +Install with the `--silent-install` argument, optionally followed by `printer=1` or `printer=0`. + +1. No `printer=1` or `printer=0` (default option): + - For a fresh installation, the printer driver will **not** be installed. + - For an update installation, the printer driver installation status depends on the previous version's settings. + ```shell + rustdesk.exe --silent-install + ``` +2. `printer=1` - Force install the printer driver: + ```shell + rustdesk.exe --silent-install printer=1 + ``` +3. `printer=0` - Force not to install the printer driver: + ```shell + rustdesk.exe --silent-install printer=0 + ``` + +## After Setup + +If you need the RustDesk Printer while using the app, you can install it here: + +image + +We don't offer a separate uninstaller for the printer. To remove it: + 1. Go to Settings → Bluetooth & devices → Printers & scanners. Find RustDesk Printer, click it, then select Remove. + 2. Alternatively, uninstall the main RustDesk application. +