Jump to content

Spybot 1.4 Final Silent Install


Recommended Posts


Am I doing something wrong as I get the following message:

" 'D' is not recognized as an internal or external command "    and " 'Destroy' is not recognized as an internal or external command "

my script is:

start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENT

ECHO Spybot Search & Destroy 1.4 Installed!

ECHO.

...

Am i not right in thinking you should not use & in a echo statement as it performs some sort of command?

Try changing it to:

start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENT
ECHO Spybot - Search and Destroy 1.4 Installed!
ECHO.

instead and see what happens :)

Don't think theres anything wrong regarding the spybot install part ;)

Let us know if that works for ya :)

Regards,

N.

Link to comment
Share on other sites

Am i not right in thinking you should not use & in a echo statement as it performs some sort of command?

Try changing it to:

start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENT
ECHO Spybot - Search and Destroy 1.4 Installed!
ECHO.

instead and see what happens :)

Don't think theres anything wrong regarding the spybot install part ;)

Let us know if that works for ya :)

Regards,

N.

You were right!!!

The **** "&" was messing it up! I changed it to

ECHO ** Installing Spybot Search n Destroy ***

and it works fine now!

None of my other ECHO statements have and "&" following them and since this is the first time installing Spybot I had never seen this before..

Thanks!

Link to comment
Share on other sites

  • 3 weeks later...
How Do I use the .iss file for setup?

You need to have Inno Setup installed. ISTool would be helpful also. You need to use Innounp.exe -x spybotsd14.exe to unpack the installer. This will unpack the files to the current directory. An .ISS file will also be created. You can use the .ISS file to lead you to edit that one, or replace it, and edit to suit. Then use Inno Setup to compile it, back into an installer.

Link to comment
Share on other sites

  • 2 months later...
Am I doing something wrong as I get the following message:

" 'D' is not recognized as an internal or external command "    and " 'Destroy' is not recognized as an internal or external command "

my script is:

start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENT

ECHO Spybot Search & Destroy 1.4 Installed!

ECHO.

what gives??

You must use " " ...

start /wait "" %systemdrive%\packages\spybot\spybotsd14.exe /VerySilent
ECHO Spybot Search & Destroy 1.4 Installed!
ECHO.

++

Link to comment
Share on other sites

how would you get the includes to silently install as well?

Using ISTool, in the Install Run section add this in the filename section, replace {tmp} with the dir you extract to

{tmp}\spybotsd_includes.exe

and this

/S

in the parameters section, the includes will be run after the installation.

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...
Am I doing something wrong as I get the following message:

" 'D' is not recognized as an internal or external command " and " 'Destroy' is not recognized as an internal or external command "

my script is:

start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENT

ECHO Spybot Search & Destroy 1.4 Installed!

ECHO.

what gives??

you can try to insert double quote character.

start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENT
ECHO "Spybot Search & Destroy 1.4 Installed!"
ECHO.

Link to comment
Share on other sites

  • 1 year later...

Hello Everyone,

I have made an AutoIt script to deal with update :thumbup

Run('spybotsd14.exe /verysilent /easymode /autoupdate /noicons')
WinWait("File Download","")

While 1

;No Internet Connection
If WinExists("File Download","Error sending request.") Then
ControlClick("File Download","Error sending request.","Button2")
ExitLoop
EndIf

;Downloading Update
If WinExists("File Download","spybotsd_includes.exe (1 of 1)") Then
ControlClick("File Download","spybotsd_includes.exe (1 of 1)","Static9")
WinWait("Spybot - Search & Destroy Include updates Setup: Installation Folder","Nullsoft Install System v2.25 ")
ControlClick("Spybot - Search & Destroy Include updates Setup: Installation Folder","Nullsoft Install System v2.25 ","Button2")
WinWait("Spybot - Search & Destroy Include updates Setup ","< &Back")
ControlClick("Spybot - Search & Destroy Include updates Setup ","< &Back","Button2")
ExitLoop
EndIf

WEnd

Link to comment
Share on other sites

  • 2 weeks later...

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...