Problem with wine cmd /c start /unix

Questions about Wine on Linux
Post Reply
vlniktt
Newbie
Newbie
Posts: 2
Joined: Mon Apr 08, 2024 6:52 am

Problem with wine cmd /c start /unix

Post by vlniktt »

It's doesn't work since wine 9.5, "File not found" messages appears.

Code: Select all

wine cmd /c start /unix /bin/zenity --info
work in 9.4, don't work in 9.5 - 9.6.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Problem with wine cmd /c start /unix

Post by jkfloris »

Run regedit and add a dot character to the end of the list of extensions in:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment\PATHEXT

The line will looks like this:

Code: Select all

.com;.exe;.bat;.cmd;.vbs;.vbe;.js;.jse;.wsf;.wsh;.
Run the native Linux program with:

Code: Select all

wine cmd /c /bin/zenity --info
vlniktt
Newbie
Newbie
Posts: 2
Joined: Mon Apr 08, 2024 6:52 am

Re: Problem with wine cmd /c start /unix

Post by vlniktt »

Thanks, it's working.
Post Reply