MSFN Forum: SAV 9 - Symantec AntiVirus 9.0 - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 19 Pages +
  • « First
  • 16
  • 17
  • 18
  • 19
  • You cannot start a new topic
  • You cannot reply to this topic

SAV 9 - Symantec AntiVirus 9.0 Rate Topic: -----

#341 User is offline   smc1979 

  • Member
  • PipPip
  • Group: Members
  • Posts: 116
  • Joined: 04-May 04

Posted 26 October 2004 - 07:03 PM

Also on one note I replyed back to that with our fix LOL.

Maybe they will get it fixed faster now.


Quote

This is great news to hear. And you have resotre my faith back into
symantec by your responce. Much better than heraing there is nothing
wrong (that is what makes me mad)

I understand programs have bugs, but hearing that you are aware of it
and working on it makes me feel great about the problem.

As for now I have found a temp solution and seems to be working.

Right now you can not select the pagefile to be excluded. but you can
manuly add it in the reg and reboot. (of course the check mark has to
be on exclude files in SAV) and this has seems to have fixed the
issuse.

On another note this problem only happens to the C: drive. if you
where to move or add the pagefile to a different drive letter there
is no problem for those.

Very strange. But when it comes down to it it possibly could be a
easy fix as to simply leave the pagefile alone by default.

Of course I dont know how well this fix works that I have done so
far, but everything seems ok. But of course shouldnt need to be done
in the first place.

Thank you for your help and I will keep checking back for updates.

If anyone reading this would like to try the fix I made just email
me. webmaster@croftssoftware.com

Thank you again for your reply.

Shane



#342 User is offline   boredwithxp1234 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 26-October 04

Posted 26 October 2004 - 10:03 PM

This is a great site here.

I've been browsing through here and didn't see any postings on doing a silent live update after installing Symantec AV 9.0.

So hopefully this isn't a repost.

I'm not sure if all versions have a .msi file with them but mine does. This code will work with either the setup.exe or .msi but the .exe will return immediately, that is why I put in the waiting part. Using .msi you can do the AV install and the definitions right after each other with no problems.

The key thing that makes the live update work is making sure that your current working directory is the symantec folder. Without that it will never run. This is likely a security feature or just Symantec being picky and not wanting anyone else running their update. Weird huh?

Someone more into batch files than I could do this in a FOR loop since that is basically what I am doing anyway.

rem Number of tries to run live update
SET TRIES=2
SET COUNT=0

echo Installing Symantec Anti-Virus 9.0...
echo.

start /wait msiexec /i "Symantec Antivirus.msi" /qb REBOOT=ReallySuppress RUNLIVEUPDATE=0

echo Attempting virus definition update...

rem THIS IS THE MOST IMPORTANT PART!!
rem Without this then the exe will refuse to run.
rem I think this is a security thing as the main exe that calls it is in same folder.
cd "C:\Program Files\Symantec AntiVirus"

:START
IF %COUNT% == %TRIES% GOTO SKIP

IF EXIST .\VPDN_LU.exe. (GOTO DOWNLOAD) ELSE (GOTO WAIT)

:DOWNLOAD
echo Virus definitions downloading...

start /wait .\VPDN_LU.exe /s /silent

echo virus defs should be finished...wait a bit to be sure
ping -n 5 127.0.0.1>nul
GOTO DONE

:WAIT
echo Waiting for installer to finish...
SET /A COUNT = COUNT + 1
ping -n 60 127.0.0.1>nul
GOTO START

:SKIP
echo Unable to download virus definitions at this time.
rem GOTO END

:DONE
echo Virus definitions downloaded.

:END

rem do whatever ....


So, if not something old I missed, hope that helps some of you. :D

#343 User is offline   smc1979 

  • Member
  • PipPip
  • Group: Members
  • Posts: 116
  • Joined: 04-May 04

Posted 27 October 2004 - 11:19 AM

Sorry guys, but the pagefile fix wont work if the exclude check box isnt checked. so this fixed reg file will take care of it. sorry I didnt see it last time.

Just simply run this reg file after you install sav once you reboot the settings will take effect.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Intel\LANDesk\VirusProtect6\CurrentVersion\Storages\Filesystem\RealTimeScan]
"ExcludedByExtensions"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Intel\LANDesk\VirusProtect6\CurrentVersion\Storages\Filesystem\RealTimeScan\FileExceptions]
"C:\\Pagefile.sys"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Intel\LANDesk\VirusProtect6\CurrentVersion\Storages\Filesystem\RealTimeScan\NoScanDir]
@=dword:00000000

Attached File(s)



#344 User is offline   RogueSpear 

  • OS: SimplyMEPIS
  • Group: Supreme Sponsor
  • Posts: 1,529
  • Joined: 18-September 04

Posted 27 October 2004 - 11:53 AM

@boredwithxp You seem to have a pretty good handle on available command line switches in SAV. Do you happen to know of any for ALEScan.exe that is a part of the Symantec Client Firewall (part of SCS)?

#345 User is offline   boredwithxp1234 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 26-October 04

Posted 27 October 2004 - 02:00 PM

Nope I just knew that Symantec AV CE was doing silent live update everytime I start windows and I knew the program it was using to do it so I just played around with it and got it to work.

Now all my Symantec installs do live updates automatically (assuming they have net access during install). This I think is a much better solution than dealing with extra definition files that take up extra space.

This is only my second posting on this site anyway, I'm a newbie at this silent install stuff. Right now I am working on a unattended DVD with XP Pro, Office 2k3, Symantec, Nero, Zonealarm, and whatever else I can make unattended. Visual studio doesn't want to be unattended or I would put that on there too.

Very useful site with lots of info I've already refered a friend here and he is working on his own unattended install now. :)

#346 User is offline   a06lp 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 976
  • Joined: 19-August 04

Posted 27 October 2004 - 02:23 PM

let me see if i understand...

as long as i have the code below called (lets say its called: updateSAV.cmd) after SAV installs, itll update (if im connected to the internet)?

UpdateSAV.cmd said:

echo Attempting virus definition update...

rem THIS IS THE MOST IMPORTANT PART!!
rem Without this then the exe will refuse to run.
rem I think this is a security thing as the main exe that calls it is in same folder.
cd "C:\Program Files\Symantec AntiVirus"

:START
IF %COUNT% == %TRIES% GOTO SKIP

IF EXIST .\VPDN_LU.exe. (GOTO DOWNLOAD) ELSE (GOTO WAIT)

:DOWNLOAD
echo Virus definitions downloading...

start /wait .\VPDN_LU.exe /s /silent

echo virus defs should be finished...wait a bit to be sure
ping -n 5 127.0.0.1>nul
GOTO DONE

:WAIT
echo Waiting for installer to finish...
SET /A COUNT = COUNT + 1
ping -n 60 127.0.0.1>nul
GOTO START

:SKIP
echo Unable to download virus definitions at this time.
rem GOTO END

:DONE
echo Virus definitions downloaded.

:END


#347 User is offline   boredwithxp1234 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 26-October 04

Posted 27 October 2004 - 10:43 PM

This will do it.

Just remember .msi installer will not return until install is done.
The .exe installer will return imediately and you need the wait time for that.

If you are using only the .msi then all you need is change to directory where you installed SAV, then run VPDN_LU.exe /s /start

This is a simpler version without all the messages I used for testing.

INSTALL is the installation location, passed to the .msi file, and used to run updates.

TRIES is an how many minutes (approx.) to wait for install to finish, which is important for the .exe setup.

PUSHD and POPD are built into xp, not sure if they are in dos or not.
PUDHD will change to a folder and store the current folder
POPD will change back to the stored folder

If you want just the updates then remove the line that calls the installer, you need to keep the variables or the wait loop won't work.

SET INSTALL="C:\Program Files\Symantec AntiVirus"
SET TRIES=2
SET COUNTER=0

start /wait msiexec /i "Symantec Antivirus.msi" /qb REBOOT=ReallySuppress RUNLIVEUPDATE=0 INSTALLDIR=%INSTALL%

PUSHD %INSTALL%

:START_LU
IF %COUNTER% == %TRIES% GOTO END_LU
IF EXIST .\VPDN_LU.exe (GOTO GET_UPDATE) ELSE (GOTO WAIT)

:GET_UPDATE
start /wait .\VPDN_LU.exe /s /silent
GOTO END_LU

:WAIT
SET /A COUNT = COUNT + 1
ping -n 60 127.0.0.1>nul
GOTO START_LU

:END_LU
POPD


#348 User is offline   smc1979 

  • Member
  • PipPip
  • Group: Members
  • Posts: 116
  • Joined: 04-May 04

Posted 28 October 2004 - 01:34 AM

Well after a lot of testing and yelling at the screen I have found the reg fix works but not on the automated installs.

Turns out for some strange reason after the auto install you simply need to open and close SAV for it to take effect. Strange and still works but not good enough for me and my auto installs.

So thanks to rogue I started playing with the grc.dat file.
Now the auto install works with the fix and no reg file needed :w00t:

So just put this file in the same dir as the setup of SAV and you should be all good to go.

Please let me know if anyone has any trouble.

Me and rogue make a good team LOL

Attached File(s)

  • Attached File  grc.dat (1.15K)
    Number of downloads: 36


#349 User is offline   pesko 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 28-September 04

Posted 03 November 2004 - 03:24 AM

Hi
I know this have nothing to do with silent install, but I hope some of you can help me.
Symantec do not offer any tool to backup the groupsettings in 9.x but you it can be backup if you follow the procedure discripe below (Unsupported !!) (Copy from an email I got from Symantec Support). I want to collect the settings from all my primery parent servers remote on one server. Does any one know how to do that?

--- Copy from Email start---

Solution:
The following method is not a supported means of product configuration. We
strongly recommend backing up the registry on both servers before moving
forward with these instructions. Because of the changes being made and the
volatile nature of making these types of changes we also strongly
recommend doing thorough testing in a test network environment before
attempting these changes in the production environment. The following
steps will outline the process of retaining client groups between server
groups when moving the primary server of one group into another. It is
also suggested that you read through the entire document before following
the steps provided.

1. If Symantec Antivirus 9 right click the client group and ensure
"Inherit settings from Server Group" is Not Checked

2. Go to the registry of the primary server you will be moving
3. Backup the registry entry (Registry (or) File -> Export Registry File)
for each client group you want to keep and put them in a shared location

Example: If I have three client groups with the names testgroup1,
testgroup2, and testgroup3. I would backup the following keys:

HKLM\Software\INTEL\LANDesk\VirusProtect6\CurrentVersion\Groups\
testgroup1
HKLM\Software\INTEL\LANDesk\VirusProtect6\CurrentVersion\Groups\
testgroup2
HKLM\Software\INTEL\LANDesk\VirusProtect6\CurrentVersion\Groups\
testgroup3

CRITICAL NOTE: DO NOT BACKUP THE GROUPS KEY


4. Move the Primary server to the new server group
5. CRITICAL: When prompted with "Do you want to apply settings from the
New Server Group? This could take several minutes" choose "NO"
6. At the Primary Server of the new server group Import each .reg file
you created in step 3
7. Lock the server group
8. Unlock the server group

You should now see all the client groups and they should have maintained
all of their settings.

If you would like your new secondary server to have same Auto-Protect
Settings as the new server group please do the following:

1. Right click the new server group
2. Go to All Tasks --> Symantec Antivirus --> Client Auto-Protect Options
3. Click Yes on the message
4. Click Reset All --> Reset All

This will propagate the server group settings to the new secondary server.
If your client group has "Inherit settings from Server Group" Unchecked
they will not be affected by this change.

--- Copy from Email end---

#350 User is offline   bbiandov 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 06-May 04

Posted 10 November 2004 - 06:48 PM

I use the 9.02 MSI as follows - command line switches specify your SSC server and few other things:

msiexec.exe /i "%systemdrive%\Install\nav9\Symantec AntiVirus.msi" RUNLIVEUPDATE=0 REBOOT=ReallySuppress NETWORKTYPE=1 SERVERNAME=xxxxxx ADDLOCAL=SAVMain,SAVUI,SAVHelp,OutlookSnapin /QB" /f

As you can see you can specify which componens of SAV9 to install, in my case I choose NOT to install the firewall stuff. Also you get to specify which SSC server to connect right after install for defs and NOT to run LU.

Posted Image

Hope this helps
Boyan

#351 User is offline   1chaoticadult 

  • A Part of a Dying Breed...
  • PipPipPipPip
  • Group: Members
  • Posts: 669
  • Joined: 31-August 03

Posted 09 December 2004 - 06:14 PM

Edited MSI for 9.0.2.1000.

Removed...

This post has been edited by 1chaoticadult: 21 January 2005 - 09:16 PM


#352 User is offline   1chaoticadult 

  • A Part of a Dying Breed...
  • PipPipPipPip
  • Group: Members
  • Posts: 669
  • Joined: 31-August 03

Posted 09 December 2004 - 06:15 PM

Also Liveupdate v2.6 is out.

#353 User is offline   `Felix` 

  • MSFN Contributor
  • PipPipPip
  • Group: Members
  • Posts: 481
  • Joined: 28-July 04

  Posted 13 December 2004 - 08:18 PM

RyanVM, on Sep 13 2004, 09:12 PM, said:

Heh, my SFX install (7zip based) is 11.7MB B)

Still no luck on the LiveUpdate settings, though :(

Hi Ryan

Can you share with us the command line you use to compress your SAV install for sfx including autorun and silent install? :yes:

I have been playing with 7zip for a day or so but have had little joy getting it to work correctly. Previously have been using WinRAR.

#354 User is offline   RyanVM 

  • Like a big surly teddy bear.
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,661
  • Joined: 31-August 03

Posted 14 December 2004 - 12:51 AM

`Felix`, on Dec 13 2004, 09:18 PM, said:

Hi Ryan

Can you share with us the command line you use to compress your SAV install for sfx including autorun and silent install?  :yes:

I have been playing with 7zip for a day or so but have had little joy getting it to work correctly.  Previously have been using WinRAR.
I'm assuming you've already got an administrative installation point at this point in time. Download StartX and put it in the same folder as the SAV9 AIP (you'll have to do a search to find it - it's finals week for me and I'm not looking for it). (The rest of this is for the most part in the 7zip help file, for future reference...:rolleyes:) Create a 7zip archive of the whole thing. You can delete the other files in the directory so you only have a .7z file remaining. In notepad, create a text file with the following information in it and save it as config.txt in UTF-8 (critical!) format.
;!@Install@!UTF-8!
RunProgram="StartX.exe /WAIT \"msiexec /i sav9.msi /qb-! RUNLIVEUPDATE=0 REBOOT=REALLYSUPPRESS\""
;!@InstallEnd@!
You can change the MSI parameters however you see fit (say for example you want to use the /qn switch instead or your MSI has a different filename), just maintain the rest of the structure.

From the 7zip directory, copy 7zS.sfx to the folder with the .7z file and config.txt in it. Open a command prompt at that location and enter the following command:
COPY /B 7zS.sfx + config.txt + sav9.7z sav9.exe
(I'm assuming that the archive name is sav9.7z for this example - you'd obviously change that to whatever it really is. Same goes for the final EXE name)

You should now have an EXE in the directory ready to go.

P.S. - We'll save custom icons and UPX compression of the SFX module for a later date (unless somebody else wants to do it) ;)

EDIT: Heck, I'm feeling like such a nice guy tonight (and don't feel like studying anymore) that I'll even include my UPX compressed SFX file with a custom SAV icon for the installer. Just extract the SFX file from the archive and modify the procedure accordingly to take the new filename into account (if you can't figure that part out, I will officially lose all hope for mankind).

Attached File(s)

  • Attached File  sav.zip (51.91K)
    Number of downloads: 227


#355 User is offline   keytotime 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 400
  • Joined: 05-October 04

Posted 21 January 2005 - 05:04 PM

In SAV 9.3 they moved lsetup.exe to \program files\Symantec AntiVirus\lusetup.exe

#356 User is offline   is0xx 

  • ....
  • Group: Members
  • Posts: 19
  • Joined: 24-December 04

Posted 24 January 2005 - 05:11 PM

weda, on Aug 23 2004, 10:41 PM, said:

here's how i installed sav 9 with RunOnceEx.cmd

Quote

set SAVSERVER=MySAVServer

REG ADD %KEY%\070 /VE /D "Symantec AntiVirus Corp 9.0" /f
REG ADD %KEY%\070 /V 1 /D "\"%CDROM%\software\sav\Symantec AntiVirus.msi\" ADDLOCAL=SAVMain,SAVUI,EMailTools,OutlookSnapin,Pop3Smtp,QClient NETWORKTYPE=1 SERVERNAME=%SAVSERVER% ENABLEAUTOPROTECT=1 RUNLIVEUPDATE=0 REBOOT=ReallySuppress /qn" /f


enjoy. (i know i am) :rolleyes:


Hi, any help whit nav corp 9.0.2.1000 and installing as client service

can you write down the right runonce commands cuse i tryed urs but it wont load for some reason :}

its msi installer, any help is much appriciated!! ;) :}

#357 User is offline   asbsamsf 

  • Junior
  • Pip
  • Group: Members
  • Posts: 75
  • Joined: 02-December 04

Posted 24 January 2005 - 05:45 PM

start /wait "%systemdrive%\install\Applications\sav\Symantec AntiVirus.msi" /qn RUNLIVEUPDATE=0 REBOOT=REALLYSUPPRESS

you can find in this topic MSI_FAQ.txt.

#358 User is offline   edmoncu 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 331
  • Joined: 28-April 04

Posted 14 March 2005 - 12:20 AM

hi. when i manually install SAV9 to my machines, i was instructed to install it as "managed" (not standalone) setup...

i was wondering, with silent install of SAV9 discussed here, what kind of client install does this one do, managed or unmanaged or standalone?

if ever, how will i silently install this one as "managed"? thanks a bunch.

#359 User is offline   `Felix` 

  • MSFN Contributor
  • PipPipPip
  • Group: Members
  • Posts: 481
  • Joined: 28-July 04

Posted 14 March 2005 - 12:52 AM

edmoncu, on Mar 14 2005, 02:20 PM, said:

hi. when i manually install SAV9 to my machines, i was instructed to install it as "managed" (not standalone) setup...

i was wondering, with silent install of SAV9 discussed here, what kind of client install does this one do, managed or unmanaged or standalone?

if ever, how will i silently install this one as "managed"? thanks a bunch.
<{POST_SNAPBACK}>


you can create a silient managed install using the management tools that come with sav 8.x and above.

#360 User is offline   Nutso 

  • Newbie
  • Group: Members
  • Posts: 34
  • Joined: 09-November 04

Posted 04 April 2005 - 11:56 AM

I just checked the contents on the CD of SAV and it has the Packager which is seems to be handy however it won't work with version 9.0 and above because they are now using MSI instead of PMI. Any suggestions? I'm trying to make a package for a computer that's off site. How can I make it unmanaged and it runs daily scans and liveupdate on its own without user interface? Thanks!

Share this topic:


  • 19 Pages +
  • « First
  • 16
  • 17
  • 18
  • 19
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy