Help - Search - Members - Calendar
Full Version: WINAMP 5 with PlugIns and Skins
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
--=ddSHADOW=--
I like my skined Winamp with plug-ins ready for use on new windows

RunOnceEX.cmd
CODE
REG ADD %KEY%\050 /VE /D "WINAMP 5.091" /f
REG ADD %KEY%\050 /V 1 /D "%systemdrive%\install\WINAMP_5\Winamp5091.msi /qn INI=\"%systemdrive%\Install\WINAMP_5\winamp.ini"" /f
REG ADD %KEY%\050 /V 2 /D "%systemdrive%\install\WINAMP_5\PLUG-IN\plug-in.exe" /f
REG ADD %KEY%\050 /V 3 /D "%systemdrive%\install\WINAMP_5\SKINS\install.bat" /f

LINK for MSI

plug-in.exe made with AutoIt it contains
plug-in.au3
CODE
; ----------------------------------------------------------------------------
;mp3cue
; ----------------------------------------------------------------------------
Run("mp3cue.exe /S")
WinWaitActive("mp3cue")
Send("!N")
; ----------------------------------------------------------------------------
;MSN_Now_Playing
; ----------------------------------------------------------------------------
Run("MSN_Now_Playing.exe /S")
WinWaitActive("Now Playing")
Send("!N")
; ----------------------------------------------------------------------------
;Playlist Loader
; ----------------------------------------------------------------------------
Run("Playlist_Loader.exe /S")
WinWaitActive("Playlist Loader")
Send("!N")


and final skins (make SKINS folder and putt all skins inside(.wal, .wsz))
install.bat
CODE
copy /Y *.wal "%systemdrive%\Progra~1\WINAMP\SKINS"
copy /Y *.wsz "%systemdrive%\Progra~1\WINAMP\SKINS"


Thats for all new ppl who dont know how to make an easy sillent install

Have fun thumbup.gif
Alanoll
Just thought I'd comment on this...

Most Winamp Plugins are simple DLL files that are extracted into the Plugin Folder in the Winamp Directory. That being said, you could install all your Plugins and then create a new SFX file that installs them all and possibly save some space on your CD.

There is no registration needed for the DLL files as they're parsed at runtime by Winamp. If you're concerned about where to install the plugins, you have a couple of options..

The MSI is capable of using the INSTALLDIR property to change the default path to one you specify and then use that in the SFX.
You could also USE the default path and have %ProgramFiles%\Winamp as the path for the SFX.

And on the note of adding your own settings prior to startup, ALL settings for Winamp's internals are saved in studio.xnl and Winamp.ini both located in Winamp's main directory. You could preset how you like Winamp, and copy those over as well.
1chaoticadult
Right Alanoll. I am currently using your MSI and making a 7-zip sfx for plugins, etc. that I use with winamp. I might even make an inno setup with winamp and plugins I want in order to simplify having two exes.. biggrin.gif I'm kindy lazy right now though... tongue.gif
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.