Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you run avupdate.exe on win98?

Status
Not open for further replies.

struss111

IS-IT--Management
Oct 16, 2002
1
US
We have a win2000 network with just one win98 client. The virus updates aren't working on the win98 client,they have to be run manually, what do I have to do to get it to work?

Any help would be greatly appreciated, thanks.
Bob
 
Use a login script. There is an example on the CD but if not here is an example:

REM Sample Login Script for AVUpdate
@echo off

If "%OS%" == "Windows_NT" goto skip
If NOT "%WINBOOTDIR%" == "" goto 95
REM
REM Run AVupdate using WIN3x syntax
REM
net use v: \\<server name>\cheyupd$
v:\avupdate.exe
net use v: /d
goto skip

:95
REM
REM Run AVupdate using WIN95 syntax
REM
\\<server name>\cheyupd$\avupdate.exe

:skip
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top