Jump to content

Winamp - Selectable Features


mazin

Recommended Posts

I found that adding this line prevents Winamp from connecting to the Internet.

This is because it sets Internet Connection to "Not connected...".

WshShell.SendKeys ("{DOWN 2}");//setting Internet Connection to Not connected...

I forgot to say: And, this is why I gave up using these strings:

echo [WinampReg]>%systemroot%\winamp.ini

echo IsFirstInst=>>%systemroot%\winamp.ini

echo NeedReg=>>%systemroot%\winamp.ini

Link to comment
Share on other sites


ok, i have give this a try.... i notices there is no ability to check or uncheck visual types? (brb i have to check the first post again....)

look at the attachement pls ...

i am not sure how to test this without burning it on a unattendcd? i want to exclude agent, video (i use BSPlayer), library, disable internetcheck. also this is for 5.03c ?

Link to comment
Share on other sites

Mazin check this I use it with 5.03c

ENTER

TAB

DOWN

("") AGENT

DOWN

("") LIBRARY

DOWN

DOWN

DOWN

DOWN

DOWN

("") VIDEO SUPPORT

DOWN

("") VISUALIZATIONS

ENTER NEXT PAGE

ENTER DEFAULT INSTALL

("") start menu

DOWN

DOWN

DOWN

DOWN

DOWN

("") ASSOCIATE W\PLAYLIST

ENTER NEXT PAGE

ENTER CONNECT TO LAN

ENTER SELECT SKIN AND START INSTALL

WinAmp 5.03c

Mazin I don't see where to put the extra down w\5.03c

bonedaddy

EDIT

whats up SaR?

EDIT

OK!

Link to comment
Share on other sites

SolidasRock

The JScript posted here is a strict example that exclude certain features. To make your own JS, download the PDF and you'll be able to add the keystrokes neede for your customizations. It's extremely easy.

And, you don't need to test it from unattended CD. However, it works everyway as you might see in the prevoius posts.

EDIT:

Well!

I'll prepare a JS for both of you, bonedaddy and SolidasRock.

Link to comment
Share on other sites

SolidasRock

The JScript posted here is a strict example that exclude certain features. To make your own JS, download the PDF and you'll be able to add the keystrokes neede for your customizations. It's extremely easy.

And, you don't need to test it from unattended CD. However, it works everway as you might see in the prevoius posts.

ahhh, i thought the pdf is an old version because i notice nothing about exclude pskill and taskkill....

but i will look one more time for you specially :)

i am not sure but i think i have found a bad move in step 6?

first DOWN

second UP

third ENTER

down and up = same place?

EDIT

whats up SaR?

SaR OMG :rolleyes: i am fine, you?
Link to comment
Share on other sites

Mazin

well I don't know if you need to do that for me,

probably for SasR yes,  :)  just a joke SasR.

Question do you use 5.03c or a?

bonedaddy

well... i have small problem with 5.03a (dont know if it is the problem of 5.03a or the problem by using xtrememac way to install it) and i have downloaded yesterday the 5.03c and take a look here if this is useable for me....

edit: whaaaaaaaa.... nice to see it is clicking everything automatically.... but ermmm winamp.exe will run after the setup and dont close? and also the cmd windows stay open after the setup is ready for a time.... i have to shorten this time?

Here's a simpler instance for the batch and JScript of Winamp v5.03a. Follow the same instructions in the first post. In this instance, you won't need sleep.exe nor taskkill.

i understand it now, but i have a simple question? how to kill winamp? you say there is no need for taskkill and pskill?

Link to comment
Share on other sites

A JScript for v5.03c, which excludes the following:

- Winamp Agent

- Winamp Library

- Video File Support

- Internet Connection upon installation.

- Desktop Icon

- eMusic Icon...

function getWin(win, inc)

{

var cntr = 0;

while (!WshShell.AppActivate(win))

{

if (cntr==12) return true;

cntr++;

WScript.Sleep(inc);

}

return true;

}

var WshShell = new ActiveXObject("WScript.Shell");

var oExec = WshShell.Exec("winamp.exe");

while (oExec.Status == 0)

{

WScript.Sleep(2000);

getWin("Winamp Setup", 500);

WshShell.SendKeys ("{ENTER}");//Agree

WScript.Sleep(500);

WshShell.SendKeys ("{TAB}");//moving tabstop to features pane

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN}");//down to Agent

WScript.Sleep(500);

WshShell.SendKeys (" ");//deselecting Agent

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN}");//down to Library

WScript.Sleep(500);

WshShell.SendKeys (" ");//deselecting Library

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN 3}");//bypassing three features

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN}");//down to Video

WScript.Sleep(500);

WshShell.SendKeys (" ");//deselecting Video

WScript.Sleep(500);

WshShell.SendKeys ("{ENTER}");//hitting Next

WScript.Sleep(500);

WshShell.SendKeys ("{ENTER}");//hitting Next for Destination Folder

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN}");//down to Desktop Icon

WScript.Sleep(500);

WshShell.SendKeys (" ");//deselecting Desktop Icon

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN 5}");//bypassing five features

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN}");// moving to eMusic Icon and...

WScript.Sleep(500);

WshShell.SendKeys (" ");//deselecting eMusic Icon and...

WScript.Sleep(500);

WshShell.SendKeys ("{ENTER}");//hitting Next

WScript.Sleep(500);

WshShell.SendKeys ("{DOWN 2}");//setting Internet Connection to Not connected...

WScript.Sleep(500);

WshShell.SendKeys ("{ENTER}");//hitting Next

WScript.Sleep(500);

WshShell.SendKeys ("{ENTER}");//hitting Install

WScript.Sleep(45000);//time for Winamp to finish installation

WshShell.SendKeys ("%{F4}");//closing Winamp

}

WScript.quit();

Link to comment
Share on other sites

bonedaddy

You want to exclude:

- Winamp Agent

- Winamp Library

- Video File Support

- Visualization

- Start Menu Group

- Associate with playlist...

You want to set your Internet Connection to LAN.

You want to select skin. But which one, Modern or Classic?

Is that right?

Link to comment
Share on other sites

how to kill winamp? you say there is no need for taskkill and pskill?

%{F4} will do the job.

i dont have the emusic option :) so it delete extra audio output instead the emusic. i have look again and there in winamp displayed 5.03c created on 14 juni 2004....?

i have downloaded the FREE full edition winamp, emusic probally is for the paidversion i guess?

i have removed this lines

WshShell.SendKeys ("{DOWN 5}");//bypassing five features
WScript.Sleep(500);
WshShell.SendKeys ("{DOWN}");// moving to eMusic Icon and...
WScript.Sleep(500);
WshShell.SendKeys (" ");//deselecting eMusic Icon and...

and now i see winamp open after setup and play a music " LIama whippin intro' "

and winamp stay open too long and then it exit. i guess i have to shorten this time changes the 45000 to 35000? and is it possible to skip this intro and close it faster?

Link to comment
Share on other sites

yes that is correct, modern.

bonedaddy

why do you have emusic option bonedaddy and i dont??

edit: ahh ok... then it is a mistake from mazin, we dont have emusic :) so remove these lines out

WshShell.SendKeys ("{DOWN 5}");//bypassing five features
WScript.Sleep(500);
WshShell.SendKeys ("{DOWN}");// moving to eMusic Icon and...
WScript.Sleep(500);
WshShell.SendKeys (" ");//deselecting eMusic Icon and...

Link to comment
Share on other sites

that's what I figured, they just added the feature. No big deal, I just

used your .js and ajusted for mine, as did SolidasRock. It's installing

now, the other way was throwing a windows file protection screen in

an nLited install useing nLite 98.3, (sp1 not sp2). Let's see if this is any different.

thanks bonedaddy

I should tell on myself, for some reason when I got to the connection by

lan (because that's what I use) I never (DOWN 2) sorry for lameness.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...