Help - Search - Members - Calendar
Full Version: Soulseek how ?
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   


Google Internet Forums Unattended CD/DVD Guide
Svend Rugaard
How can i make soulseek install silent without it popup ? ..
lilweirddude
/S works for me
Svend Rugaard
QUOTE (Svend Rugaard @ Jan 4 2005, 10:31 AM)
How can i make soulseek install silent without it popup ? ..

It doesnt install at all ..

My line is following :

CODE
REG ADD %KEY%\005 /VE /D "Soulseek 1.55"
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\programmer\SoulSeek\slsk155.exe" /s


And another thing

SPywareblaster doesnt install either.

The Code is here taken from "Application" Swicthes .. topic.

CODE
REG ADD %KEY%\100 /VE /D "Spywareblaster 3.2"
REG ADD %KEY%\100 /V 1 /D "%systemdrive%\install\programmer\Anti_Spyware\spywareblastersetup32.exe /verysilent


And last not least ..

I cant get Alcohol Soft 120 % Registrered ..

CODE
REG ADD %KEY%\008 /VE /D "Alcohol 120 % - Version 1.9.2"
REG ADD %KEY%\008 /V 1 /D "%systemdrive%\install\programmer\Alcohol_Soft_120\setup.exe /qn" /f
REG ADD %KEY%\008 /V 2 /D "REGEDIT /S %systemdrive%\install\Reg_Programmer\alcohol.reg" /f


And the Code for "Alcohol.reg" is here taken from another topic.

CODE
[HKEY_CURRENT_USER\Software\Alcohol Soft\Alcohol 120%\Info]
"UserName"="Svend Rugaard"
"Company"="N/A"
"SerialNo"="Serial Key here"
totoymola
QUOTE
REG ADD %KEY%\005 /VE /D "Soulseek 1.55"
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\programmer\SoulSeek\slsk155.exe" /s


I don't know Soul Seek, but as lilweirddude said, /S (upper case) works for him. I don't know what Soul Seek's installer is, but sometimes, switches are case sensitive. smile.gif

Your reg file for Alcohol looks fine. Let me check mine.
Note: Alcohol's serial is REALLY long. I'm not sure if it is encrypted or what.

So this is the best solution that you can do. (I think..)

1. Install Alcohol manually on your system, and register it.
2. Export your registration entries using regedit.

smile.gif
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 04:00 PM)
QUOTE
REG ADD %KEY%\005 /VE /D "Soulseek 1.55"
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\programmer\SoulSeek\slsk155.exe" /s


I don't know Soul Seek, but as lilweirddude said, /S (upper case) works for him. I don't know what Soul Seek's installer is, but sometimes, switches are case sensitive. smile.gif

Your reg file for Alcohol looks fine. Let me check mine.
Note: Alcohol's serial is REALLY long. I'm not sure if it is encrypted or what.

So this is the best solution that you can do. (I think..)

1. Install Alcohol manually on your system, and register it.
2. Export your registration entries using regedit.

smile.gif

Okay Thanks .. i Try with UPPERcase in /S .. and i try with Exported Key .. yes its very long biggrin.gif

I get back to you

While it install you can maybe help me with the last problem .. Spywareblaster ? ..
totoymola
QUOTE
While it install you can maybe help me with the last problem .. Spywareblaster ? ..


I'm sorry buddy, but I don't use Spyware Blaster, so I don't know anything about it. laugh.gif Please check the sticky threads. I think it is covered there. smile.gif
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 04:11 PM)
QUOTE
While it install you can maybe help me with the last problem .. Spywareblaster ? ..


I'm sorry buddy, but I don't use Spyware Blaster, so I don't know anything about it. laugh.gif Please check the sticky threads. I think it is covered there. smile.gif

Yes but there it says ..

QUOTE
SpywareBlaster

Switch: /verysilent
Full syntax: spywareblastersetup.exe /verysilent


but it doesnt work .. doesnt even install ..

So maybe there should be a Quote there is missing ?
totoymola
QUOTE
So maybe there should be a Quote there is missing ?


You only need to use quotes if the filename has spaces on it. smile.gif
But hey, maybe that switch doesn't work for the latest version anymore. I will try it.

EDIT: Again, I wasn't reading.. Sorry. I thought you are just asking if you need quotes on the actual command, that's why I said no. tongue.gif You missed the quote on your runonce. laugh.gif
totoymola
I tried installing SpywareBlaster with the /verysilent switch, and it works perfectly. However, you have to use taskkill after because the installer automatically starts the application. smile.gif

start /w spywareblastersetup.exe /verysilent
taskkill /f /im spywareblaster.exe

smile.gif
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 04:33 PM)
I tried installing SpywareBlaster with the /verysilent switch, and it works perfectly.  However, you have to use taskkill after because the installer automatically starts the application.  smile.gif

start /w spywareblastersetup.exe /verysilent
taskkill /f /im spywareblaster.exe

smile.gif

How would the command then be in RunOnceEx.cmd ? smile.gif
totoymola
CODE
REG ADD %KEY%\001 /VE /D "Spyware Blaster 3.2" /f
REG ADD %KEY%\001 /V 1 /D "%SystemDrive%\Install\SPYWAREBLASTER\spywareblastersetup.exe /verysilent" /f
REG ADD %KEY%\001 /V 2 /D "TASKKILL /F /IM spywareblastersetup.exe" /f

smile.gif
Svend Rugaard
Thanks, i try this after this install is finish ..
totoymola
QUOTE
REG ADD %KEY%\100 /VE /D "Spywareblaster 3.2"
REG ADD %KEY%\100 /V 1 /D "%systemdrive%\install\programmer\Anti_Spyware\spywareblastersetup32.exe /verysilent


You missed the quote here. It should be
REG ADD %KEY%\100 /VE /D "Spywareblaster 3.2"
REG ADD %KEY%\100 /V 1 /D "%systemdrive%\install\programmer\Anti_Spyware\spywareblastersetup32.exe /verysilent"
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 04:45 PM)
QUOTE
REG ADD %KEY%\100 /VE /D "Spywareblaster 3.2"
REG ADD %KEY%\100 /V 1 /D "%systemdrive%\install\programmer\Anti_Spyware\spywareblastersetup32.exe /verysilent


You missed the quote here. It should be
REG ADD %KEY%\100 /VE /D "Spywareblaster 3.2"
REG ADD %KEY%\100 /V 1 /D "%systemdrive%\install\programmer\Anti_Spyware\spywareblastersetup32.exe /verysilent"

Thanks .. smile.gif .. I have just tried with Soulseek and it works .. but i still not can get Alcohol to work with the serial ..

Maybe i shall put the Reg Key in before i install Alcohol ? ..
totoymola
CODE
REGEDIT4
[HKEY_CURRENT_USER\Software\Alcohol Soft\Alcohol 120%\Info]
"UserName"="YOUR NAME"
"Company"=""
"SerialNo"="PLEASEINSERTYOURVERYVERYVERYVERYVERYVERYVERYVERYVERYVERYLONGSERIALNUMBERHERE"


This is exactly the same as your reg file. Just be sure to add the REGEDIT4 on top.
I usually export that entry after installing Alcohol. smile.gif
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 04:58 PM)
CODE
REGEDIT4
[HKEY_CURRENT_USER\Software\Alcohol Soft\Alcohol 120%\Info]
"UserName"="YOUR NAME"
"Company"=""
"SerialNo"="PLEASEINSERTYOURVERYVERYVERYVERYVERYVERYVERYVERYVERYVERYLONGSERIALNUMBERHERE"


I usually export that entry after installing Alcohol.  smile.gif

Can you copy paste your commando line for the regedit, maybe mine is wrong .. i use the same i use for mirc.reg import .

I mean off course the line there is in RunOnceEx.reg ..

Its the only problem before my disc is finish with, office, framcework, mirc, norton and etc , so its kinda s****y that i am stuck at the end smile.gif.
totoymola
To import registry entries from a regfile, simply use
REGEDIT /S WHATEVER.REG

Also make sure that you have the line REGEDIT4 or Windows Registry Editor Version 5.00 on the top most area of your regfile. smile.gif
1chaoticadult
for the record the newest version of soulseek uses nsis installer.
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 05:04 PM)
To import registry entries from a regfile, simply use
REGEDIT /S WHATEVER.REG

Also make sure that you have the line REGEDIT4 or Windows Registry Editor Version 5.00 on the top most area of your regfile.  smile.gif

Ohh i didnt know that .. maybe thats why it doesnt work
Svend Rugaard
QUOTE (drthawhizkid @ Jan 4 2005, 05:08 PM)
for the record the newest version of soulseek uses nsis installer.

Okay .. but it work if its 1.55 you mean .. It is installed now.
totoymola
QUOTE
for the record the newest version of soulseek uses nsis installer.

Oh.. That''s why the switch has to be /S.. Thanks for the info! thumbup.gif
Svend Rugaard
QUOTE (totoymola @ Jan 4 2005, 05:11 PM)
QUOTE
for the record the newest version of soulseek uses nsis installer.

Oh.. That''s why the switch has to be /S.. Thanks for the info! thumbup.gif

As a wise man say, you learn new things every day. biggrin.gif
1chaoticadult
@totoymola, Svend Rugaard
Glad to be of some help.
Svend Rugaard
QUOTE (drthawhizkid @ Jan 4 2005, 07:52 PM)
@totoymola, Svend Rugaard
Glad to be of some help.

I just got a last problem with alcohol mostly .. it restart after install and spywareblaster isnt make autoprotect on.
totoymola
Alcohol restarts? That is strange. What switch are you using? Use /qb /norestart. smile.gif
Svend Rugaard
QUOTE (totoymola @ Jan 5 2005, 02:33 PM)
Alcohol restarts?  That is strange.  What switch are you using?  Use /qb /norestart.  smile.gif

REG ADD %KEY%\008 /V 1 /D "%systemdrive%\install\programmer\Alcohol_Soft_120\setup.exe /qn" /f
<-- I use this switch but i try with /norestart now ..


I get back when its finish
totoymola
So that's why it's restarting. tongue.gif
Svend Rugaard
QUOTE (totoymola @ Jan 5 2005, 03:20 PM)
So that's why it's restarting.  tongue.gif

Yes .. hehe .. but the last now is spywareblaster .. isnt there a command so it make the self proctection start so it shouldnt be done manual ?
totoymola
I'm not sure about that. Because I don't use it. 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.