# Set Wine prefix location and 64-bit architecture environment variables
export WINEPREFIX="/path/to/WinApps/myprogram/pfx"
# Run a specific program inside the `wine` environment:
# Run a specific program in background
# Run a program in its location of the Wine prefix
cd ~/my/wine/prefix/folder/
# Install/uninstall an MSI package
wine msiexec /i|x path/to/package.msi
wine msiexec /i ~/Downloads/program.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
# Run Wine Configuration with a specific prefix
WINEPREFIX=~/.newprefix winecfg
cd "/path/to/WinApps/myprogram/pfx/drive_c/users/yourusername/programdirectory"