Jump to content

norton antivirus 2005 unattend install


snakesnake

Recommended Posts

I dit this with NAV2005 french version

If the files and dirs are the same, it shoud work

in english : \Program Files\Common Files\

in french : \Program Files\Fichiers communs\

in other languages i don't know

First install NAV 2005 on your system and activate it

Create those directories in your install cd

$OEM$\$1\install\NAV2005\

copy your original cd inside it

$OEM$\$$\system32\

to place a file that will automaticaly copy inside \windows\system32 during the windows installation

1. cd key file

create a file called "navreg.reg" inside the folder NAV2005

edit it and paste this

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\CCPD-LC\KStore\00000082\0000000f\0000001b]

"Key"="XXXXXXXXXXXXXXXXXXXXXXXX"

replace Xs with your cd key and don't type dashes (-)

save and exit

2. creation of a self extract archive with activation files

Activation files are here

\Program Files\Common Files\Symantec Shared\CCPD-LC

You MUST boot in FAIL SAFE MODE to copy the files ! F8 at boot

Open winrar

Go to that directory

select:

symlcnet.dll

symlcrst.dll

symlctnk.dll

(I'm not sure the 3 files are absolutely needed, but at least it works, maybe symlcrst.dll is enough)

Click on "commands" ==> "add files to archive"

click the button "profiles" "defauld profile"

in "archive name" type CCPD-LC.exe

archive format: RAR

compression method: best

archiving options: create SFX archive

go to "advanced" tab and click on "SFX options"

in "path to extract" type

%systemdrive%\Program Files\Common Files\Symantec Shared\CCPD-LC\

and choose: "create in the current folder"

now go to "modes" tab and click on "hide all" and "overwrite all files"

click "OK" on all dialog boxes and close winrar

Make a CUT/PASTE of CCPD-LC.exe inside the folder "$OEM$\$$\system32\"

reboot windows in normal mode

3. integrate the last virus definitions files

you can download the last version

english: http://securityresponse.symantec.com/avcen...ges/US-N95.html

french : http://securityresponse.symantec.com/avcen...ges/FR-N95.html

others : http://securityresponse.symantec.com/avcen...s.download.html

extract all the files with winrar in the NAV install folder

$OEM$\$1\install\NAV2005\VirusDef\

replace all existing files

4. batch file

here is the batch for the silent install

CLS

@echo off

ECHO.

REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

ECHO.

start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

ECHO.

taskkill.exe /F /IM symlcsvc.exe

CCPD-LC.exe

del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

EXIT

I know we can replace "%systemdrive%\WINDOWS" with something else but i don't remember. It works this way

Link to comment
Share on other sites


You can save time if you do : :o

CLS

@echo off

ECHO.

REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

ECHO.

REM taskkill.exe /F /IM symlcsvc.exe

CCPD-LC.exe

del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

ECHO.

start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

EXIT

=> No need to taskkill !!!

GoodBye.

Link to comment
Share on other sites

You can save time if you do :  :o

CLS

@echo off

ECHO.

REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

ECHO.

REM taskkill.exe /F /IM symlcsvc.exe

CCPD-LC.exe

del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

ECHO.

start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

EXIT

=> No need to taskkill !!!

                                                      GoodBye.

it doesn't work here if i don't kill this task

Link to comment
Share on other sites

maybe this is a solution...

:whistle:

*link to image removed (no discussion of warez or circumventing activation non-legally is allowed)

dont pee your pants man.... its just an image....

however, i made it!!! works fine, NAV2005 fully unattended.

no userpromts to made, automatic activation and this

config-screens when nav is started the first time.

its an autoit-script. should be no problem to made it working for

other languages than german.

Edited by spachtler
Link to comment
Share on other sites

You can save time if you do :  :o

CLS

@echo off

ECHO.

REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

ECHO.

REM taskkill.exe /F /IM symlcsvc.exe

CCPD-LC.exe

del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

ECHO.

start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

EXIT

=> No need to taskkill !!!

                                                    GoodBye.

it doesn't work here if i don't kill this task

it doesn't work here if i don't kill this task !!!

NAV NOT YET INSTALLED !!! WHAT TASK TO KILL => NOTHING.

100% TESTED AND VERIFIED WORKING :D

Link to comment
Share on other sites

I'm trying to integrate this into RunOnceEx.cmd:

REG ADD %KEY%\011 /VE /D "Norton AntiVirus 2005" /f
REG ADD %KEY%\011 /V 1 /D "REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg" /f
REG ADD %KEY%\011 /V 2 /D "taskkill.exe /F /IM symlcsvc.exe" /f
REG ADD %KEY%\011 /V 3 /D run "CCPD-LC.exe" /f
REG ADD %KEY%\011 /V 4 /D del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe" /f
REG ADD %KEY%\011 /V 5 /D "%systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb" /f

Are lines 3 and 4 for running and deleting the file CCPD-LC.exe in RunOnceEx.cmd correct?

Link to comment
Share on other sites

You can save time if you do :  :o

CLS

@echo off

ECHO.

REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

ECHO.

REM taskkill.exe /F /IM symlcsvc.exe

CCPD-LC.exe

del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

ECHO.

start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

EXIT

=> No need to taskkill !!!

                                                       GoodBye.

it doesn't work here if i don't kill this task

it doesn't work here if i don't kill this task !!!

NAV NOT YET INSTALLED !!! WHAT TASK TO KILL => NOTHING.

100% TESTED AND VERIFIED WORKING :D

i didn't see you changed the order of the lines

Link to comment
Share on other sites

so which is the right code to use?

ALiAS_2004's?

CLS
@echo off
ECHO.
REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg
ECHO.
REM taskkill.exe /F /IM symlcsvc.exe
CCPD-LC.exe
del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"
ECHO.
start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb
EXIT

Also, if I follow these directions, and install NAV, using this method, onto another computer, will it still work?

Link to comment
Share on other sites

yes I wonder that aswell?

BTW what if I create a seperate .cmd file just for installing nav2005 with the above commands, and for the rest of the install use my RunOnceEx.cmd, would it be best to start this .cmd file before RunOnceEx.cmd, so I add it to the cmdlines.txt? Will RunOnceEx.cmd wait, or will both .cmd files be launched together then?

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