Jump to content

BitDefender Antivirus Plus v10


Nucleus

Recommended Posts


No. It still opens up the registration wizard, which means it doesnt install the registration key through the installation switch.

And I would also like to know if it's possible not to install a component (antispam) unattendedly.

Link to comment
Share on other sites

Bit Defender 10 is like 9. It will put a few key in win.in and only solution is install in a new OS and backup win.in.

After you install bit 10, kill all bitdefender processes and copy win.ini from the other instalation to the new on.

I know that someware in this forum is the detailed explanation to do this.

Link to comment
Share on other sites

But I would really like to remove that antispam module :(

If bitdefender 10 is like 9, you have for each setting an ini file.

Checkout all to see the one that configures antispam and in unattenpted instalation after killing bitdefender processes and coping win.ini, copy the antispan ini file to bitdefender install location...

In version 9 is antispam.ini

Edited by fgaifen
Link to comment
Share on other sites

This is the registration:

1. Delete %WINDIR%\win.ini

2. Install BitDefender and register it. A new win.ini will be created. Put it on your unattended cd.

3. Extract bitdefender_avplus_v10.exe and create an admin install (msiexec /a bdprof.msi)

4. Create a zero size file named bdwizreg.exe and replace the original bdwizreg.exe in your admin install directory. This will stop the registration wizard.

RunOnceEx.cmd

REG ADD %KEY%\023 /VE /D "BitDefender v10 Pro" /f
REG ADD %KEY%\023 /V 1 /D "%CDROM%\Software\BitDefender\BitDefender.msi /qb REBOOT=Suppress SCAN=0 UPDATE=0 ICON=0" /f
REG ADD %KEY%\023 /V 2 /D "%CDROM%\Software\BitDefender\RegInfo.cmd" /f

Reginfo.cmd

cmdow @ /HID
@echo off
TASKKILL /F /IM bdmcon.exe
COPY /Y "%~dp0win.ini" "%WINDIR%"
Start "" "%PROGRAMFILES%\Softwin\BitDefender10\bdmcon.exe"
EXIT

This will kill bitdefender, copy win.ini to %windir% and start it again, this time registered. Copying win.ini before the installation will not register bitdefender.

If you don't like the antispam module appearing in Microsoft Outlook, add this to your batch file.

REGSVR32 -U /S "%PROGRAMFILES%\Softwin\BitDefender10\bdo.dll"

Link to comment
Share on other sites

  • 4 weeks later...

if it doesnt work PM me plz or fix it yourself and post the new one. or send me a link to the english installer so i can download and test it by myself. thnx!

i cant test it cause i'm using the german version. hope it works.

;##################################################################################################
;
; Author: microbion
; Software: BitDefender Antivirus Plus 10
; Created: 23.10.2006
;
;##################################################################################################


;##################################################################################################
; Define the name of the installer, the serial number & which modules to install!
;##################################################################################################

; name of the installer
$SF_1 = "bitdefender_setup.exe"

; Enter serial number without (-) hyphen
$SN_1 = "AAAABBBBCCCCDDDDEEEE"

;#################################################################################################
; NOW ACTIVATE / DEACTIVATE YOUR MODULES
; Activate / deactivate with --> Y <-- and --> N <-- WHAT TO INSTALL OR NOT!
;##################################################################################################

$Firewall = "Y" ; (Y)es or (N)o - Install the Firewall module
$Antispam = "Y" ; (Y)es or (N)o - Install the Antispam module
$Antispyware = "Y" ; (Y)es or (N)o - Install the Antispyware module







;##################################################################################################
; DO NOT CHANGE ANYTHING!
;##################################################################################################


; Title: Settings
$Title1 = "BitDefender Antivirus Plus v10 Setup"

; Title: License
$Title2 = "BitDefender Antivirus Plus v10 License Agreement"

; Title: Splash Screen // Einrichtungsassistent
$Title3 = "BitDefender Antivirus Plus v10"



; Execute: Installer
If FileExists ( @ScriptDir & "\" & $SF_1 ) Then
Run ( @ScriptDir & "\" & $SF_1 )
Else
Exit
EndIf
Sleep("8000")



; Window: "Welcome"
If WinWait($Title1, "Welcome to the BitDefender Antivirus Plus v10 Setup Wizard") Then
ControlClick($Title1, "Welcome to the BitDefender Antivirus Plus v10 Setup Wizard", "Button1")
EndIf



; Window: "Recommendation"
If WinWait($Title1, "Recommendation:") Then
ControlClick($Title1, "Recommendation:", "Button1")
EndIf



; Window: "Recommendation: Uninstall Antivirus Software"
If WinWait($Title1, "Recommendation:") Then
ControlClick($Title1, "Recommendation:", "Button1")
EndIf



; Window: "License Agreement"
If WinWait($Title2, "End-User License Agreement") Then
ControlClick($Title2, "End-User License Agreement", "Button2")
ControlClick($Title2, "End-User License Agreement", "Button5")
EndIf



; Window: "Choose Setup Type"
If WinWait($Title1, "Choose Setup Type") Then
ControlClick($Title1, "Choose Setup Type", "Button2")
EndIf



; Window: "Custom Setup"
If WinWait($Title1, "Custom Setup") Then

If $Firewall = "N" Then
Firewall()
EndIf

If $Antispam = "N" Then
Antispam()
EndIf

If $Antispyware = "N" Then
Antispyware()
EndIf

ControlClick($Title1, "Custom Setup", "Button5")
EndIf



; Window: "Ready to Install"
If WinWait($Title1, "Ready to Install") Then
ControlClick($Title1, "Ready to Install", "Button4")
ControlClick($Title1, "Ready to Install", "Button5")
ControlClick($Title1, "Ready to Install", "Button1")
Sleep("5000")
EndIf



; ------ Begin: Splash Screen ------
; Window: "BitDefender Initial Setup Wizard"
If WinWait($Title3, "BitDefender Initial Setup Wizard" ) Then
Send("{ENTER}")
EndIf

; Enter text: serial number
If WinWait($Title3, "Registration" ) Then
Send("{SPACE}")
ControlSetText( $Title3 , "" , "Edit1" , $SN_1 )
Send("{ENTER}")
Sleep("8000")
Send("{ENTER}")
EndIf

; Close: BitDefender Initial Setup Wizard
ProcessClose("bdwizreg.exe")
; ------ End: Splash Screen ------



; Window: "Completing the BitDefender Antivirus Plus v10 Setup Wizard"
If WinWait($Title1, "Completing the BitDefender Antivirus Plus v10 Setup Wizard ") Then
ControlClick($Title1, "Completing the BitDefender Antivirus Plus v10 Setup Wizard ", "Button1")
EndIf



; Window: "Installer Information" (do not reboot)
If WinWait("Installer Information", "") Then
ControlClick("Installer Information", "", "&Nein")
EndIf



; ------ Funktions for module installation ------
; Funktion: deactivate "Firewall"
Func Firewall()
Send("{HOME}{DOWN 2}{SPACE}{DOWN 3}{ENTER}")
EndFunc

; Funktion: deactivate "Antispam"
Func Antispam()
Send("{HOME}{DOWN 3}{SPACE}{DOWN 3}{ENTER}")
EndFunc

; Funktion: deactivate "Antispyware"
Func Antispyware()
Send("{HOME}{DOWN 4}{SPACE}{DOWN 3}{ENTER}")
EndFunc

EXIT

Edited by microbion
Link to comment
Share on other sites

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