|
Hi,
I'm trying to install AVG 2011 but its giving me the error that MSI engine failed to install product. I have the installation log, just not sure what to do with it. Any guidance would be appreciated. Thanks!!
Started by mkatz1488 on
, 30 posts
by 10 people.
Answer Snippets (Read the full thread at cnet):
Do you have any other security product installed? Previous logs showed problems while installing... .
Ok, I uploaded when trying to launch the AVG Firewall service.
To Upload A File To An Online Storage Service (a link to AVG Free Forum)
Thank you.
|
|
PC peeps: is free AVG better than pay-for AVG? I ask, because I had used the "free" version in the past on my laptop, but I'm now using the premium version. And it ain't working worth a crap...web pages taking forever to load (and TF not loading in Firefox...
Started by twofbyc on
, 12 posts
by 7 people.
Answer Snippets (Read the full thread at tidefans):
A spyware the correct answere.
Re: PC peeps: is free AVG better than pay-for AVG? I dont pay for anti-virus either.
I dont see the point.
Re: PC peeps: is free AVG better than pay-for AVG? i have never paid for avg.
|
|
Is it possible to install AVG antivirus (the free version) offline?
If so where would I go on their site to download that?
Started by Kevin Laity on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Latest release -Jan -2010 http://avg.vo.llnwd.net/o25/inst/avg_free_stf.
It is meant only for HOME USE.
Your answer is right on their own download page (if you choose to download AVG directly from AVG.
|
Ask your Facebook Friends
|
AVG INSTALLED Printer is not working It will print when I reboot
Started by Neil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
What OS are you using? What version of AVG? Do you have to reboot your computer every time you want to print.
You left out a lot of information...
Is okay? Normally you should reboot after installing AVG.
|
|
Do I have to get rid of AVG if I want to install Essentials on the new Windows 7 OS?
Answer Snippets (Read the full thread at superuser):
Haven't seen a need to re-enable AVG, even to see....
Works for me.
Like with other Anti Virus programs, you may get a combination AVG, I disabled it, just in case I wasn't happy with Microsoft's.
Personally, I would uninstall AVG.
|
|
From various forums it appears that AVG 9.0 disables Microsoft Defender. Is there any way to stop that behavior?
Started by Robot on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
This is no longer....
I used to install AVG Free on all PCs that I worked on and cleaned/formatted for people.
They keep adding unnecessary bulk and don't have that great of a detection record either .
AVG has really been dropping the ball lately.
|
|
I am trying to create a statement in sql (for a table which holds stock symbols and price on specified date) with avg of 5 day price and avg of 15 days price for each symbol.
table description:
symbol open high close date the average price is calculated...
Started by venkatesh on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
SELECT AVG( c.close * c.is_5 ) AS close_5, AVG( c.trd_qty * c.is_5 ) AS trd_qty_5, AVG( c.close * c.is_15 ) AS close_15, AVG( c.trd_qty * ....
You have to decide which one works better for you .
Solution takes the last 15 rows.
|
|
Hi
I have a table with feilds : file_id, rating, user_id
There is one rating per user_id, so there could be many rating (in scale of 0-5) for a single file_id.
I want to find avg of ratings for every file_id and then display 5 file_id with highest avg...
Started by Zeeshan Rang on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
SELECT file_id, AVG(rating) as avg_rating FROM table GROUP BY file_id ORDER BY avg_rating....
SELECT `file_id`, AVG(`rating`) as a FROM `table` GROUP BY `file_id` ORDER BY a DESC LIMIT 5 off all records that fall below the top 5.
|
|
Can I combine these 2 SQL statements? Currently running 2 queries. Trying to tighten up a bit.
First one:
SELECT * FROM (`cars`) JOIN `brands` ON `brands`.`br_id` = `cars`.`brand_id` WHERE `cars`.`id` = '185707'
Second one:
SELECT ROUND(AVG(rating)) as...
Started by k00k on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can do this using group by :
select cars.*, brands.*, round(avg(car_ratings.rating)) as avg_rating.
Select * , (select round(avg(rating)) from car_ratings where car_id = cars.id) as avg_rating.
|
|
Does AVG security toolbar do anything useful actually? It seems to me that all its functionality is already integrated into Linkscanner.
Started by kai on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
I´d say ....
The linkscanner should be enough search results you get from google .
AVG will still be running.
I would just close the tool bar.
But I don't see it.
AVG Security Toolbar could prevent you from accessing a phishing/malware-site.
|