MSFN Forum: Winamp 5.0.5 MSI release - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 6 Pages +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • This topic is locked

Winamp 5.0.5 MSI release Rate Topic: -----

#1 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 06 September 2004 - 04:52 PM

Alrighty, here it is.

Background:
This MSI is meant as a complete replacement for the NSIS installer for Winamp. It is a complete recreation of the installer in the Windows Installer format. This conversion allows for command-line switches to be used.

NOTE: This installer is not SILENT by default. You must still use /qb or /qn like you normally would.

For more information, if you don't understand anything here (besides the INI part) refer to here: http://www.msfn.org/...showtopic=17412

Switches:
I'm lazy, and don't want to type up ALL the switches individually, so I believe I'll use an image.
Posted Image
The switches are in the colum just to the RIGHT of all the components. They match up with the components they're in line with.

Additional switches are
Xfull = Install ALL components.
XName = Username for Pro registration
XKey = Product Key for Pro registration
XDesktop = Creates the Desktop shortcut; Default is 1
XQuicklaunch = Creates the Quicklaunch shortcut; Default is 0
XStartmenu = Creates the Startmenu shortcuts; Default is 1
XAllShort = Creates all shortcuts; Default is 0
XSkinsetting = Specify the SKIN to use in Winamp.
XINET = Specifies what internet connection you want. 0 = Always; 1 = Modem; 2 = Not Connect. Default is 2


Usage:
To install a component, you MUST tell the installer to install it. By DEFAULT only the main executable (winamp.exe) is installed. All switches are =0. To signal to the installer to install a component, add the switch to the command line with =1.

Examples:
To install Audio and Video
winamp.msi Xaudio=1 Xvideo=1

To install Agent
winamp.msi Xagent=1

If you wanted EVERYTHING then use
winamp.msi Xfull=1

and everything will be installed.


The ONLY ones this does not apply to are XUser,XKey, and XSkinsetting. They are all strings, so use whatever you're supposed. If you used "Joe User" to register Winamp, then use
winamp.msi Xuser="Joe User" XKey="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"



INI Usage:
Now for the fun part. New in this release is the ability to use an INI file rather then type it all out at the command line. This file can be called anything, and can be anywhere, because you specify where it is. If the path is not correct and it can't find the file, then the installer may perhaps error out on you.

INI Syntax:
[SETUP]
XAUDIO=1
XVIDEO=1
XNAME=Joe User
XKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX


I only included a set of the of arguments you could use. They are the exact same names and usage as from command line from above.
Save this file ANYWHERE you want, and call it [b]ANYTHING[/] you want. As long as you know where and what it's called.

After you have create your INI file, start the install with
winamp.msi INI="%CDROM%\Unattend\winamp.ini"

the quotes ( " ) are only neccesary when there are spaces, and when used MUST enclose the whole argument. %CDROM% does NOT have to be %CDROM%. If you're files are in %systemdrive%\install\winamp, then use
winamp.msi INI="%systemdrive%\install\winamp\winamp.ini"


NOTE: IF you want to use CDDB functionality, you MUST set XINET to 0 or 1.

Updates
New MSI, fixed a couple of string error (wrong name). Also tried to make smaller, but probally didn't succeed.
Also uploaded a RAR file with the MSI broken down into CAB files. Delete the cab's you don't need. There should be ONE cab for each component switch. DON'T DELETE CORE.CAB!!

Download Link: MSI File __ CAB File Download
Last Update: 9/8 05:52 GMT


#2 User is offline   pegasus1010 

  • Newbie
  • Group: Members
  • Posts: 17
  • Joined: 05-September 04

Posted 06 September 2004 - 06:07 PM

thanks.. :thumbup

#3 User is offline   tewk_dawg 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 23-April 04

Posted 06 September 2004 - 06:39 PM

Trying it now using the INI method, will let you know in about an 20 minutes. Here's my command line in the runonce file and the ini is below.

REG ADD %KEY%\005 /V 2 /D "%systemdrive%\install\WINAMP\winamp505.msi /qb INI="%systemdrive%\install\WINAMP\winamp.ini"" /f

[SETUP]
XLIBRARY=1
XJUMP=1
XMODERNSKIN=1
XAUDIO=1
XNAME="xxxxxxxx xxxxxx"
XKEY="xxxxx-xxxxx-xxxxx-xxxxx"
XQUICKLAUNCH=1
INSTALLDIR=C:\Program files\Winamp
XSKINSETTING=Winamp Modern

#4 User is offline   battleangel3222 

  • Member
  • PipPip
  • Group: Banned
  • Posts: 113
  • Joined: 16-July 04

Posted 06 September 2004 - 06:47 PM

hi. if you please could, verify my runonceex line:

REG ADD %KEY%\065 /VE /D "Installing Winamp" /f
REG ADD %KEY%\065 /V 1 /D "%systemdrive%\install\winamp\winamp.msi Xfull=1 Xuser="S0me0nesmind1="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" /qb" /f

#5 User is offline   tewk_dawg 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 23-April 04

Posted 06 September 2004 - 07:06 PM

Works great! No problems to report. :thumbup

#6 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 06 September 2004 - 10:30 PM

battleangel3222, on Sep 6 2004, 07:47 PM, said:

hi. if you please could, verify my runonceex line:

REG ADD %KEY%\065 /VE /D "Installing Winamp" /f
REG ADD %KEY%\065 /V 1 /D "%systemdrive%\install\winamp\winamp.msi Xfull=1 Xuser="S0me0nesmind1="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" /qb" /f

incorrect. You forgot to specify XKey

#7 User is offline   Akolite 

  • Group: Members
  • Posts: 7
  • Joined: 06-September 04

Posted 07 September 2004 - 12:18 AM

link to the 5.05 msi file?

#8 User is offline   pegasus1010 

  • Newbie
  • Group: Members
  • Posts: 17
  • Joined: 05-September 04

Posted 07 September 2004 - 03:03 AM

bottom of first post:

Download Link: Linkage
Last Update: 8/13 16:48 GMT....

#9 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 07 September 2004 - 06:08 AM

TNX for the .msi Alanoll

#10 User is offline   Orsi 

  • Hasta la Windows Vista, baby
  • PipPip
  • Group: Members
  • Posts: 263
  • Joined: 09-October 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 September 2004 - 12:27 PM

Im being able to make it work :(
Something wrong with the INI file?

[SETUP]
Xfull=1
XNAME=xxxxxxx
XKEY=xxxxx-xxxxx-xxxxx-xxxxx

Or the command?
Winamp_5[1].0.5.msi INI=C:\winamp.ini /qb

#11 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 07 September 2004 - 03:09 PM

pegasus1010, on Sep 7 2004, 04:03 AM, said:

bottom of first post:

Download Link: Linkage
Last Update: 8/13 16:48 GMT....

whooops. the file is new, the date isn't. I copied the first post from teh other thread, and changed the link. My bad, will correct in a minute.


@Orsi
What doesn't work? Nothing?
try encasing the INI argument with quotes. ( INI="C:\winamp.ini" )

#12 User is offline   Orsi 

  • Hasta la Windows Vista, baby
  • PipPip
  • Group: Members
  • Posts: 263
  • Joined: 09-October 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 September 2004 - 04:06 PM

worked! (dumb me :) )

tks a lot

#13 User is offline   Cee-Kay 

  • Member
  • PipPip
  • Group: Members
  • Posts: 126
  • Joined: 20-May 04

Posted 07 September 2004 - 06:31 PM

Great release as always Alanoll! I simply used my old Winamp.ini that I created from use with your Winamp 5.0.4 release.

Seems to work no problem. :D

#14 User is offline   prathapml 

  • Follow the rules please :-)
  • Group: Patrons
  • Posts: 6,791
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 September 2004 - 06:52 PM

OK, yeah - cool news Alanoll! :D
You finally managed to get the 5.05 out the door.

There's one thing I've been thinking all along - since I so badly need to reduce space usage on my install images (and 4.x MB is not a help there :P) do you have any plans of a lite version of wa 5.05?
That'd be an interesting option - you could maybe put in only the features that the wa 5.05 lite installer (from nullsoft) gives; and what would it size up to? Sufficiently lesser installer size than the current one? (1.x MB would be perfect)

Heh...
Maybe this is why they say - "don't do something, because then they'll ask you to do everything". Never mind.... enjoy your day. :thumbup

#15 User is offline   XtremeMaC 

  • MSFN SuperB
  • PipPipPipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,070
  • Joined: 13-October 03

Posted 07 September 2004 - 08:21 PM

well if u want specific components I'd say go with Mazin's method.
a specific lite version I'm sure could be done (I have 1 for myself, pretty lite :))
as u said lite as in nullsoft's lite would be more appropiate :P

I've 1 idea though I'm not sure how it'd be accomplished
maybe alanoll can put every component into a separate cab file and the msi would only install the one's that exist
so the folder contents will look like this
winamp.msi (about 300kb)
audio components.cab (1.5mb)
video components.cab (1.5mb)
and every main component could have its own sub components if alanoll's willing to spend his time on saving few mb's :)
mp3.cab
wma.cab
modernskin.cab :)

#16 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 07 September 2004 - 09:22 PM

@Mac
That's a simple setting in InstallShield to make each component into it's own cab, so it's entirely likely. Of course, I'm not sure what will happen if you tell it to install something that's not present, but if that what you people want, I'll recompile tomorrow and rar it and upload it as a seperate link for people to respond back to.

As for removing stuff not in the original installer, everything is exact like the old. The problem is InstallShield's compression isn't as good as nullsoft's. And I can't find where to set it. I just see Optomize for size, and that's about it.....

#17 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 07 September 2004 - 09:57 PM

First post Updated.

#18 User is offline   prathapml 

  • Follow the rules please :-)
  • Group: Patrons
  • Posts: 6,791
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 08 September 2004 - 04:20 AM

@Alanoll
Fantastic. This just _may_ finally fix my long-time gripe. I'll tell if it doesn't work fine.

#19 User is offline   XtremeMaC 

  • MSFN SuperB
  • PipPipPipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,070
  • Joined: 13-October 03

Posted 08 September 2004 - 04:26 AM

yes I know u can save them separetly, I'm also wondering what'd happen if 1 cab was not present. :)
but I think it will be okay if the cab is not present and that component is not selected to install
just dled the rar. will give it a try now :)

#20 User is offline   a06lp 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 976
  • Joined: 19-August 04

Posted 08 September 2004 - 08:01 AM

I never tried this before, so let me know if this is ok.

I want to install SILENTLY. (assuming I replace name and key)


Winamp505.msi INI="%systemdrive%\install\winamp505\winamp.ini" /qb


winamp.ini
[SETUP]
XLIBRARY=1
Xhotkey=1
Xjump=1
XAUDIO=1
Xextra=1
XNAME="xxxxxxxx xxxxxx"
XKEY="xxxxx-xxxxx-xxxxx-xxxxx"
XQUICKLAUNCH=1
INSTALLDIR=C:\Program files\Winamp


Also, if I just leave out the "XNAME" and "XKEY", it will install a non-Pro version, but otherwise fully functional?

Thanks

Share this topic:


  • 6 Pages +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • This topic is locked

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 - 2011 msfn.org
Privacy Policy