zoom guitar labs 5 cant install. Help please

Questions about Wine on Linux
Locked
bendy
Newbie
Newbie
Posts: 2
Joined: Fri Dec 27, 2019 6:43 am

zoom guitar labs 5 cant install. Help please

Post by bendy »

Hi all

I have been trying to install zoom guitar labs 5 on Ubuntu 19.10 but when i run the setup

$ wine Guitar\ Lab\ Setup.exe

I get a windows dialog box that says

Zoom Guitar lab
IDS_ERROR_NO_WIZARD_PAGES
OK

Anyone any thoughts at all?

Thanks
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: zoom guitar labs 5 cant install. Help please

Post by jkfloris »

Unfortunately, you can't use the graphical installer. You can install this application with the "/silent" option.

Code: Select all

wine Guitar\ Lab\ Setup.exe /silent
bendy
Newbie
Newbie
Posts: 2
Joined: Fri Dec 27, 2019 6:43 am

Re: zoom guitar labs 5 cant install. Help please

Post by bendy »

That worked like a dream.

Version 5 up and running and connected to the device

Thanks so much
Joshmccullough
Newbie
Newbie
Posts: 1
Joined: Fri Mar 06, 2020 8:05 pm

Re: zoom guitar labs 5 cant install. Help please

Post by Joshmccullough »

jkfloris wrote: Sun Dec 29, 2019 11:58 am Unfortunately, you can't use the graphical installer. You can install this application with the "/silent" option.

Code: Select all

wine Guitar\ Lab\ Setup.exe /silent
I've got the Guitar Lab installer saved as Guitar_Lab_Setup.exe in /Desktop/GuitarLab_Win_v5.0.0_E_15/GuitarLab_Win_v5.0.0_E

When I try the line of code you posted above, I get:

002d:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
002d:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
002d:fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut
002d:fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut


Any suggestions on what I'm doing wrong? I'd love to get this up and running, any help is greatly appreciated!
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: zoom guitar labs 5 cant install. Help please

Post by jkfloris »

This is a bug in Wine. I don't know if there is already a bug report, but you can bypass the bug by enabling the msi debug channel.

Code: Select all

WINEDEBUG=+msi wine Guitar Lab Setup.exe /silent
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: zoom guitar labs 5 cant install. Help please

Post by jkfloris »

:oops: Sorry, what I wrote above is incorrect.
Despite the fixme warnings on terminal output, the program is correctly installed in:
".wine/drive_c/Program Files/ZOOM/Guitar Lab"
Locked