MSFN Forum: How to install LIPSetup.msi file from cmdlines.txt? - MSFN Forum

Jump to content


  • 3 Pages +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

How to install LIPSetup.msi file from cmdlines.txt? Rate Topic: -----

#1 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 21 January 2013 - 09:30 AM

I wanted to install a LIP through cmdlines.txt but without success. Before and after that I tried with Google but there's no information related with this problem.
It is a little bit strange because this procedure is rather important in creating of unattended installations.

I've created a lp folder inside of $OEM$ and put there my lip file. I hoped that it is possible to do that with the following command: ".\lp\setup.msi /passive /norestart"

any suggestion?

This post has been edited by rigorous: 25 January 2013 - 07:50 AM



#2 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,364
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 21 January 2013 - 10:42 AM

Read this!

#3 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 21 January 2013 - 12:02 PM

View PostYzöwl, on 21 January 2013 - 10:42 AM, said:



Thank you for the help, Yzöwl, but I've already read msiexec syntax from another site.

Well... my cmdlines.txt now looks like this way:

"msiexec/i .\lp\setup.msi /passive /norestart"

As the first, sorry, I didn't mention msiexec command in my 1st post here :)
As the second, I added /i switch, but my language pack refused to install.again.

I removed /passive /norestart switches to check what;s going on there and I've got this error:

The installation package could not be opened. Verify that the package exist and that you can access it, or contact the application vendor... bla bla...


According to this message my path isn't correct

.\lp\setup.msi

But it looks fine to me :)

#4 User is offline   gunsmokingman 

  • MSFN Master
  • Group: Super Moderator
  • Posts: 2,352
  • Joined: 02-August 03
  • OS:none specified
  • Country: Country Flag

Posted 21 January 2013 - 01:32 PM

Perhaps try puttimg the msi in the same folder as the cmdlines.txt is located, then change the cmdline to below


setup.msi /passive /norestart

#5 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,364
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 21 January 2013 - 02:12 PM

Have you read 'The Guide'?

#6 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 21 January 2013 - 03:39 PM

It's needed to take care with the spaces and specify the full path !

Example with WPI:

cmds[pn]=['"%WPIPath%\\Install\\ITunes\\SetupAdmin.exe"','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\iTunes.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\QuickTime.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\AppleSoftwareUpdate.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\AppleMobileDeviceSupport.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\Bonjour.msi" /qn'];


Or:

msiexec.exe /i "%SystemDrive%\Install\ITunes\iTunes.msi" /qn

This post has been edited by myselfidem: 21 January 2013 - 03:53 PM


#7 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 21 January 2013 - 04:04 PM

View Postgunsmokingman, on 21 January 2013 - 01:32 PM, said:

Perhaps try puttimg the msi in the same folder as the cmdlines.txt is located, then change the cmdline to below

setup.msi /passive /norestart


Well you're right. After I pun my LIP directly into $OEM$ folder, installation started at T-12 but when it finished, I've got an error message.

#8 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 21 January 2013 - 04:06 PM

View PostYzöwl, on 21 January 2013 - 02:12 PM, said:



as you can see, my syntax was in accordance with guidelines :-/

#9 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 21 January 2013 - 04:09 PM

View Postmyselfidem, on 21 January 2013 - 03:39 PM, said:

It's needed to take care with the spaces and specify the full path !

Example with WPI:

cmds[pn]=['"%WPIPath%\\Install\\ITunes\\SetupAdmin.exe"','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\iTunes.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\QuickTime.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\AppleSoftwareUpdate.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\AppleMobileDeviceSupport.msi" /qn','msiexec.exe /i "%WPIPath%\\Install\\ITunes\\Bonjour.msi" /qn'];


Or:

msiexec.exe /i "%SystemDrive%\Install\ITunes\iTunes.msi" /qn



Thank you for your post.

Now, I'm afraid that it isn't possible to install language pack (not MUI but LIP) to the XP at all!
I've found an old post here that it is impossible to install them but I can't understand why... LIP is the same thing as any other .msi file...

#10 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 22 January 2013 - 05:03 AM

Yes, it's possible! But now I see that all Microsoft's links are removed about explaination to integrate LIP on Windows XP!

I found french documentation, and used to install MUI French language pack successfully (process is not the same), but I don't remember where !

1 - LIP kits languages can be installed only with 32bit Windows XP version, but they can't be installed on a computer who have MUI language pack already installed or previously installed !

2 - We can install only ONE LIP. I we want install another LIP we must uninstall the one previously installed

3 - Copy the CD-ROM files LIP inside a subfolder:

%DistributionFolder%\OPKTools\Updates\LIP


4 - Preinstall application:

msiexec /i \\server_name\\OpkTools\LIP\MUISETUP.EXE /q


%WINDIR%\mui\fallback\LCID\profupd.exe /l LCID_value


5 - LCID_value and language:
0402 = Bulgare
0403 = Catalan
041a = Croate
0425 = Estonien
0439 = Hindi
0426 = Letton
0427 = Lituanien
0418 = Roumain
0c1a = Serbe (cyrillique)
081a = Serbe (latin)
041e = Thaï
0422 = Ukrainien
------------------------

0424 = Slovène  *
041b = Slovaque  *



This method create the section below inside:

Winbom.ini
[OemRunOnce]
"PackageName1","msiexec /i \\server\\OpkTools\Updates\LIP\MUISETUP.EXE\LIPSetup.msi /q"
"PackageName2","c:\windows\mui\fallback\LCID_value\profupd.exe /l LCID_value"



For Slovène and Slovaque LIP (*)

msiexec /i \\server_name\\OpkTools\Updates\LIP\MUISETUP.EXE /l LCID_value /s /r



This method create the section below inside:

Winbom.ini
[OemRunOnce]
"PackageName1","msiexec /i \\server\\OpkTools\Updates\LIP\MUISETUP.EXE /l LCID_value /s /r"



LIP will be installed with "Audit mod"

HTH

This post has been edited by myselfidem: 22 January 2013 - 08:01 AM


#11 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 22 January 2013 - 06:39 AM

myselfidem...

There's a difference between MUI and LIP.
LIP is- Language Interface Pack
It isn't completely the same as MUI (Multilingual User Interface)

If you check your examples you'll see that we're working with MUISETUP.EXE. In my case it is a setup.msi.
I found things which you mentioned here but I didn't check them because I'm a little bit suspicious from the reason mentioned above.

There's no "LIP files" in my case. It is only one file, setup.msi.

I simply can't understand that this topic wasn't interesting many years ago.

regards

This post has been edited by rigorous: 22 January 2013 - 06:40 AM


#12 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 22 January 2013 - 06:52 AM

I'm afraid that I'll have to swap original files manually.

When we extract setup.msi, we can see next folders:

CommonFilesFolder
ProgramFilesFolder
System32
Windows

It is not a big problem to convert some well known files into CAB archives and change original english language files but I don't know what to do with (for exapmle) *.dll.mui files from $$\Windows\mui\Fallback\0c1a

#13 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 22 January 2013 - 07:00 AM

View Postrigorous, on 22 January 2013 - 06:39 AM, said:

myselfidem...

There's a difference between MUI and LIP.
LIP is- Language Interface Pack
It isn't completely the same as MUI (Multilingual User Interface)

If you check your examples you'll see that we're working with MUISETUP.EXE. In my case it is a setup.msi.

Yes I know there is a difference between MUI and LIP and if you read carefully I explain that (the process is not the same) !

I translated (verbatim) the French documentation to English to give you some help.

It seems MUISETUP.EXE is included with original CD LIP !

Frequently Asked Questions

Quote

Based on MUI technology, LIP provides the desktop user with an approximately 80% localized user experience by translating a reduced set of user interface (UI) elements. LIP is installed on a licensed copy of Windows and has a dependency on a base Language Pack of Windows.


Windows XP Language Interface Pack

Language packs

This post has been edited by myselfidem: 22 January 2013 - 07:24 AM


#14 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 22 January 2013 - 07:37 AM

For your LIP: 0c1a Serbe (cyrillique) LIPSetup.msi

Српски (ћирилица) интерфејс пакет за оперативни систем Windows® XP

Requieres Genuine validation !

Update for Windows XP SP2

This post has been edited by myselfidem: 22 January 2013 - 07:48 AM


#15 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 22 January 2013 - 08:07 AM

Quote

Yes I know there is a difference between MUI and LIP and if you read carefully I explain that (the process is not the same) !

I translated (verbatim) the French documentation to English to give you some help.

It seems MUISETUP.EXE is included with original CD LIP !

Frequently Asked Questions



I've seen that but I wanted to explain for others because this is frequent mistake. People think that it is the same thing.

This post has been edited by rigorous: 22 January 2013 - 08:11 AM


#16 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 22 January 2013 - 08:45 AM

You will find MUISETUP.EXE (MUISETUP.EX_) inside your Windows XP CD inside I386 folder.
This one will be used with LIPSetup.msi for silent install.

This is not the same given for MUI language packs !

This post has been edited by myselfidem: 22 January 2013 - 08:50 AM


#17 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 22 January 2013 - 11:10 AM

View Postmyselfidem, on 22 January 2013 - 08:45 AM, said:

You will find MUISETUP.EXE (MUISETUP.EX_) inside your Windows XP CD inside I386 folder.
This one will be used with LIPSetup.msi for silent install.

This is not the same given for MUI language packs !


What does you mean?
Tou want to say that at T-12 Windows installer will start MIUSETUP.EXE from uor cmdlines.txt?

You wrote:
http://www.msfn.org/...ost__p__1027673

Quote

3 - Copy the CD-ROM files LIP inside a subfolder:

%DistributionFolder%\OPKTools\Updates\LIP


As you know, we have only a .msi file which we can extraxt and that's all.
Do you think that extracted files would be OK?

#18 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 22 January 2013 - 12:49 PM

Well, I never tried to install LIP on Windows XP.

I think it's needed to use sysprep on the computer to use the methods given above!

Sorry, I can't give more help because I never use to integrate LIP on Windows XP.

Maybe some other members can give you a better answer about the silent installation with LIP ?

#19 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 22 January 2013 - 03:52 PM

View Postmyselfidem, on 22 January 2013 - 12:49 PM, said:

Well, I never tried to install LIP on Windows XP.

I think it's needed to use sysprep on the computer to use the methods given above!

Sorry, I can't give more help because I never use to integrate LIP on Windows XP.

Maybe some other members can give you a better answer about the silent installation with LIP ?


I intended to do that 7-8 years ago but as you can see, I didn't )))
Thank you to the shown will to help, buddy!
I hope that I'll find somebody who had the same problems. In any case, as the last solution, I'll try to integrate LIP files directly into OS system files.

#20 User is offline   rigorous 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 31-December 12
  • OS:none specified
  • Country: Country Flag

Posted 22 January 2013 - 03:57 PM

It is interesting that I couldn't find any file inside this .msi bundle which could explain to installer where to store files inside XP Windows directory.

Share this topic:


  • 3 Pages +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy