MSFN Forum: AVG Anti-Virus Silent - 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
  • 7 Pages +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

AVG Anti-Virus Silent I found out how to do it Rate Topic: -----

#21 User is offline   SibTiger 

  • Computer Geek
  • Group: Members
  • Posts: 44
  • Joined: 26-February 04

Posted 23 March 2004 - 11:31 PM

Awesome, Schadenfroh! But I have some newbie questions.
  • I see "sleep" in your script. Do I need to download a freebie for "sleep" to work, or is that built into VB?
  • Does this script go in the AVG6 subdirectory to run properly?
  • Also, how do you call a .vbs file from a batch file?
    avg.vbs
    OR
    call avg.vbs
    OR
    start /w avg.vbs
    OR
    ???
THANKS!!!


#22 User is offline   KYPUMPER 

  • Newbie
  • Group: Members
  • Posts: 19
  • Joined: 05-April 04

Posted 08 May 2004 - 02:13 PM

bump for free edition

#23 User is offline   KYPUMPER 

  • Newbie
  • Group: Members
  • Posts: 19
  • Joined: 05-April 04

Posted 09 May 2004 - 09:37 PM

I found out how to run the vb script inside the folder with the setup.exe for AVG works like a charm. That script was awesome I never had messed with VB script before I ran that and it was like the cartoons where the big lightbulb lights up over your head I will tweak that for other applications Thanks for writing that script man.

#24 User is offline   Dustinwmew 

  • Member
  • PipPip
  • Group: Members
  • Posts: 122
  • Joined: 11-June 04

Posted 16 July 2004 - 12:46 AM

i tryed this but it did not install so I removed the hide: and it told me that DONT_START_APPS:
NO_WELCOME:
NO_AVGW_STARTUP:
are Invalid command line arguments.

#25 User is offline   RBCC 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 621
  • Joined: 09-July 04

Posted 08 August 2004 - 07:13 PM

How do I install the update file and AVG 7.0 together so it will be updated? John

#26 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 28 August 2004 - 03:02 AM

Just wandering if anyone can throw some light on this dld the avg6 free ver but complains when installing the serial does not match the language verion as Bachus mentioned earlier in this post. The version I receive is avg6732fu_free.exe now Im thinking this is the incorrect ver & require the US one. Every time I go to dl it I dont get the choice of packages each time I get the same as above?

#27 User is offline   [Forsaken]Omni 

  • Group: Members
  • Posts: 7
  • Joined: 23-September 04

Posted 25 September 2004 - 03:36 PM

I am getting an error when I try to install AVG7
Installer initialization failed due to following error:
Undefined error: Invalid line in the install script file "C:\Install\Applications\AVG7\avgsetup.ini" at line 1.

here are my two codes:
avgsetup.ini
HIDE:
DONT_START_APPS:
NO_WELCOME:
LOG: "C:\AVG7INST.LOG" 
NAME: "UserName" 
COMPANY: "Company" 
LICNO: "Serial"


start.cmd
@echo off
title Program Install

ECHO.
ECHO Installing AVG Anti-Virus 7.0.197...
SET SETUP="%systemdrive%\Install\Applications\AVG7\avg.exe" /s
%SETUP% /SCRIPT_FILE "%systemdrive%\Install\Applications\AVG7\avgsetup.ini" %1 %2 %3 %4 %5 %6 %7 %8 %9

echo.
pause
exit


If anyone could help me out I'd appreciate it.

#28 User is offline   avr3 

  • Newbie
  • Group: Banned
  • Posts: 27
  • Joined: 30-July 04

Posted 08 October 2004 - 04:49 PM

Currently use these rows:

Quote

@echo off

start c:\install\avg\setup.exe /HIDE /@ c:\install\avg\avg_net.cfg

exit



How I can modify, in order to make install in RunOnceEx from cd?

Thank you.

#29 User is offline   Jito463 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 442
  • Joined: 01-July 04

Posted 09 October 2004 - 07:17 AM

I think I can modify that script to not make AVG reboot the machine, but for the life of me I can't figure out how to send the SPACEBAR as a key in a VBS script. Anyone know?

#30 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 10 October 2004 - 03:54 PM

Jito463, on Oct 9 2004, 03:17 PM, said:

I can't figure out how to send the SPACEBAR as a key in a VBS script.

WshShell.SendKeys " "

#31 User is offline   Jito463 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 442
  • Joined: 01-July 04

Posted 10 October 2004 - 05:44 PM

Here we go. This should do fix it so it runs without rebooting the system. Thank you, Mazin.

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run ("setup.exe")
WScript.Sleep 4000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "AVG-1-17354670-NTZ"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 18000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "~"
WScript.Sleep 1000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys " "
WScript.Sleep 1000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "~"


#32 User is offline   BaTLeZone 

  • Member
  • PipPip
  • Group: Members
  • Posts: 195
  • Joined: 10-October 03
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 26 October 2004 - 01:27 PM

what is the command line for avg with the script?

#33 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 26 October 2004 - 04:35 PM

No command line! Just put it in the same folder with EXE, then run it.

#34 User is offline   jos3ph 

  • Group: Members
  • Posts: 5
  • Joined: 01-November 04

Posted 01 November 2004 - 11:35 AM

does exist a switch for avg 6.7 free edition?

#35 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 03 January 2005 - 04:15 PM

RE the latest free version 7.0 anyway known to kill post install crap eg updating etc screens during ua, mind you it doesnt halt the rest of the installation but tends to hide the runoncex install screen unless you click through all the avg popups?
Im using this to install ua:

REG ADD %KEY%\015 /VE /D "AVG Ver7.0 Free" /f
REG ADD %KEY%\015 /V 1 /D "%CDROM%\Software\AVG7\avg70free_296a409.exe /HIDE" /f

#36 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 05 January 2005 - 05:00 AM

Had a look at the AVG site & they don't appear to have any support for this product setup.exe works with the \Hide switch only.
Maybe Nologic can help us out with an Autoit script when hes got time that is? ;)

#37 User is offline   kC_ 

  • Junior
  • Pip
  • Group: Members
  • Posts: 83
  • Joined: 01-July 04

Posted 05 January 2005 - 11:46 AM

ECHO.
ECHO Installing AVG Free v7.0 build 300a419
ECHO Please wait...
start /wait %systemdrive%\install\AVGFreev7\avg70free_300a419.exe /HIDE 

/DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED /LOG 

"C:\AVG7INST.LOG"


works wonderfully;)


the serial i have in a txt filein the instal dir called "avg7 key.txt"

#38 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 05 January 2005 - 12:48 PM

Thanks KC looks similar to the pro setup.Worked well

REG ADD %KEY%\015 /VE /D "AVG Ver7.0 Free" /f
REG ADD %KEY%\015 /V 1 /D "%systemdrive%\install\AVG7\avg70free_296a409.exe /HIDE /DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED" /f

#39 User is offline   McoreD 

  • Member
  • PipPip
  • Group: Members
  • Posts: 156
  • Joined: 03-September 04

Posted 11 January 2005 - 09:53 PM

MAVERICKS CHOICE, on Jan 6 2005, 02:48 AM, said:

Thanks KC looks similar to the pro setup.Worked well

REG ADD %KEY%\015 /VE /D "AVG Ver7.0 Free" /f
REG ADD %KEY%\015 /V 1 /D "%systemdrive%\install\AVG7\avg70free_296a409.exe /HIDE  /DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED" /f

Cheers for this mate. :)

#40 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 14 January 2005 - 01:24 AM

Hey thanks, only read,searched & asked? Glad it helps.

Share this topic:


  • 7 Pages +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • 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