MSFN Forum: AVG Free 2013 silent install - 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
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

AVG Free 2013 silent install Rate Topic: -----

#1 User is offline   jinkazama 

  • Member
  • PipPip
  • Group: Members
  • Posts: 196
  • Joined: 16-November 03
  • OS:Windows 8 x64
  • Country: Country Flag

Posted 26 September 2012 - 02:19 PM

You can download AVG free 2013 offline installers (x86 x64) here

You can use this code to perform a silent install

avg_free_x64_all_2013_releasenumber.exe /UILevel=silent /AppMode=setup /InstallToolbar=0 /ChangeBrowserSearchProvider=0 /SelectedLanguage=1040 /InstallSidebar=0 /ParticipateProductImprovement=0 /DontRestart /DisableScan /KillProcessesIfNeeded


I'm italian and i've selected SelectedLanguage=1040 but you can change it

Here a list of language codes

This post has been edited by jinkazama: 29 September 2012 - 02:31 PM



#2 User is offline   manzana1804 

  • Group: Members
  • Posts: 2
  • Joined: 29-September 12
  • OS:XP Pro x86
  • Country: Country Flag

Posted 29 September 2012 - 06:42 AM

thanks a lot. But i was wondering if you could give me the languaje code for spanish(latinoamerica). thanks again

#3 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 29 September 2012 - 07:09 AM

You can use this OS.vbs to know your OS language code :

OS.vbs
On Error Resume Next

Const wbemFlagReturnImmediately = &h10
Const wbemFlagForwardOnly = &h20

arrComputers = Array(".")
For Each strComputer In arrComputers

   Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
   Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", _
                                          wbemFlagReturnImmediately + wbemFlagForwardOnly)

   For Each objItem In colItems
      WScript.Echo "CountryCode: " & objItem.CountryCode
      WScript.Echo "Locale: " & objItem.Locale
      strMUILanguages = Join(objItem.MUILanguages, ",")
         WScript.Echo "MUILanguages: " & strMUILanguages
         WScript.Echo "OSLanguage: " & objItem.OSLanguage
   Next
Next



Copy/paste inside Notepad and save as OS.vbs




#4 User is offline   manzana1804 

  • Group: Members
  • Posts: 2
  • Joined: 29-September 12
  • OS:XP Pro x86
  • Country: Country Flag

Posted 29 September 2012 - 07:20 AM

thanks a lot. that was really helpfull.

#5 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 29 September 2012 - 07:22 AM

Thanks, you can also take a look here:

Windows Locale Codes - Sortable list

Cheers

#6 User is offline   jinkazama 

  • Member
  • PipPip
  • Group: Members
  • Posts: 196
  • Joined: 16-November 03
  • OS:Windows 8 x64
  • Country: Country Flag

Posted 29 September 2012 - 02:32 PM

View Postmanzana1804, on 29 September 2012 - 06:42 AM, said:

thanks a lot. But i was wondering if you could give me the languaje code for spanish(latinoamerica). thanks again

I've updated first post adding a language code list

#7 User is offline   skavenger 

  • Master of Tools
  • Pip
  • Group: Members
  • Posts: 55
  • Joined: 19-October 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 06 November 2012 - 08:14 AM

It works.

You can also use the witch /UILevel=minimal instead of /UILevel=silent.

This will show you the main installer-screen with progressbar.

The problem is: After installing it silent, it opens the UserGUI. If you try to kill the process avgui.exe it makes errors because you have no permissions to kill this.

Any solutions to prevent the silent install from lauchning the GUI at the end?

TIA
skav

#8 User is offline   jinkazama 

  • Member
  • PipPip
  • Group: Members
  • Posts: 196
  • Joined: 16-November 03
  • OS:Windows 8 x64
  • Country: Country Flag

Posted 06 November 2012 - 04:07 PM

View Postskavenger, on 06 November 2012 - 08:14 AM, said:

The problem is: After installing it silent, it opens the UserGUI. If you try to kill the process avgui.exe it makes errors because you have no permissions to kill this.

Any solutions to prevent the silent install from lauchning the GUI at the end?

TIA
skav


i found a working solution:

add these lines after silent installer

PING 1.1.1.1 -n 1 -w 5000 >NUL
taskkill /t /f /im avgui.exe



#9 User is offline   skavenger 

  • Master of Tools
  • Pip
  • Group: Members
  • Posts: 55
  • Joined: 19-October 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 06 November 2012 - 04:20 PM

Tried this many times.

Some times it works - other times it not works.

#10 User is offline   jinkazama 

  • Member
  • PipPip
  • Group: Members
  • Posts: 196
  • Joined: 16-November 03
  • OS:Windows 8 x64
  • Country: Country Flag

Posted 06 November 2012 - 05:29 PM

I've tried it 3 times and it works...
Tomorrow i'll retry
I attach AVG installer pdf switch list

Attached File(s)



#11 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 07 November 2012 - 07:01 AM

Maybe you can try tike this:

TASKKILL /F /IM "avgui.exe" /T


#12 User is offline   skavenger 

  • Master of Tools
  • Pip
  • Group: Members
  • Posts: 55
  • Joined: 19-October 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 November 2012 - 07:15 AM

Hey folks,

thanks for information.

The PDF is very usefull.

The "trick" with taskkill is sometimes working - sometimes not.
Thats my problem.

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

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



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