Removing the "legal stuff" prompt

Dittohead

New member
I'm working on a script that installs and runs CCleaner and SpyBot silently but it seems that I still have to give input to spybot for the "legal stuff" box that shows up on first run.

SpyBot First run "legal stuff" dialog box said:
If you remove ad robots with this program, you may not be allowed to continue using their host programs. Read their license agreements for further information.

Since I'll be deploying this to a good number of computers I've the experience and understanding of the what the application does. Is there anyway to remove this dialog box via a commandline switch?

Thanks for he help!
 
Has any one figured this out? I'm trying to setup an auto setup and run, but that "Legal stuff" message keeps getting in my way. Is it a registry setting? INI? I created an MSI out of SB and creating an MST would be quite easy to make the changes to the MSI. I'm using AutoIT to run much of the setup, but the way SB runs it's a different kind of window and AutoIT can't read the screens like it should.
 
When setting up the scheduled task, use /taskbarhide switch to prevent that message frfom popping up. My entire run field in scheduled task is:

C:\PROGRA~1\SPYBOT~1\SpybotSD.exe /taskbarhide /allhives /autoupdate /autocheck /autofix /autoimmunize /autoclose

This should help you with the rest of your command line questions:
http://www.safer-networking.org/en/faq/30.html

I know this is an old post, but I've benn looking for a fix for this same issue and figured I would document it appropriately.
 
Last edited:
I tried to create a portable version of spybot 1.5 on my usb stick.

I tried to create a batch file who start spybot with these switch

/taskbarhide /allhives /autoupdate /autocheck /autofix /autoimmunize /autoclose

But when I run spybot for the first time on a computer the "Legal stuff" message box always appear. It is possible to disable this message box? or in wich registry key is used when I check the "don't show again" ?
 
Hi! Here is the step I have try.

#1. I have installed Spybot on a clean computer and I run it once.
#2. I copied the spybot directory on my usb stick and the configuration.ini created in the all users/spybot directory.

#3. I exported the safer-networking registry key (HKCU and the HKLM) into 2 .reg files. I put these file on my usb stick too.

#4. On a second computer (where spybot is not installed) I import the 2 .reg and I put the configuration.ini (in that file Legals=1) into the same path (documents and settings/all users/application data/spybot/...)

#5. When I launch spybotsd.exe in command line with these switch /autoimmune /autocheck /autofix etc The Legal stuff always prompt!! Do you know where It disable this box? it is in a hidden registry key? Or in another file?

Thanks
 
#4. On a second computer (where spybot is not installed) I import the 2 .reg and I put the configuration.ini (in that file Legals=1) into the same path (documents and settings/all users/application data/spybot/...)
It is not "documents and settings/all users/application data/spybot/...".

The Configuration.ini file is normally stored in one of the following folders:
  • Windows 95 or 98:
    C:\Windows\Application Data\Spybot - Search & Destroy
  • Windows ME:
    C:\Windows\All Users\Application Data\Spybot - Search & Destroy
  • Windows NT, 2000 or XP:
    C:\Documents and Settings\All Users\Application Data\Spybot - Search & Destroy
  • Vista:
    C:\ProgramData\Spybot - Search & Destroy
 
Back
Top