tarquel Posted June 3, 2005 Posted June 3, 2005 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 /VERYSILENTECHO Spybot Search & Destroy 1.4 Installed!ECHO....<{POST_SNAPBACK}>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 /VERYSILENTECHO 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.
Thinkster Posted June 4, 2005 Posted June 4, 2005 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 /VERYSILENTECHO 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.<{POST_SNAPBACK}>You were right!!!The **** "&" was messing it up! I changed it toECHO ** 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!
sleepnmojo Posted June 4, 2005 Posted June 4, 2005 If you want the & in there you can put a ^ in front of itECHO beer ^& cookies
Jito463 Posted June 27, 2005 Posted June 27, 2005 I just used the same commands I used for Spybot 1.3 and it installed without any problems:spybotsd14.exe /verysilent /SP- /components="main,skins"
MHz Posted June 28, 2005 Posted June 28, 2005 How Do I use the .iss file for setup?<{POST_SNAPBACK}>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.
cje Posted September 25, 2005 Posted September 25, 2005 how would you get the includes to silently install as well?Thanks
Sonic Posted September 25, 2005 Posted September 25, 2005 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 /VERYSILENTECHO Spybot Search & Destroy 1.4 Installed!ECHO.what gives??<{POST_SNAPBACK}>You must use " " ...start /wait "" %systemdrive%\packages\spybot\spybotsd14.exe /VerySilentECHO Spybot Search & Destroy 1.4 Installed!ECHO.++
MHz Posted September 26, 2005 Posted September 26, 2005 You were right!!!The **** "&" was messing it up! I changed it toECHO ** Installing Spybot Search n Destroy ***and it works fine now!<{POST_SNAPBACK}>@sonic If the first parameter is not the title and does not use "" then "" is not required.
benners Posted September 26, 2005 Posted September 26, 2005 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.exeand this/S in the parameters section, the includes will be run after the installation.
Lucius Snow Posted October 8, 2005 Posted October 8, 2005 Does anybody know how to prevent Spybot complaining that Windows security center is disabled ?Thank you.Cheers.
tjhana Posted November 25, 2005 Posted November 25, 2005 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 /VERYSILENTECHO Spybot Search & Destroy 1.4 Installed!ECHO.what gives??you can try to insert double quote character.start /wait %systemdrive%\packages\spybot\spybotsd14.exe /VERYSILENTECHO "Spybot Search & Destroy 1.4 Installed!"ECHO.
Keith (Kog Media) Posted July 7, 2007 Posted July 7, 2007 Hello Everyone,I have made an AutoIt script to deal with update Run('spybotsd14.exe /verysilent /easymode /autoupdate /noicons')WinWait("File Download","")While 1;No Internet ConnectionIf WinExists("File Download","Error sending request.") Then ControlClick("File Download","Error sending request.","Button2") ExitLoopEndIf;Downloading UpdateIf 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") ExitLoopEndIfWEnd
Masterraven9 Posted July 17, 2007 Posted July 17, 2007 hycan anyone tell me how i can make a silent install without the the Teatimer?thx
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now