Page 1 of 1

[SOLVED] AVIRA Antivirus Package

Published: January 22, 2018 - 12:08 PM
by killianb
Hello,

I'm very bad at programming and unable to create this package, so I'm turning to you to ask if you might have a package to install Avira antivirus.

Thank you.

Re: AVIRA Antivirus Package

Published: January 22, 2018 - 9:46 PM
by sfonteneau
For the free part:

Code: Select all

def install():
    print('installing smp-avira')
    install_exe_if_needed("avira_fr_av_5a66487bc3768__ws.exe",'/s',key='{E3F659C3-7936-4321-B886-4DA527DA72FE}',min_version='1.2.103.26908')

Re: AVIRA Antivirus Package

Published: January 23, 2018 - 10:34 AM
by killianb
Hello,
thank you so much, it's installing. I noticed a simple difference compared to my old script: I had used "/VERYSILENT" instead of /s. What does this "/s" mean and why is it working now?
And where do you find the "key"?
Thank you.

Re: AVIRA Antivirus Package

Published: January 23, 2018 - 12:24 PM
by sfonteneau
For the uninstallkey:

https://www.wapt.fr/fr/doc/Utilisation/ ... t-registry

Regarding the /sa option, I don't know about replacing /verysilent.
I only tried with /VERYSILENT and saw that it didn't work.

I searched a bit online and saw that it worked with /s. :D

The executable has most likely changed in the meantime.

Re: AVIRA Antivirus Package

Published: January 23, 2018 - 1:58 PM
by killianb
Great, thank you!