mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-24 01:22:10 +02:00

* Refresh page: - add new examples of running usual windows programs - make examples more general * Better grammar: remove `a` Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Apply suggestions from code review Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Axel Navarro <navarroaxel@gmail.com> Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
28 lines
564 B
Markdown
28 lines
564 B
Markdown
# wine
|
|
|
|
> Run Windows executables on Unix-based systems.
|
|
> More information: <https://wiki.winehq.org/>.
|
|
|
|
- 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`
|