Results 1 to 4 of 4

Thread: How can I install S&D silently ?

  1. #1
    Junior Member
    Join Date
    Jun 2007
    Posts
    3

    Default How can I install S&D silently ?

    One more post for today.

    How do I perform an unattended, silent install of S&D, with all the up-to-date patches, updates and features, and also already immunizing the system automatically and, if possible, in my native language ? I'm asking this because it would be nice to have this kind of solution in a portable device so I could transport it anywhere and 'rescue' any infected PC...

    Thanks for any help,

    --ThundernetBR

  2. #2
    Junior Member t001z's Avatar
    Join Date
    Apr 2007
    Location
    Chicago, IL
    Posts
    20

    Default

    The way to install silently is to create a batch file (using notepad or some other text editor paste the first code clip below and save it as whatever-you-want.bat) and place this information in the file:

    Code:
     if exist %Program Files%\Spybot~1\spybotsd.exe goto end
    spybotsd14 /verysilent
    :end
    This will install and that is it.

    Next, then run the .bat file.

    There is a lot more stuff you can do to enhance your script. I have a thumbdrive that I always map as the T: drive and this is the script that I set it to run under:

    Code:
    cls
    @Echo off
    title Installing and Running SpyBot
    color f1
    
    echo Checking to see if it's installed (updating as necessary)
    if not exist "c:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" goto install
    
    goto Scan
    
    :Install
    "T:\Virus&Spyware\Spyware\Spybot\spybotsd14.exe" /silent /nocancel
    copy "T:\Virus&Spyware\Spyware\Spybot\Default configuration.ini" "c:\Program Files\Spybot - Search & Destroy"
    
    :Scan
    "c:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" /autoupdate /autocheck /autofix /autoclose /autoimmunize
    
    :"C:\Program Files\Spybot - Search & Destroy\unins000.exe" /silent
    
    :End
    The line just above END is currently "commented out", but you can remove the : and it will uninstall the spybot install when it is completed -- I do this only if I am servicing someone's PC. In the ":Install" section, you can also install with /noicons and it will not place icons in the start menu (useful if you are scheduling the program to run at specified times and do not want the end user to mess things up ).

    Hope this helps!
    Last edited by t001z; 2007-06-21 at 01:19.

  3. #3
    Junior Member
    Join Date
    Jun 2007
    Posts
    1

    Default

    I was just reading your post, what does that line about the default configuration ini? can that be changed? and is it important to have?

    T:\Virus&Spyware\Spyware\Spybot\Default configuration.ini"

  4. #4
    Member of Team Spybot PepiMK's Avatar
    Join Date
    Oct 2005
    Location
    Planet Earth
    Posts
    3,601

    Default

    To "rescue any PC", you can simply run Spybot-S&D from an USB stick or CD (even a bootable Windows PE CD) without having to install it

    For the language, create a Default.ini with "Language=LanguageName" in the [Main] section.
    Just remember, love is life, and hate is living death.
    Treat your life for what it's worth, and live for every breath
    (Black Sabbath: A National Acrobat)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •