Were you able to make any progress? I can provide my scripts if you'd like.
Main Topics
Browse All TopicsI have moved symantec anti virus corporate editon from one server to another. How can I point the clients to the new server as the parent server as currently it is still pointing to the old server on all the client machines. It is version 10.2
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
One more step. I'm referencing this website: http://www.mcgill.ca/ncs/p
"Copy the GRC.DAT file and the certificate file from the server to the local machine. The GRC.DAT file on the server can be found in the C:\Program Files\SAV\Clt-inst\WIN32 directory and the certificate can be found in C:\Program Files\SAV\Clt-inst\WIN32\p
The GRC.DAT file should be copied to C:\Documents and Settings\All Users\Applicatication Data\Symantec\Symantec AntiVirus CE\7.5 directory.
The certificate should be copied to C:\Program Files\Symantec AntiVirus\pki\roots directory. "
Something similar to this should work:
xcopy \\SAVserver\vphome\CLT-INS
You'll need to modify the server name. Also, I didn't throw this in a batch file, so test it out before you push it to your entire domain.
This what I was thinking of calling from the Login script:
**************************
@echo off
REM Copies files from AV Server to client to point client to correct parent AV server
xcopy "\\DC-02\vphome\pki\roots\
xcopy "\\DC-02\vphome\GRC.DAT" "C:\Program Files\Symantec AntiVirus\" /f /y
xcopy \"\DC-02\vphome\GRCGRP.DAT
**************************
How does this look? I'm not a scripting buff, but I'm trying to assimilate what I'm reading here. We're using SAV 10.2
Ah! Thanks for catching my bug there....
@echo off
ECHO ******** UPDATING YOUR PARENT AV SERVER ***************
xcopy "\\DC-02\vphome\pki\roots\
xcopy "\\DC-02\vphome\GRC.DAT" "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5" /y/v/q/f
xcopy \"\DC-02\vphome\GRCGRP.DAT
Also, regarding the moving the .cer files in the PKI directories, they should go into the pki\roots directory. Here's the ariticle I pulled this from and the text below:
"Moving Symantec Client Security 3.x or Symantec AntiVirus Corporate Edition 10.x clients from one parent server to another"
http://service1.symantec.c
To change the parent management server of a client manually when the servers are not in the same server group
1. On the intended parent management server, copy the Grc.dat configuration file from the Symantec AntiVirus program folder.
The default location on a Symantec AntiVirus Corporate Edition server is <OS drive>:\Program Files\SAV.
The default location on a Symantec Client Security server is <OS drive>:\Program Files\SAV\Symantec AntiVirus.
For directions, see the directions in the "To find the Symantec AntiVirus program folder" section in the Technical Information section of this document.
2. On the client computer, paste the Grc.dat file into the C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5 folder.
3. On the intended parent management server, open the pki\roots folder and copy the xxx.x.servergroupca.cer file.
4. On the client computer, paste the xxx.x.servergroupca.cer file into the pki\roots directory, which appears under the directory that contains the Symantec Client Security files.
5. After a few minutes, the client finds the Grc.dat file, makes the appropriate changes to the registry, and then deletes the Grc.dat file.
The next time that the client checks in with the parent server, the client will appear in Symantec System Center. You can force the check-in by editing the registry on the client computer.
I'm assuming that the pki/roots directiry is the one under the "program file", not the "all users", since there isn't a pki folder under the "all users" area.
@echo off
ECHO ******** UPDATING YOUR PARENT AV SERVER ***************
xcopy "\\providenceeng.com\netlo
xcopy "\\DC-02\vphome\GRC.DAT" "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5" /y/v/f/q
xcopy \"\DC-02\vphome\GRCGRP.DAT
Business Accounts
Answer for Membership
by: snoopfroggPosted on 2007-06-25 at 11:00:55ID: 19357686
Original author: http://209.85.165.104/sear ch? q=cache :E8YyWfR5f D0J:wiki.l ib.uconn.e du/wiki/ IT SKB:_Syman tec_Antivi rus:_How_t o_Change_P arent_Serv er+ symante c+antiviru s+change+c lient+pare nt+server& hl=en&ct=c lnk& cd=2&g l=us
/wiki/ ITSK B:_Symante c_Antiviru s:_How_to_ Change_Par ent_Server ""
"
1. Copy the Grc.dat file from the VPHOME shared folder on the parent server.
2. Paste the Grc.dat file into C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5
3. After a few minutes, the Symantec AntiVirus client will find the Grc.dat file in this folder. Symantec AntiVirus will make the appropriate changes to the registry and then delete the file.
The next time that the client checks in with the parent server, the client will appear in Symantec System Center. You can force the check-in by stopping and starting the Symantec AntiVirus Client service on the client or by restarting the computer.
Retrieved from "http://wiki.lib.uconn.edu
My own thoughts:
If you want to do this for several clients, you can accomplish this through Group Policy startup scripts. Provide a script that copies the GRC.dat file to the aforementioned location.