wine-start
Launch a program or open a document in a Wine prefix
TLDR
SYNOPSIS
wine start [options] program [arguments...]wine start [options] document
DESCRIPTION
wine start is Wine's reimplementation of the Windows start command (start.exe). It uses ShellExecuteEx to launch an executable or to open a document with the program registered for that suffix, so it can start .exe files, .lnk shortcuts, and associated documents.Use it instead of a bare wine program.exe when you pass a full path: start can set the working directory to the program's folder, which many installers and games require. wine start /unix is the usual form from a Unix shell, because it accepts native paths such as $HOME/Downloads/setup.exe.The tool operates on the prefix named by WINEPREFIX (default ~/.wine). Extra Windows-compatible switches exist for process priority (/low, /normal, /high, /realtime, /abovenormal, /belownormal), NUMA node (/node), and CPU affinity (/affinity).
PARAMETERS
"title"
Title of the child window. Must be the first quoted argument./d directory
Working directory for the program./b
Do not create a new console for the program./i
Start with a fresh environment (ignore the current one)./min
Start minimized./max
Start maximized./wait, /w
Wait for the started program to finish, then exit with its exit code./unix
Treat the filename as a Unix path and start it the way Windows Explorer would. Wine-specific; not present on Windows./?
Display help and exit.
INSTALL
CAVEATS
Without /unix, paths are Windows-style; backslashes must be quoted or doubled so the Unix shell does not treat them as escapes. /unix is Wine-only and will not work if you later run the same command on Windows. /wait only waits for the process start itself created, not for child processes that detach. Desktop files generated by Wine often invoke start.exe /unix internally.
HISTORY
Wine's start.exe was added in 2003 by Dan Kegel as a compatible replacement for C:\windows\command\start.exe. The /Unix switch was added in 2008 so native file managers and .desktop files could open Windows programs by Unix path.
