Posts Tagged ‘Have’

I Have Avg Free Edition And It Doesn’t Let Me Uninstall It Or Reinstall It. Can Anybody Help?

Saturday, February 13th, 2010

I tried a lot of times and different ways and always get the error message.
“1 error and 3 warnings occurred. Click Details to show more information.”
When I click “Details” it says:
“Local machine: installation failed
Initialization:
Warning: Checking of state of the item file avgsched.log failed.
File opening failed. %FILE% = “”
Error 0xe001042c
Warning: Checking of state of the item file avgwd.log failed.
File opening failed. %FILE% = “”
Error 0xe001042c
Installation:
Error: Action failed for file avgsched.log: creating backup….
Error 0×80070005 %DESTINATION% = “C:\ProgramData\avg8\Log\avgsched.log.in… %SOURCE% = “C:\ProgramData\avg8\Log\avgsched.log”
Warning: Action failed for file avgmfx86.sys: stopping service….
Service AvgMfx86 failed to progress during stopping at checpoint 0 (wait hint 10000 ms) in 90246 ms.”

I Have 8600gts Card But When I Click The Grid Exe Then Error Occur Why?

Wednesday, February 10th, 2010

be more specific on what exactly the error is

Virus Or I Have Misconfiged?

Thursday, February 4th, 2010

When I create a file name and change it’s name to autorun.inf or boot.exe, I don’t see it any more in windows explorer (it disappears). But when I create a new file and try to rename it to autorun.inf or boot.exe, I receive a error message that the file I try to rename to has already existed. I have check the options to show hidden file and system file in windows explorer option but I still can’t see the file I’ve created even thought I can see some other common hidden/system file like autoexec.bat, boot.ini, ntdetect.com, io.sys, config.sys,… in windows explorer. I use some text editor and I can open the file with name above (autorun.inf and boot.exe) by type it’s name from the open file dialog (I still can’t see this file). After modify it content, I run cmd and when I type command
type autorun.inf (let’s say the file I’ve modified is autorun.inf, the same happen to the file with the name boot.exe)
I see the the file’s content. Then I type command
del autorun.inf
I receive the message “Could not find autorun.inf”
Also when I insert a CD-ROM to my drive, if the CD content the file autorun.inf, I can not see it content from windows explorer
Does anybody know if this is a virus or I have misconfiged the autorun/autoplay policy? And how can I fix this?

I Have A Pop-up That Comes Up Evrytime-iexplorer.exe-applica… Error How Do I Remove It?

Saturday, January 30th, 2010

Look for it in taskmanager and kill it.

I Have Tried All Three Answer For Removing The Common Shell Res Xx\macshield..dll And No Resaults?

Sunday, January 24th, 2010

I can’t seem to get computer to run right after I uninstall McAfee SOFTWARE

I Have Tried All Three Answer For Removing The Common Shell Res Xx\macshield..dll And No Resaults?

Sunday, January 24th, 2010

I can’t seem to get computer to run right after I uninstall McAfee SOFTWARE

I Have Avg Free Edition And It Doesn’t Let Me Uninstall It Or Reinstall It. Can Anybody Help?

Friday, January 22nd, 2010

I tried a lot of times and different ways and always get the error message.
“1 error and 3 warnings occurred. Click Details to show more information.”
When I click “Details” it says:
“Local machine: installation failed
Initialization:
Warning: Checking of state of the item file avgsched.log failed.
File opening failed. %FILE% = “”
Error 0xe001042c
Warning: Checking of state of the item file avgwd.log failed.
File opening failed. %FILE% = “”
Error 0xe001042c
Installation:
Error: Action failed for file avgsched.log: creating backup….
Error 0×80070005 %DESTINATION% = “C:\ProgramData\avg8\Log\avgsched.log.in… %SOURCE% = “C:\ProgramData\avg8\Log\avgsched.log”
Warning: Action failed for file avgmfx86.sys: stopping service….
Service AvgMfx86 failed to progress during stopping at checpoint 0 (wait hint 10000 ms) in 90246 ms.”

Whenever I Log In To My Computer Im Getting Temp2.exe Error Msg…why Is That So?can I Have A Solution For It?

Thursday, January 21st, 2010

plz help me:(

\windows\system32\config\syste… Is Missing/corrupt. I Do Have The Install Cd. But It Doesn’t Do Anything!

Thursday, January 21st, 2010

When I turn on my laptop, i get the error message “windows cannot start because the following file is missing or corrupt” and then it lists “\windows\system32\config\system”. When I hit “R” to try to repair, nothing happens. I DO have the install CD. I put it in, turned off and then restarted my computer – but NOTHING happens. Shouldn’t my computer recognize the CD and try installing from it? I’m trying to google answers, but nothing is helping. I hit the F8 key, tried restarting in safe mode, tried restarting with “last known good configurations” but nothing works. It keeps bringing up the blue “Dell” screen and then the black screen with error messages.
I guess my question is – how do I use my install CD to fix my broken config.sys file? Does that file deal with the main registry? Did a virus do this? Last night, at 1 am (10 hours ago), it worked fine. My dad shut the computer off normally, and now this is happening. Help!!!

Hi I A Writting Simple Server Client Socket.the Code That I Have Written Is Not Working.please Anyone Help Me?

Friday, January 15th, 2010

#include
#include /* Basic I/O routines */
#include /* standard system types */
#include /* Internet address structures */
#include /* socket interface functions */
#include /* host to IP resolution */
#include
#define portno 6789 /* default port of host */
void error(char *msg);
int main(int argc, char *argv[]);
void error(char *msg)
{
perror(msg);
exit(1);
}
int main(int argc, char *argv[])
{
int serversocket;
int newsockfd;
int clilen;
char buffer[4096];
struct sockaddr_in serv_addr, cli_addr;
/*portno = 80;*/
int n;
serversocket = socket(AF_INET, SOCK_STREAM, 0);
if (serversocket < 0)
{
error("ERROR opening socket");
}
bzero((char *) &serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
/*portno=atoi(argv[1]);*/
serv_addr.sin_port = htons(portno);
printf("Socket has port #%d\n", serv_addr.sin_port);
if (bind(serversocket, (struct sockaddr *) &serv_addr,
sizeof(serv_addr)) < 0)
{
error("ERROR on binding");
}
listen(serversocket,5);
while (1) {
clilen = sizeof(cli_addr);
newsockfd = accept(serversocket,(struct sockaddr *) &cli_addr, &clilen);
if (newsockfd < 0)
{
error("ERROR on accept");
}
/*n = read(newsockfd,buffer,sizeof(buffer)-1);
printf("A connection has been established\n");
if (n < 0)
{
error("ERROR reading from socket");
}
printf("Here is the message: %s\n",buffer);*/
n = write(newsockfd, buffer, sizeof(buffer)-1);
if (n < 0)
{
error("ERROR writing to socket");
}
close(newsockfd);
}
return 0;
}