I can't run program with wine!!!

Questions about Wine on Linux
Locked
msm1365
Newbie
Newbie
Posts: 4
Joined: Fri Jun 26, 2020 1:54 pm

I can't run program with wine!!!

Post by msm1365 »

Hi Everybody,
I installed a program with wine without problem but i can't run it. my OS is fedora.

my report in terminal :

wine '/home/admin/.wine/drive_c/users/admin/Start Menu/Programs/Telegram Auto/Telegram Auto Setup/Telegram Auto.lnk'
002c:fixme:winediag:__wine_start_process Wine Staging 5.10 is a testing version containing experimental patches.
002c:fixme:winediag:__wine_start_process Please mention your exact version when filing bug reports on winehq.org.
0024:err:module:__wine_process_init failed to load L"C:\\users\\admin\\Start Menu\\Programs\\Telegram Auto\\Telegram Auto Setup\\Telegram Auto.lnk", error c000012f

How to fix it?
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: I can't run program with wine!!!

Post by jkfloris »

Do you get the same error if you run wine with the start option?

Code: Select all

wine start /unix "/home/admin/.wine/drive_c/users/admin/Start Menu/Programs/Telegram Auto/Telegram Auto Setup/Telegram Auto.lnk"
https://wiki.winehq.org/Wine_User%27s_G ... mmand_line
msm1365
Newbie
Newbie
Posts: 4
Joined: Fri Jun 26, 2020 1:54 pm

Re: I can't run program with wine!!!

Post by msm1365 »

jkfloris wrote: Sun Jun 28, 2020 5:01 am Do you get the same error if you run wine with the start option?

Code: Select all

wine start /unix "/home/admin/.wine/drive_c/users/admin/Start Menu/Programs/Telegram Auto/Telegram Auto Setup/Telegram Auto.lnk"
https://wiki.winehq.org/Wine_User%27s_G ... mmand_line
wine start '/home/admin/.wine/drive_c/users/admin/Desktop/Telegram Auto Social Media Marketing.lnk'
010c:err:start:wmain Unknown option 'L"/home/admin/.wine/drive_c/users/msm1365/Desktop/Telegram Auto Social Media Marketing.lnk"'
Start a program, or open a document in the program normally used for files
with that suffix.
Usage:
start [options] program_filename [...]
start [options] document_filename

Options:
"title" Specifies the title of the child windows.
/d directory Start the program in the specified directory.
/b Don't create a new console for the program.
/i Start the program with fresh environment variables.
/min Start the program minimized.
/max Start the program maximized.
/low Start the program in the idle priority class.
/normal Start the program in the normal priority class.
/high Start the program in the high priority class.
/realtime Start the program in the realtime priority class.
/abovenormal Start the program in the abovenormal priority class.
/belownormal Start the program in the belownormal priority class.
/node n Start the program on the specified NUMA node.
/affinity mask Start the program with the specified affinity mask.
/wait Wait for the started program to finish, then exit with its
exit code.
/unix Use a Unix filename and start the file like Windows
explorer.
/ProgIDOpen Open a document using the specified progID.
/? Display this help and exit.
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: I can't run program with wine!!!

Post by jkfloris »

wine start '/home/admin/.wine/drive_c/users/admin/Desktop/Telegram Auto Social Media Marketing.lnk'
You are missing the /unix option.
 
msm1365
Newbie
Newbie
Posts: 4
Joined: Fri Jun 26, 2020 1:54 pm

Re: I can't run program with wine!!!

Post by msm1365 »

jkfloris wrote: Tue Jun 30, 2020 7:42 am
wine start '/home/admin/.wine/drive_c/users/admin/Desktop/Telegram Auto Social Media Marketing.lnk'
You are missing the /unix option.
 
How to solve it?
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: I can't run program with wine!!!

Post by jkfloris »

Code: Select all

wine start /unix '/home/admin/.wine/drive_c/users/admin/Desktop/Telegram Auto Social Media Marketing.lnk'
Locked