Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Re: This message has been blocked for your safety

Reply
Thread Tools

Re: This message has been blocked for your safety

 
 
Patrice
Guest
Posts: n/a
 
      07-18-2007
Have you tried to click on "Learn more" ???!!!

It looks like you are using a software (not sure if this is a server side
firewall software or if you try to read the message in a client) that
consider this as a potential threat. IMO your best is to look for support at
this third party product site as it looks like this issue is not related to
..NET...

--
Patrice

"Jassim Rahma" <> a écrit dans le message de news:
F12C8C18-20DE-4A06-A415-...
>I am getting this message when sending using System.Net.Mail... I have
> attached the print screen and here is the complete code:
>
> NetworkCredential network_credential = new
> NetworkCredential("", "xxxxxx");
> MailMessage mail_message = new MailMessage();
> // SmtpClient smtp_client = new SmtpClient("localhost");
> SmtpClient smtp_client = new SmtpClient("smtp.zatoor.com");
> smtp_client.UseDefaultCredentials = false;
> smtp_client.Port = 25;
> smtp_client.Credentials = network_credential;
>
> string html_message = null;
>
> html_message = "<html>";
> html_message += "<head>";
> html_message += "<meta http-equiv=Content-Type
> content='text/html; charset=windows-1252'>";
> html_message += "</head>";
> html_message += "<body>";
> html_message += "Thank you for registering with zatoor.com
> and welcome to the world of free classifieds. We hope you will enjoy using
> our website.";
> html_message += "<br>";
> html_message += "<br><br>";
> html_message += "zatoor.com Team";
> html_message += "</body>";
> html_message += "</html>";
>
> mail_message.From = new MailAddress("",
> "zatoor.com");
> mail_message.To.Add(txtEmailAddress.Text);
> mail_message.CC.Add("");
> // mail_message.Priority = MailPriority.High;
> mail_message.IsBodyHtml = true;
> mail_message.Subject = "welcome to zatoor.com";
> mail_message.Body = html_message;
>
> mail_message.DeliveryNotificationOptions =
> DeliveryNotificationOptions.OnFailure;
>
> smtp_client.Send(mail_message);
>



 
Reply With Quote
 
 
 
 
Jassim Rahma
Guest
Posts: n/a
 
      07-19-2007
can you please expian what do you mean?



"Patrice" <http://www.chez.com/scribe/> wrote in message
news:...
> Have you tried to click on "Learn more" ???!!!
>
> It looks like you are using a software (not sure if this is a server side
> firewall software or if you try to read the message in a client) that
> consider this as a potential threat. IMO your best is to look for support
> at this third party product site as it looks like this issue is not
> related to .NET...
>
> --
> Patrice
>
> "Jassim Rahma" <> a écrit dans le message de news:
> F12C8C18-20DE-4A06-A415-...
>>I am getting this message when sending using System.Net.Mail... I have
>> attached the print screen and here is the complete code:
>>
>> NetworkCredential network_credential = new
>> NetworkCredential("", "xxxxxx");
>> MailMessage mail_message = new MailMessage();
>> // SmtpClient smtp_client = new SmtpClient("localhost");
>> SmtpClient smtp_client = new
>> SmtpClient("smtp.zatoor.com");
>> smtp_client.UseDefaultCredentials = false;
>> smtp_client.Port = 25;
>> smtp_client.Credentials = network_credential;
>>
>> string html_message = null;
>>
>> html_message = "<html>";
>> html_message += "<head>";
>> html_message += "<meta http-equiv=Content-Type
>> content='text/html; charset=windows-1252'>";
>> html_message += "</head>";
>> html_message += "<body>";
>> html_message += "Thank you for registering with zatoor.com
>> and welcome to the world of free classifieds. We hope you will enjoy
>> using
>> our website.";
>> html_message += "<br>";
>> html_message += "<br><br>";
>> html_message += "zatoor.com Team";
>> html_message += "</body>";
>> html_message += "</html>";
>>
>> mail_message.From = new MailAddress("",
>> "zatoor.com");
>> mail_message.To.Add(txtEmailAddress.Text);
>> mail_message.CC.Add("");
>> // mail_message.Priority = MailPriority.High;
>> mail_message.IsBodyHtml = true;
>> mail_message.Subject = "welcome to zatoor.com";
>> mail_message.Body = html_message;
>>
>> mail_message.DeliveryNotificationOptions =
>> DeliveryNotificationOptions.OnFailure;
>>
>> smtp_client.Send(mail_message);
>>

>
>


 
Reply With Quote
 
 
 
 
Patrice
Guest
Posts: n/a
 
      07-19-2007
AFAIK this message is not produced by the DOTNET framework but by a third
party product that blocks the message you try to send for some reason.. In
this message you have a "Learn more" link that you could click to see why
this third party software choosed to block this transmission.

So for now it looks like to me this is not at all related to a programming
issue but to a third party software (firewall, antivirus ?)

Or is this that your mail provider replaced the screenshot by a message of
its own - Generally just reproducing the text should be enough. The
message I see is the "This message has been blocked for your safety"" whih
is not a DOTNET message...

--
Patrice

"Jassim Rahma" <> a écrit dans le message de news:
...
> can you please expian what do you mean?
>
>
>
> "Patrice" <http://www.chez.com/scribe/> wrote in message
> news:...
>> Have you tried to click on "Learn more" ???!!!
>>
>> It looks like you are using a software (not sure if this is a server side
>> firewall software or if you try to read the message in a client) that
>> consider this as a potential threat. IMO your best is to look for support
>> at this third party product site as it looks like this issue is not
>> related to .NET...
>>
>> --
>> Patrice
>>
>> "Jassim Rahma" <> a écrit dans le message de news:
>> F12C8C18-20DE-4A06-A415-...
>>>I am getting this message when sending using System.Net.Mail... I have
>>> attached the print screen and here is the complete code:
>>>
>>> NetworkCredential network_credential = new
>>> NetworkCredential("", "xxxxxx");
>>> MailMessage mail_message = new MailMessage();
>>> // SmtpClient smtp_client = new SmtpClient("localhost");
>>> SmtpClient smtp_client = new
>>> SmtpClient("smtp.zatoor.com");
>>> smtp_client.UseDefaultCredentials = false;
>>> smtp_client.Port = 25;
>>> smtp_client.Credentials = network_credential;
>>>
>>> string html_message = null;
>>>
>>> html_message = "<html>";
>>> html_message += "<head>";
>>> html_message += "<meta http-equiv=Content-Type
>>> content='text/html; charset=windows-1252'>";
>>> html_message += "</head>";
>>> html_message += "<body>";
>>> html_message += "Thank you for registering with
>>> zatoor.com
>>> and welcome to the world of free classifieds. We hope you will enjoy
>>> using
>>> our website.";
>>> html_message += "<br>";
>>> html_message += "<br><br>";
>>> html_message += "zatoor.com Team";
>>> html_message += "</body>";
>>> html_message += "</html>";
>>>
>>> mail_message.From = new MailAddress("",
>>> "zatoor.com");
>>> mail_message.To.Add(txtEmailAddress.Text);
>>> mail_message.CC.Add("");
>>> // mail_message.Priority = MailPriority.High;
>>> mail_message.IsBodyHtml = true;
>>> mail_message.Subject = "welcome to zatoor.com";
>>> mail_message.Body = html_message;
>>>
>>> mail_message.DeliveryNotificationOptions =
>>> DeliveryNotificationOptions.OnFailure;
>>>
>>> smtp_client.Send(mail_message);
>>>

>>
>>

>



 
Reply With Quote
 
Jassim Rahma
Guest
Posts: n/a
 
      07-19-2007
but I am not getting this problem when sending to yahoo address?!! it only
shows when sending to hotmail? any parameters I should set in order to make
the email trusted?



"Patrice" <http://www.chez.com/scribe/> wrote in message
news:...
> AFAIK this message is not produced by the DOTNET framework but by a third
> party product that blocks the message you try to send for some reason.. In
> this message you have a "Learn more" link that you could click to see why
> this third party software choosed to block this transmission.
>
> So for now it looks like to me this is not at all related to a programming
> issue but to a third party software (firewall, antivirus ?)
>
> Or is this that your mail provider replaced the screenshot by a message of
> its own - Generally just reproducing the text should be enough. The
> message I see is the "This message has been blocked for your safety"" whih
> is not a DOTNET message...
>
> --
> Patrice
>
> "Jassim Rahma" <> a écrit dans le message de news:
> ...
>> can you please expian what do you mean?
>>
>>
>>
>> "Patrice" <http://www.chez.com/scribe/> wrote in message
>> news:...
>>> Have you tried to click on "Learn more" ???!!!
>>>
>>> It looks like you are using a software (not sure if this is a server
>>> side
>>> firewall software or if you try to read the message in a client) that
>>> consider this as a potential threat. IMO your best is to look for
>>> support
>>> at this third party product site as it looks like this issue is not
>>> related to .NET...
>>>
>>> --
>>> Patrice
>>>
>>> "Jassim Rahma" <> a écrit dans le message de news:
>>> F12C8C18-20DE-4A06-A415-...
>>>>I am getting this message when sending using System.Net.Mail... I have
>>>> attached the print screen and here is the complete code:
>>>>
>>>> NetworkCredential network_credential = new
>>>> NetworkCredential("", "xxxxxx");
>>>> MailMessage mail_message = new MailMessage();
>>>> // SmtpClient smtp_client = new SmtpClient("localhost");
>>>> SmtpClient smtp_client = new
>>>> SmtpClient("smtp.zatoor.com");
>>>> smtp_client.UseDefaultCredentials = false;
>>>> smtp_client.Port = 25;
>>>> smtp_client.Credentials = network_credential;
>>>>
>>>> string html_message = null;
>>>>
>>>> html_message = "<html>";
>>>> html_message += "<head>";
>>>> html_message += "<meta http-equiv=Content-Type
>>>> content='text/html; charset=windows-1252'>";
>>>> html_message += "</head>";
>>>> html_message += "<body>";
>>>> html_message += "Thank you for registering with
>>>> zatoor.com
>>>> and welcome to the world of free classifieds. We hope you will enjoy
>>>> using
>>>> our website.";
>>>> html_message += "<br>";
>>>> html_message += "<br><br>";
>>>> html_message += "zatoor.com Team";
>>>> html_message += "</body>";
>>>> html_message += "</html>";
>>>>
>>>> mail_message.From = new MailAddress("",
>>>> "zatoor.com");
>>>> mail_message.To.Add(txtEmailAddress.Text);
>>>> mail_message.CC.Add("");
>>>> // mail_message.Priority = MailPriority.High;
>>>> mail_message.IsBodyHtml = true;
>>>> mail_message.Subject = "welcome to zatoor.com";
>>>> mail_message.Body = html_message;
>>>>
>>>> mail_message.DeliveryNotificationOptions =
>>>> DeliveryNotificationOptions.OnFailure;
>>>>
>>>> smtp_client.Send(mail_message);
>>>>
>>>
>>>

>>

>
>


 
Reply With Quote
 
Patrice
Guest
Posts: n/a
 
      07-20-2007
Don't know. Once again for now it doesn't look to me this is a problem at
the DOTNET framework level.

Don't you have a window title or something that could tell you what is the
product that display this message ? Don't you know if this looks like
screens displayed by your antivirus, firewall software etc... Don't you see
a productname somewhere ?

"Jassim Rahma" <> a écrit dans le message de news:
35430664-840E-460A-ACEC-...
> but I am not getting this problem when sending to yahoo address?!! it only
> shows when sending to hotmail? any parameters I should set in order to
> make the email trusted?
>
>
>
> "Patrice" <http://www.chez.com/scribe/> wrote in message
> news:...
>> AFAIK this message is not produced by the DOTNET framework but by a third
>> party product that blocks the message you try to send for some reason..
>> In this message you have a "Learn more" link that you could click to see
>> why this third party software choosed to block this transmission.
>>
>> So for now it looks like to me this is not at all related to a
>> programming issue but to a third party software (firewall, antivirus ?)
>>
>> Or is this that your mail provider replaced the screenshot by a message
>> of its own - Generally just reproducing the text should be enough.
>> The message I see is the "This message has been blocked for your safety""
>> whih is not a DOTNET message...
>>
>> --
>> Patrice
>>
>> "Jassim Rahma" <> a écrit dans le message de news:
>> ...
>>> can you please expian what do you mean?
>>>
>>>
>>>
>>> "Patrice" <http://www.chez.com/scribe/> wrote in message
>>> news:...
>>>> Have you tried to click on "Learn more" ???!!!
>>>>
>>>> It looks like you are using a software (not sure if this is a server
>>>> side
>>>> firewall software or if you try to read the message in a client) that
>>>> consider this as a potential threat. IMO your best is to look for
>>>> support
>>>> at this third party product site as it looks like this issue is not
>>>> related to .NET...
>>>>
>>>> --
>>>> Patrice
>>>>
>>>> "Jassim Rahma" <> a écrit dans le message de news:
>>>> F12C8C18-20DE-4A06-A415-...
>>>>>I am getting this message when sending using System.Net.Mail... I have
>>>>> attached the print screen and here is the complete code:
>>>>>
>>>>> NetworkCredential network_credential = new
>>>>> NetworkCredential("", "xxxxxx");
>>>>> MailMessage mail_message = new MailMessage();
>>>>> // SmtpClient smtp_client = new
>>>>> SmtpClient("localhost");
>>>>> SmtpClient smtp_client = new
>>>>> SmtpClient("smtp.zatoor.com");
>>>>> smtp_client.UseDefaultCredentials = false;
>>>>> smtp_client.Port = 25;
>>>>> smtp_client.Credentials = network_credential;
>>>>>
>>>>> string html_message = null;
>>>>>
>>>>> html_message = "<html>";
>>>>> html_message += "<head>";
>>>>> html_message += "<meta http-equiv=Content-Type
>>>>> content='text/html; charset=windows-1252'>";
>>>>> html_message += "</head>";
>>>>> html_message += "<body>";
>>>>> html_message += "Thank you for registering with
>>>>> zatoor.com
>>>>> and welcome to the world of free classifieds. We hope you will enjoy
>>>>> using
>>>>> our website.";
>>>>> html_message += "<br>";
>>>>> html_message += "<br><br>";
>>>>> html_message += "zatoor.com Team";
>>>>> html_message += "</body>";
>>>>> html_message += "</html>";
>>>>>
>>>>> mail_message.From = new MailAddress("",
>>>>> "zatoor.com");
>>>>> mail_message.To.Add(txtEmailAddress.Text);
>>>>> mail_message.CC.Add("");
>>>>> // mail_message.Priority = MailPriority.High;
>>>>> mail_message.IsBodyHtml = true;
>>>>> mail_message.Subject = "welcome to zatoor.com";
>>>>> mail_message.Body = html_message;
>>>>>
>>>>> mail_message.DeliveryNotificationOptions =
>>>>> DeliveryNotificationOptions.OnFailure;
>>>>>
>>>>> smtp_client.Send(mail_message);
>>>>>
>>>>
>>>>
>>>

>>
>>

>



 
Reply With Quote
 
Jassim Rahma
Guest
Posts: n/a
 
      07-20-2007
no, it dosn't show any name


"Patrice" <http://www.chez.com/scribe/> wrote in message
news:...
> Don't know. Once again for now it doesn't look to me this is a problem at
> the DOTNET framework level.
>
> Don't you have a window title or something that could tell you what is the
> product that display this message ? Don't you know if this looks like
> screens displayed by your antivirus, firewall software etc... Don't you
> see a productname somewhere ?
>
> "Jassim Rahma" <> a écrit dans le message de news:
> 35430664-840E-460A-ACEC-...
>> but I am not getting this problem when sending to yahoo address?!! it
>> only shows when sending to hotmail? any parameters I should set in order
>> to make the email trusted?
>>
>>
>>
>> "Patrice" <http://www.chez.com/scribe/> wrote in message
>> news:...
>>> AFAIK this message is not produced by the DOTNET framework but by a
>>> third party product that blocks the message you try to send for some
>>> reason.. In this message you have a "Learn more" link that you could
>>> click to see why this third party software choosed to block this
>>> transmission.
>>>
>>> So for now it looks like to me this is not at all related to a
>>> programming issue but to a third party software (firewall, antivirus ?)
>>>
>>> Or is this that your mail provider replaced the screenshot by a message
>>> of its own - Generally just reproducing the text should be enough.
>>> The message I see is the "This message has been blocked for your
>>> safety"" whih is not a DOTNET message...
>>>
>>> --
>>> Patrice
>>>
>>> "Jassim Rahma" <> a écrit dans le message de news:
>>> ...
>>>> can you please expian what do you mean?
>>>>
>>>>
>>>>
>>>> "Patrice" <http://www.chez.com/scribe/> wrote in message
>>>> news:...
>>>>> Have you tried to click on "Learn more" ???!!!
>>>>>
>>>>> It looks like you are using a software (not sure if this is a server
>>>>> side
>>>>> firewall software or if you try to read the message in a client) that
>>>>> consider this as a potential threat. IMO your best is to look for
>>>>> support
>>>>> at this third party product site as it looks like this issue is not
>>>>> related to .NET...
>>>>>
>>>>> --
>>>>> Patrice
>>>>>
>>>>> "Jassim Rahma" <> a écrit dans le message de news:
>>>>> F12C8C18-20DE-4A06-A415-...
>>>>>>I am getting this message when sending using System.Net.Mail... I have
>>>>>> attached the print screen and here is the complete code:
>>>>>>
>>>>>> NetworkCredential network_credential = new
>>>>>> NetworkCredential("", "xxxxxx");
>>>>>> MailMessage mail_message = new MailMessage();
>>>>>> // SmtpClient smtp_client = new
>>>>>> SmtpClient("localhost");
>>>>>> SmtpClient smtp_client = new
>>>>>> SmtpClient("smtp.zatoor.com");
>>>>>> smtp_client.UseDefaultCredentials = false;
>>>>>> smtp_client.Port = 25;
>>>>>> smtp_client.Credentials = network_credential;
>>>>>>
>>>>>> string html_message = null;
>>>>>>
>>>>>> html_message = "<html>";
>>>>>> html_message += "<head>";
>>>>>> html_message += "<meta http-equiv=Content-Type
>>>>>> content='text/html; charset=windows-1252'>";
>>>>>> html_message += "</head>";
>>>>>> html_message += "<body>";
>>>>>> html_message += "Thank you for registering with
>>>>>> zatoor.com
>>>>>> and welcome to the world of free classifieds. We hope you will enjoy
>>>>>> using
>>>>>> our website.";
>>>>>> html_message += "<br>";
>>>>>> html_message += "<br><br>";
>>>>>> html_message += "zatoor.com Team";
>>>>>> html_message += "</body>";
>>>>>> html_message += "</html>";
>>>>>>
>>>>>> mail_message.From = new MailAddress("",
>>>>>> "zatoor.com");
>>>>>> mail_message.To.Add(txtEmailAddress.Text);
>>>>>> mail_message.CC.Add("");
>>>>>> // mail_message.Priority = MailPriority.High;
>>>>>> mail_message.IsBodyHtml = true;
>>>>>> mail_message.Subject = "welcome to zatoor.com";
>>>>>> mail_message.Body = html_message;
>>>>>>
>>>>>> mail_message.DeliveryNotificationOptions =
>>>>>> DeliveryNotificationOptions.OnFailure;
>>>>>>
>>>>>> smtp_client.Send(mail_message);
>>>>>>
>>>>>
>>>>>
>>>>
>>>
>>>

>>

>
>


 
Reply With Quote
 
Patrice
Guest
Posts: n/a
 
      07-20-2007
I gave this a look. It looks like you might as well have this when you read
this mail in hotmail ? What didn't you said that ?!

Click on Open Message to read the mail. Click On "Learn more" or the FAQ to
find out why Hotmail classified this message as potentially dangerous. For
example an option could simply black HTML mails (that could contains
JavaScript exploits) ?

So it looks like an hotmail issue. Nothing to do with DOTNET IMO.

--
Patrice

"Jassim Rahma" <> a écrit dans le message de news:
FF331512-9F1A-49F6-AC24-...
> no, it dosn't show any name
>
>
> "Patrice" <http://www.chez.com/scribe/> wrote in message
> news:...
>> Don't know. Once again for now it doesn't look to me this is a problem at
>> the DOTNET framework level.
>>
>> Don't you have a window title or something that could tell you what is
>> the product that display this message ? Don't you know if this looks like
>> screens displayed by your antivirus, firewall software etc... Don't you
>> see a productname somewhere ?
>>
>> "Jassim Rahma" <> a écrit dans le message de news:
>> 35430664-840E-460A-ACEC-...
>>> but I am not getting this problem when sending to yahoo address?!! it
>>> only shows when sending to hotmail? any parameters I should set in order
>>> to make the email trusted?
>>>
>>>
>>>
>>> "Patrice" <http://www.chez.com/scribe/> wrote in message
>>> news:...
>>>> AFAIK this message is not produced by the DOTNET framework but by a
>>>> third party product that blocks the message you try to send for some
>>>> reason.. In this message you have a "Learn more" link that you could
>>>> click to see why this third party software choosed to block this
>>>> transmission.
>>>>
>>>> So for now it looks like to me this is not at all related to a
>>>> programming issue but to a third party software (firewall, antivirus ?)
>>>>
>>>> Or is this that your mail provider replaced the screenshot by a message
>>>> of its own - Generally just reproducing the text should be enough.
>>>> The message I see is the "This message has been blocked for your
>>>> safety"" whih is not a DOTNET message...
>>>>
>>>> --
>>>> Patrice
>>>>
>>>> "Jassim Rahma" <> a écrit dans le message de news:
>>>> ...
>>>>> can you please expian what do you mean?
>>>>>
>>>>>
>>>>>
>>>>> "Patrice" <http://www.chez.com/scribe/> wrote in message
>>>>> news:...
>>>>>> Have you tried to click on "Learn more" ???!!!
>>>>>>
>>>>>> It looks like you are using a software (not sure if this is a server
>>>>>> side
>>>>>> firewall software or if you try to read the message in a client) that
>>>>>> consider this as a potential threat. IMO your best is to look for
>>>>>> support
>>>>>> at this third party product site as it looks like this issue is not
>>>>>> related to .NET...
>>>>>>
>>>>>> --
>>>>>> Patrice
>>>>>>
>>>>>> "Jassim Rahma" <> a écrit dans le message de news:
>>>>>> F12C8C18-20DE-4A06-A415-...
>>>>>>>I am getting this message when sending using System.Net.Mail... I
>>>>>>>have
>>>>>>> attached the print screen and here is the complete code:
>>>>>>>
>>>>>>> NetworkCredential network_credential = new
>>>>>>> NetworkCredential("", "xxxxxx");
>>>>>>> MailMessage mail_message = new MailMessage();
>>>>>>> // SmtpClient smtp_client = new
>>>>>>> SmtpClient("localhost");
>>>>>>> SmtpClient smtp_client = new
>>>>>>> SmtpClient("smtp.zatoor.com");
>>>>>>> smtp_client.UseDefaultCredentials = false;
>>>>>>> smtp_client.Port = 25;
>>>>>>> smtp_client.Credentials = network_credential;
>>>>>>>
>>>>>>> string html_message = null;
>>>>>>>
>>>>>>> html_message = "<html>";
>>>>>>> html_message += "<head>";
>>>>>>> html_message += "<meta http-equiv=Content-Type
>>>>>>> content='text/html; charset=windows-1252'>";
>>>>>>> html_message += "</head>";
>>>>>>> html_message += "<body>";
>>>>>>> html_message += "Thank you for registering with
>>>>>>> zatoor.com
>>>>>>> and welcome to the world of free classifieds. We hope you will enjoy
>>>>>>> using
>>>>>>> our website.";
>>>>>>> html_message += "<br>";
>>>>>>> html_message += "<br><br>";
>>>>>>> html_message += "zatoor.com Team";
>>>>>>> html_message += "</body>";
>>>>>>> html_message += "</html>";
>>>>>>>
>>>>>>> mail_message.From = new
>>>>>>> MailAddress("",
>>>>>>> "zatoor.com");
>>>>>>> mail_message.To.Add(txtEmailAddress.Text);
>>>>>>> mail_message.CC.Add("");
>>>>>>> // mail_message.Priority = MailPriority.High;
>>>>>>> mail_message.IsBodyHtml = true;
>>>>>>> mail_message.Subject = "welcome to zatoor.com";
>>>>>>> mail_message.Body = html_message;
>>>>>>>
>>>>>>> mail_message.DeliveryNotificationOptions =
>>>>>>> DeliveryNotificationOptions.OnFailure;
>>>>>>>
>>>>>>> smtp_client.Send(mail_message);
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>>
>>>

>>
>>

>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
\SystemRoot\SysWow64\Drivers\?????.SYS has been blocked from loading due to incompatibility with this system. Skybuck Flying Windows 64bit 1 05-27-2007 04:48 AM
"This Object Has Been Blocked" Harm Potter Firefox 5 08-15-2006 07:05 PM
YOUR MESSAGE HAS BEEN BLOCKED mailadmin@bgopen.net Python 0 04-24-2006 11:17 AM
The printing has been stopped and this job has been add to the queu? dejola Computer Support 6 12-30-2005 03:26 AM
ZoneAlarm has detected a problem with your installation, and therefore has restricted Internet access from your machine for your protection. Don’t panic A Teuchter Computer Support 2 05-19-2005 09:20 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57