HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

wine — Run Windows executables on Unix-based systems. More information: <https://gitlab.winehq.org/wine/win

Submitted by: @import:tldr-pages··
0
Viewed 0 times
winecommandrunwindowscliexecutablesbasedunix
linux

Problem

How to use the wine command: Run Windows executables on Unix-based systems. More information: <https://gitlab.winehq.org/wine/wine/-/wikis/Commands>.

Solution

wine — Run Windows executables on Unix-based systems. More information: <https://gitlab.winehq.org/wine/wine/-/wikis/Commands>.

Run a specific program inside the wine environment:
wine {{command}}


Run a specific program in background:
wine start {{command}}


Install/uninstall an MSI package:
wine msiexec /{{i|x}} {{path/to/package.msi}}


Run File Explorer, Notepad, or WordPad:
wine {{explorer|notepad|write}}


Run Registry Editor, Control Panel, or Task Manager:
wine {{regedit|control|taskmgr}}


Run the configuration tool:
wine winecfg

Code Snippets

Run a specific program inside the `wine` environment

wine {{command}}

Run a specific program in background

wine start {{command}}

Install/uninstall an MSI package

wine msiexec /{{i|x}} {{path/to/package.msi}}

Run `File Explorer`, `Notepad`, or `WordPad`

wine {{explorer|notepad|write}}

Run `Registry Editor`, `Control Panel`, or `Task Manager`

wine {{regedit|control|taskmgr}}

Context

tldr-pages: linux/wine

Revisions (0)

No revisions yet.