unable to install IIFLTTClient.msi files in wine

Questions about Wine on Linux
Locked
ritankar
Newbie
Newbie
Posts: 2
Joined: Fri Jul 20, 2012 5:43 pm

unable to install IIFLTTClient.msi files in wine

Post by ritankar »

I am trying to install IIFLTTClient.msi from the Downloads folder for which i gave the following commands to the terminal:

Code: Select all

himangshu@CYBORG:~$ cd /home/himangshu/Downloads
himangshu@CYBORG:~/Downloads$ wine msiexec /i IIFLTTClient.msi
After this in the terminal this is coming:

Code: Select all

fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x548024
fixme:advapi:RegisterTraceGuidsW (0x100778a, 0x100a060, {485e7de8-0a80-11d8-ad15-505054503030}, 1, 0x33fde0, (null), (null), 0x100a068,): stub
fixme:advapi:RegisterTraceGuidsW (0x100778a, 0x100a080, {485e7de9-0a80-11d8-ad15-505054503030}, 1, 0x33fde0, (null), (null), 0x100a088,): stub
fixme:advapi:RegisterTraceGuidsW (0x100778a, 0x100a0a0, {485e7dea-0a80-11d8-ad15-505054503030}, 1, 0x33fde0, (null), (null), 0x100a0a8,): stub
fixme:advapi:RegisterTraceGuidsW (0x100778a, 0x100a0c0, {485e7deb-0a80-11d8-ad15-505054503030}, 1, 0x33fde0, (null), (null), 0x100a0c8,): stub
fixme:advapi:RegisterTraceGuidsW (0x100778a, 0x100a0e0, {485e7dec-0a80-11d8-ad15-505054503030}, 1, 0x33fde0, (null), (null), 0x100a0e8,): stub
fixme:advapi:RegisterTraceGuidsW (0x100778a, 0x100a100, {485e7ded-0a80-11d8-ad15-505054503030}, 1, 0x33fde0, (null), (null), 0x100a108,): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x130648, filter=0x54e8ec,flags=0x00000001) returns a fake device notification handle!
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut
fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut
Now in the desktop 2 files are getting created, one is IIFLTT.lnk and the other is IIFLTT and none of them are working or opening


I downloaded this software from this page: http://www.indiainfoline.com/TT.aspx

The Direct link to download this software: http://content.indiainfoline.com/IIFLTT ... Client.msi



This Software requires .net2.0 sp2 for which i installed the same using these commands on terminal

Code: Select all

himangshu@CYBORG:~$ wget http://winetricks.googlecode.com/svn/trunk/src/winetricks
himangshu@CYBORG:~$ bash winetricks dotnet20sp1
himangshu@CYBORG:~$ bash winetricks dotnet20sp2
I started using linux today itself and this is the first time i am using any kind of linux. So you can understand I am extremely novice, and it will be very helpful and generous if you can give me step by step method, on how to get it installed. I am using Ubuntu 12.04 LTS
User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Post by DanKegel »

Worked fine for me with wine-1.5.9. Here's what I did:

$ rm -rf .wine winetricks
$ wget http://winetricks.googlecode.com/svn/tr ... winetricks
$ sh winetricks dotnet20
$ cd Downloads
$ wine msiexec /i IIFLTTClient.msi
$ cd ~/.wine/drive_c/IIFL
$ wine IIFLTT.exe

It prompted me for a username/password, so I didn't try further.
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

I got to the login screen, too, in 1.5.9. I followed pretty much the same procedure as Dan, except I installed winetricks dotnet20sp2.
ritankar
Newbie
Newbie
Posts: 2
Joined: Fri Jul 20, 2012 5:43 pm

Post by ritankar »

i am trying to do the same this.

when when i type

Code: Select all

himangshu@CYBORG:~$ rm -rf .wine winetricks


in the terminal nothing is happening. it is coming like this:

Code: Select all

himangshu@CYBORG:~$ rm -rf .wine winetricks
himangshu@CYBORG:~$

i didnt try the other steps as the first one is not doing anything... is it supposed to to something?
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

That's how it should be. It's just deleting the wineprefix and your old copy of winetricks.
Locked