From c31eeb4cd523d2a5278b7135a74cc4272726a517 Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Wed, 3 Aug 2022 13:55:23 +1000 Subject: [PATCH] wine: refresh page (#8019) * Refresh page: - add new examples of running usual windows programs - make examples more general * Better grammar: remove `a` Co-authored-by: Axel Navarro * Apply suggestions from code review Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Axel Navarro Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> --- pages/linux/wine.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/pages/linux/wine.md b/pages/linux/wine.md index a658b408b..f6e85e22b 100644 --- a/pages/linux/wine.md +++ b/pages/linux/wine.md @@ -1,20 +1,28 @@ # wine -> Run Windows programs on Unix. +> Run Windows executables on Unix-based systems. > More information: . -- Run `ipconfig.exe` program: +- Run a specific program inside the `wine` environment: -`wine {{ipconfig}} {{/all}}` +`wine {{command}}` -- Run `cmd.exe` in background: +- Run a specific program in background: -`wine start {{cmd}}` +`wine start {{command}}` -- Run Windows-like Package Manager: +- Install/uninstall an MSI package: -`wine uninstaller` +`wine msiexec /{{i|x}} {{path/to/package.msi}}` -- Install MSI packages: +- Run `File Explorer`, `Notepad`, or `WordPad`: -`wine msiexec /i {{package}}` +`wine {{explorer|notepad|write}}` + +- Run `Registry Editor`, `Control Panel`, or `Task Manager`: + +`wine {{regedit|control|taskmgr}}` + +- Run the configuration tool: + +`wine winecfg`