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 <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>
pull/1/head
Emily Grace Seville 2022-08-03 13:55:23 +10:00 committed by GitHub
parent 36da1e723f
commit c31eeb4cd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 9 deletions

View File

@ -1,20 +1,28 @@
# wine
> Run Windows programs on Unix.
> Run Windows executables on Unix-based systems.
> More information: <https://wiki.winehq.org/>.
- 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`