Skip to main content

not able to open microsoft website/microsoft website blocked/Microsoft website not opening

Not able to access any antivirus websites or even microsoft website, Most of the people have problem in opening the website of microsoft or any other antivirus vendors website.

Generally people think that this is a virus attack or a  misconfiguration in browser/System which block the Microsoft website

I will suggest a simple workaround for this,

I have tried this in windows XP not sure about other operating systems, Please check it and let me know

Click on Start >> Administrative tools>>Services


Select services from the listing 
  
Select DNS client service, If it is started Right Click on it and select Stop.
To Stop the Service.

Next open a browser and type http://www.microsoft.com
This will open the open microsoft website.







Note: this is just a work around.Please scan your system for virus or any other threats. This blog is not responsible for any effects after the steps, Please do it at your own risk.











Comments

Popular posts from this blog

Static Keyword in C#, unleashing Static keyword in C#

What is Static keyword in C# “Static” keyword can be used for declaring a static member . The keyword Static can be applied to the Classes, field, method, properties, operator, event and constructors. Methods and variable  which we use as static doesn't need an instance to be created of a class. Example of static keyword class testclass {     public static int statint;     public static void squareroot(); } we can call the above static method and variable without creating the instance of the class How to call a static method  testclass.squareroot(); apart from this the static method can use only the static variables of same class.

LMS

There are many opensource LMS packages built in java and other languages. Check the list below Docebo eFront Dokeos Claroline ATutor ILIAS OLAT Sakai .LRN openelms Ganesha Choose the best

delete service in windows server 2008/server 2003/xp/ vista

How to delete a service in windows server 2008/server 2003/xp/ vista. Note: There are some services which are system specific and cannot be stopped, Be careful while deleting a service The command to delete the service is "sc delete " The above command executes in DOS prompt.  An error will will come when you execute this command: "[SC] OpenService FAILED 5:" To remove this error and to execute the command in good manner.  When you open the command prompt , run it as administrator and then type : "sc delete " This is how to delete the service Start/Stop the service  You  can also start the service by Control panel-->administrative tools--> Services Right Click on the selected service and start/stop it Ps Note: Before deleting a service in windows server 2008/server 2003/xp/ vista you should confirm the name of service and research in google the effect after you  delete a service. It is difficult to recall the service back...