Your Ad Here

Monday, December 22, 2008

How to easily speed up your BSNL BroadBand Connection

Tip 1: One of the major problems with BSNL Dataone Broadband connection is the DNS servers they provide by default. Most of the time they are very slow and sometimes they fail to respond. I noticed that I am starting to spend a significant amount of time in DNS resolution with Dataone connection, often it is larger than the time it takes to actually get the reponse. Here is a simple solution to significantly speed up your DNS resolution.

Open up the network connection profile and edit TCP/IP settings. In the DNS server address fields, specify the following DNS server addresses: 208.67.222.222 and 208.67.220.220
Disconnect the connection and then connect again. You are done.

This specifies third party DNS servers which are significantly faster than BSNL Dataone’s DNS servers.

Note: The service is provided by OpenDNS.

Tip 2: Firefox users can use FlashBlock extension to prevent downloading of Flash content by default, thereby significantly speeding up browsing experience. You can click on the placeholder icon to display the original Flash content any time. This is more of a passive tip in that reduces data usage to improve your overall experience.

Tip 3: You can try to increase your broadband bandwidth tweaking the TCP/IP parameters. The process is simplified by using TCPOptimizer, a free tool. It helped me a lot but your mileage may vary.



Also, there's nice little tweak for XP. Microsoft reserve 20% of your available bandwidth for their own purposes. This also affects your Broadband peformance. You can get back this 20% as follows:

Click Start-->Run-->type "gpedit.msc" without the "
This opens the group policy editor. Then go to:
Local Computer Policy-->Computer Configuration-->Administrative Templates-->Network-->QOS Packet Scheduler-->
Limit Reservable Bandwidth
Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the 'Explain' tab :

"By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this
setting to override the default."
So the trick is to ENABLE reservable bandwidth, then set it to ZERO.
This will allow the system to reserve nothing, rather than the default 20%.

Wednesday, December 17, 2008

Auto Shutdown PC With Timer, No Softwares Required

METHOD # 1


How To Make A Shutdown Timer!

Step 1:

Right click on your desktop and choose "New=>shortcuts".

Step 2:

In the box that says "Type the location of the shortcut",
type in "shutdown -s -t 3600" without the quotation marks and click next.

Note: 3600 are the amount of seconds before your computer shuts down. So , 60secs*60mins=3600secs.

Step 3:

Make up a name for the shortcut and you're done.
You can change the icon by right c=>properities=>change icon=>browse.

To abort

To make an abort key to stop the shutdown timer just create another shortcut and make
the "location of the shortcut" to " shutdown -a" without the quotes.


METHOD # 2

Here is another trick to shutdown at a specific time, for example you wish to shutdown at 11:35am. Type this in

start=>Run

Type Code: at 11:35 shutdown -s

to abort

Code:

shutdown -a

take note: all time are in 24hr, example u would like to shutdown at 8:30pm, you should type

"at 20:30 shutdown -s" without quote


METHOD # 3

you can use a batch for that as well it makes it easier to use
just run the batch and enter the time you want it to shutdown

shutdown.bat
Type Code:
@echo off
title Scheduled Shutdown Batch Example by chacha1234
color A
echo Enter Time To Shutdown (example 19:30)
set /p stime=
cls
at %stime% ""shutdown -s -t 00"" >nul
echo Your PC Will Auto Shutdown At %stime%
echo Press Any Key To Exit
pause >nul
exit