Avast WEBforum

Consumer Products => Avast Free Antivirus / Premium Security (legacy Pro Antivirus, Internet Security, Premier) => Topic started by: nyllet_2 on February 05, 2013, 12:08:14 PM

Title: [Solved] How to disable Avast services
Post by: nyllet_2 on February 05, 2013, 12:08:14 PM
I'm attempting to disable Avast services through Msconfig.

I need to disable all services running on my system in order to figure out which services are causing my Windows update to fail. I've been able to disable all services exept for Avast services.

Do I have to uninstall Avast in order to stop those two services?

Best regards,
Mikael
Title: Re: How to disable Avast services
Post by: Lisandro on February 05, 2013, 12:26:46 PM
Although is NEVER adviced to do that, you can disable avast! services within the avast! tray icon settings (shields management).
avast! shouldn't interfere in any (clean) installation, even less Windows Update.
Which is the error (number/info) you're facing?
Title: Re: How to disable Avast services
Post by: nyllet_2 on February 05, 2013, 12:33:19 PM
The errorcode I get from Windows Update is "800F081F".
All update downloads fails and I get the mentioned code.

I've been in contact with Microsoft and they gave me the advice to turn off all non-essential services and try to run Windows update then.
Title: Re: How to disable Avast services
Post by: Pondus on February 05, 2013, 12:40:29 PM
have you tried right click avast tray icon and pause shields for  xx time



googling the error code i found this...but i guess you already know if you have contacted microsoft

Quote
0x800F081F    CBS_E_SOURCE_MISSING    The source for the package or file not found.
http://support.microsoft.com/kb/947821

Title: Re: How to disable Avast services
Post by: nyllet_2 on February 05, 2013, 12:45:13 PM
Hello again,

Yes, I have stopped the shields entirely for the moment, what I want to do is stop the Avast Services in the MsConfig
http://imgur.com/1q2tUO9
Title: Re: How to disable Avast services
Post by: Pondus on February 05, 2013, 12:50:50 PM
see picture IV disabling self protection.....on your risk


https://support.avast.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=1334
Title: Re: How to disable Avast services
Post by: nyllet_2 on February 05, 2013, 12:53:29 PM
Pondus:
Thank you, I will check the guide you linked me to on Microsoft!

Will get back to you here regardless if it worked or not! :)
Title: Re: How to disable Avast services
Post by: Pondus on February 05, 2013, 01:01:04 PM
if you dont get it to work, you can attach a OTL diagnostic log here....
the one of the expert will have a look inside and see if he find something strange.  ;)

you find OTL here.    http://forum.avast.com/index.php?topic=53253.0

Title: Re: How to disable Avast services
Post by: bob3160 on February 05, 2013, 01:07:33 PM
You've also never mentioned which OS you' re using.
Title: Re: How to disable Avast services
Post by: nyllet_2 on February 05, 2013, 01:43:54 PM
Oh, pardon me! Completely forgot that!

I'm running Windows 8.


Pondus: I managed to stop the selfdefence and halt the Avast! services, unfortunally it did not help me solve my problem.
Now I'll try contacting Microsoft again and tell them their product aint working ;)
Title: Re: How to disable Avast services
Post by: bob3160 on February 05, 2013, 01:51:08 PM
The answer supplied by Pondus sends you to the right place for the fix of this error.
Title: Re: How to disable Avast services
Post by: essexboy on February 05, 2013, 02:55:11 PM
Is this an upgrade of windows 7 to windows 8 or a fresh install ?

http://m1p.net/windows-8-update/can't-do-any-windows-8-update-error-code-800f081f/
Title: Re: How to disable Avast services
Post by: nyllet_2 on February 05, 2013, 04:36:57 PM
Solution to Avast question was supplied by Pondus.
Solution to Update problem found below.

Was in contact with Microsoft.

The solution was to create a batch-file out of the following code (I simply named it fix.bat):
SET ARG=%1
FOR /F "usebackq delims=" %%A IN (`dir /B C:\Windows\servicing\packages\Package_for_%ARG%~*.cat`) do SET FOUNDPKG=%%A
SET PKGNAME=%FOUNDPKG:~0,-4%
DISM /online /NoRestart /remove-package /packagename:%PKGNAME%

Then open CMD and do
cd %userprofile%
cd desktop%
fix KB1234567

When that's done, download the update and install it :)
Title: Re: How to disable Avast services
Post by: bob3160 on February 05, 2013, 05:16:23 PM
Solution to Avast question was supplied by Pondus.
Solution to Update problem found below.

Was in contact with Microsoft.

The solution was to create a batch-file out of the following code (I simply named it fix.bat):
SET ARG=%1
FOR /F "usebackq delims=" %%A IN (`dir /B C:\Windows\servicing\packages\Package_for_%ARG%~*.cat`) do SET FOUNDPKG=%%A
SET PKGNAME=%FOUNDPKG:~0,-4%
DISM /online /NoRestart /remove-package /packagename:%PKGNAME%

Then open CMD and do
cd %userprofile%
cd desktop%
fix KB1234567

When that's done, download the update and install it :)
That's basically what's outlined in the link that essexboy supplied. Only they did it manually. :)