Jump to content

Recommended Posts

Posted (edited)

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

Edited by jinkazama

Posted

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

Posted

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

  • 1 month later...
Posted

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

Posted

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

Posted

Hey folks,

thanks for information.

The PDF is very usefull.

The "trick" with taskkill is sometimes working - sometimes not.

Thats my problem.

  • 2 years later...
Posted (edited)

I've tried it 3 times and it works...

Tomorrow i'll retry

I attach AVG installer pdf switch list

Thank you so much for the PDF, this was what I was looking for :)

And, the taskkill trick isnt working for me :(

 

 

Cheers.

Edited by niT3_riD3r_pr0

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...