wine: cannot find L"C:\\windows\\system32\\program.exe"

Questions about Wine on macOS.
Locked
5ag70
Newbie
Newbie
Posts: 1
Joined: Tue Mar 26, 2019 3:15 pm

wine: cannot find L"C:\\windows\\system32\\program.exe"

Post by 5ag70 »

Last login: Tue Mar 26 20:13:58 on ttys000
Sagars-MacBook-Pro:~ 5ag_70$ test "$?BASH_VERSION" = "0" || eval 'setenv() { export "$1=$2"; }'; setenv PATH "/Applications/Wine Stable.app/Contents/Resources/start/bin:/Applications/Wine Stable.app/Contents/Resources/wine/bin:$PATH"; winehelp --clear



















################################################################################
# Wine Is Not an Emulator #
################################################################################

Welcome to wine-4.0.

In order to start a program:
.exe: wine program.exe
.msi: wine msiexec /i program.msi

If you want to configure wine:
winecfg

To get information about app compatibility:
appdb Program Name

Sagars-MacBook-Pro:~ 5ag_70$ gram:
-bash: gram:: command not found
Sagars-MacBook-Pro:~ 5ag_70$ wine program.exe
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
preloader: Warning: failed to reserve range 00007fff40000000-00007fff41ff0000
wine: cannot find L"C:\\windows\\system32\\program.exe"
Sagars-MacBook-Pro:~ 5ag_70$
Gcenx
Level 6
Level 6
Posts: 709
Joined: Mon Dec 25, 2017 12:11 pm

Re: wine: cannot find L"C:\\windows\\system32\\program.exe"

Post by Gcenx »

You dumped your Terminal output withou code tags, and don’t explain what you were trying to do.
The example says “programs.exe” that does not mean run

Code: Select all

wine program.exe
The above would try to load “program.exe” from C:\Windowz\system32\ but as it says it can’t find that as it doesn’t exist.

Code: Select all

wine explorer
The above will launch wines version of Windows file explorer.

Code: Select all

wine control
The above would launch the wine version of Windows Control panel.

Code: Select all

wine winecfg
The above launches the wine configuration utility

These are some basic tools you can use, if your not sure the path of your installer/game etc you can use the explorer example and navigate to where the install is then run it
Locked