Skip to main content

Command-line flags

ONLYOFFICE Desktop Editors supports command-line flags that let you control how the application launches and behaves. Pass a flag by appending it to the executable path when starting the application.

How to pass a flag

In the commands below, replace <flag> with one of the flags from the Flags table.

Via shortcut: right-click the application shortcut → PropertiesShortcut tab → add the flag at the end of the Target field → Apply.

Via terminal: press Win+R, type cmd, then run:

"%ProgramFiles%\ONLYOFFICE\DesktopEditors\DesktopEditors" <flag>

Flags

FlagPlatformDescription
--ascdesktop-support-debug-infoAllLaunches in debug mode with browser console access. See Debugging for step-by-step instructions.
--ascdesktop-support-debug-info-keep=VALUEAllPersists debug mode state across launches. VALUE: 1 — enable, 0 — disable, default — reset.
--system-title-barLinuxUses the system window frame instead of the custom title bar.
--custom-title-barLinuxUses the ONLYOFFICE title bar; overrides --system-title-bar.
--review=pathWindows, LinuxOpens a DOCX in Track Changes mode without the ability to disable it; XLSX and PPTX open in view-only mode. Enclose paths containing spaces in double quotes.
--view=pathWindows, LinuxOpens a DOCX, XLSX, or PPTX in view-only mode. Enclose paths containing spaces in double quotes.
--edit=pathWindows, LinuxOpens a file for editing in a separate window without the main application window. Enclose paths containing spaces in double quotes.
--force-use-tabWindows, LinuxUsed with --edit, --review, or --view; opens the file in a new tab instead of a separate window.
--single-window-appAllLaunches as an independent process; prevents cascading close warnings across instances.
--ignore-certificate-errorsAllDisables SSL certificate validation for connections to servers with self-signed certificates.
--new:wordAllCreates and opens a new blank DOCX file.
--new:cellAllCreates and opens a new blank XLSX file.
--new:slideAllCreates and opens a new blank PPTX file.

Examples

Open a file in Track Changes mode

"%ProgramFiles%\ONLYOFFICE\DesktopEditors\DesktopEditors" --review="C:\Users\username\Documents\Document1.docx"

Open a file for editing in a separate window

"%ProgramFiles%\ONLYOFFICE\DesktopEditors\DesktopEditors" --edit="C:\Users\username\Documents\Document1.docx"

Open a file in view-only mode

"%ProgramFiles%\ONLYOFFICE\DesktopEditors\DesktopEditors" --view="C:\Users\username\Documents\Document1.docx"

Combine flags

Open a file in Track Changes mode in a new tab instead of a separate window:

"%ProgramFiles%\ONLYOFFICE\DesktopEditors\DesktopEditors" --review="C:\Users\username\Documents\Document1.docx" --force-use-tab