12
Oct

Increase Your Internet Speed

   Posted by: Geek   in Hacks, Internet, Tricks, Windows

 

REGISTRY TWEAKS

 

1. Increase bandwidth by tweaking QoS in Windows XP Pro

The following tweak applies only to Windows XP Professional edition.

The default system behavior is that all 100% bandwidth is available, however, if there is a running application that indicates to the OS it needs to send high priority/real time data, then as long as it has the socket open, Windows XP will restrict “best effort” traffic to 80% of the bandwidth so that high priority traffic can be accommodated. Basically, applications can make this request to the operating system for QoS support using the QoS application programming interfaces (APIs) in Windows and this only applies if a specific app is requesting QoS.

If you’d like to change how much bandwidth is reserved for QoS (the default is 20% of the total bandwidth), do the following:

1. Make sure you’re logged in as “Administrator” (not just any account with admin privileges).
2. Navigate to START>Run and type: gpedit.msc
3. Navigate to Local Computer Policy > Administrative Templates > Network > QOS Packet Scheduler
4. In the right window, double-click the limit reservable bandwidth setting
5. On the setting tab, check the enabled setting.
6. Where it says “Bandwidth limit %”, change it to read 0 (or whatever percentage you want to reserve for high priority QoS data)
7. Click OK, close gpedit.msc

Under START > My Computer > My Network Connections > View Network Connections, right-click on your connection and under Properties (where it lists your protocols), make sure QOS Packet Scheduler is enabled.



The tweak desribed below helps boost priority for DNS & hostname resolution in general. What this means is, it helps web pages load faster, and has negligible effect on downloads (not counting the couple of ms gain with the host resolution at connect-time).

Edit Windows Registry using Regedit (Start > Run > type: regedit). As always, backup your Registry before making any changes so you can revert to the previous state if you don’t like the results.

2.Host Resolution Priority Tweak

Windows 2k/XP

First, open the Windows Registry using Regedit, and (after backing up) navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider

Note the following lines (all hex dwords):
Class = 008 (8) - indicates that TCP/IP is a name service provider, don’t change.

LocalPriority = 1f3 (499) - local names cache
HostsPriority = 1f4 (500) - the HOSTS file
DnsPriority = 7d0 (2000) - DNS
NetbtPriority = 7d1 (2001) - NetBT name-resolution, including WINS

What we’re aiming to do is increase the priority of the last 4 settings, while keeping their order. The valid range is from -32768 to +32767 and lower numbers mean higher priority compared to other services. What we’re aiming at is lower numbers without going to extremes, something like what’s shown below should work well:

Change the “Priority” lines to:
LocalPriority = 005 (5) - local names cache
HostsPriority = 006 (6) - the HOSTS file
DnsPriority = 007 (7) - DNS
NetbtPriority = 008 (8) - NetBT name-resolution, including WINS

 

Windows 9x/ME

The tweak is essentialy the same as in Windows 2000/XP, just the location in the Registry is slightly different. For a more detailed description see the Windows 2000/XP section above.

Open the Windows Registry using Regedit, and (after backing up) navigate to:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\MSTCP\ServiceProvider

You should see the following settings:
Class=hex:08,00,00,00

LocalPriority=hex:f3,01,00,00
HostsPriority=hex:f4,01,00,00
DnsPriority=hex:d0,07,00,00
NetbtPriority=hex:d1,07,00,00

The “priority” lines should be changed to:
LocalPriority=hex:05,00,00,00
HostsPriority=hex:06,00,00,00
DnsPriority=hex:07,00,00,00
NetbtPriority=hex:08,00,00,00

Reboot for changes to take effect.


 

 

In addition to the tweaks already covered in Win 2k/XP Registry Tweaks and More Win 2k/XP Tweaks, the Windows XP Service Pack 2 introduces a few new issues covered in the article below. Please make sure you understand what you are doing before making any changes to your Operating System. Note the information below only applies to Windows XP Service Pack 2.


3.Remove the limit on TCP connection attempts

Windws XP SP2 introduces a few new twists to TCP/IP in order to babysit users and “reduce the threat” of worms spreading fast without control. In one such attempt, the devs seem to have limited the number of possible TCP connection attempts per second to 10 (from unlimited in SP1). This argumentative feature can possibly affect server and P2P programs that need to open many outbound connections at the same time.

With the new implementation, if a P2P or some other network program attempts to connect to 100 sites at once, it would only be able to connect to 10 per second, so it would take it 10 seconds to reach all 100. In addition, even though the setting was registry editable in XP SP1, it is now only possible to edit by changing it directly in the system file tcpip.sys. To make matters worse, that file is in use, so you also need to be in Safe mode in order to edit it.

You only need to worry about the number of connection attempts per second if you have noticed a slowdown in network programs requiring a number of connections opened at once. You can check if you’re hitting this limit from the Event Viewer, under System - look for TCP/IP Warnings saying: “TCP/IP has reached the security limit imposed on the number of concurrent TCP connect attempts”. Keep in mind this is a cap only on incomplete outbound connect attempts per second, not total connections. Still, running servers and P2P programs can definitely be affected by this new limitation. Use the fix as you see fit.

To change or remove the limit, you can use the following program:

Event ID 4226 Patcher v2.11

- A patching program for removing or changing the limit imposed on connection attempts in SP2. The patcher has the ability to restore tcpip.sys back to the original… Still, you might want to back up tcpip.sys, use it at your own risk. The author of this patch can be reached @ http://www.lvllord.de/


 

 

4. Other settings for Windows 2000 / XP

Windows 2000 & XP, unlike NT supports large windows as described in RFC1323 ( the ‘RcvWindow’ has a maximum value of 2**30 rather than 64K), and includes some other improvements over its predecessors you can use to speed up any TCP/IP transfers. , the descriptions and other options are added to provide you with better understanding and enable you to customize your settings.

 

All the following entries, unless otherwise noted should be placed in the Windows 2000/XP Registry under the key

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters

 

TCPWindowSize

The value of TCP Window in the Windows 2000 Registry is DWORD, representing number of bytes, with range from 0 to 2^30. The recommended values (in red) optimize TCP for any high speed Internet connection and work best in most cases, however if you’d like to use a custom value follow these guidelines:

For best results, the TCPWindow should be a multiple of MSS (Maximum Segment Size). MSS is generally MTU - 40, where MTU (Maximum Transmission Unit) is the largest packet size that can be transmitted. MTU is usually 1500 (1492 for PPPoE connections). To determine the MTU value of your ISP, check out the Advanced Registry Editing section of our site.

There are three places in the Windows 2000 Registry where you can add the TCP Window parameter.

HKLM/SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
GlobalMaxTcpWindowSize=”256960″ (DWORD, number of bytes) Valid range is from MSS to 2^30. Add the value as a decimal. Note: For best results RWIN has to be a multiple of MSS lower than 65535 times a scale factor that’s a power of 2, i.e. 44 x 1460 = 64240 x 2^2 = 256960. If you choose to use a RWIN lower than 65535, you can simply make it multiple of MSS and turn scaling off (Tcp1323Opts=0)

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
TcpWindowSize=”256960″ (DWORD, number of bytes) Valid range is from MSS to 2^30. Add the value as a decimal. TcpWindowSize can also exist under TcpipParametersInterface - if added at this location, it overrides the global setting for this particular . Note (10/20/00): Seems MS has found another bug in Windows 2000, the TCPWindowSize should be configured with the global setting (GlobalMaxTcpWindowsSize) rather than this one - Q263088

Note: For best results RWIN has to be a multiple of MSS lower than 65535 times a scale factor that’s a power of 2, i.e. 44 x 1460 = 64240 x 2^2 = 256960. If you choose to use a RWIN lower than 65535, you can simply make it multiple of MSS and turn scaling off (Tcp1323Opts=0)

 

 

Tcp1323Opts

Tcp1323Opts is a necessary setting in order to enable Large TCPWindow support as described in RFC 1323. Without this parameter, the TCPWindow is limited to 64K.

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
Tcp1323Opts=”1″ (DWORD, recommended setting is 1. The possible settings are 0 - Disable RFC 1323 options, 1 - Window scaling but no Timestamp options, 3 - Window scaling and Time stamp options.)

Note: Tcp1323Opts=”3″ might help in some cases where there is increased packet loss, however generally you’ll achieve better throughput with Tcp1323Opts=”1″, since Timestamps add 12 bytes to the header of each packet.

 

 

DefaultTTL

DefaultTTL determines the time in seconds and the number of hops a packet lives. While it does not directly affect speed, a larger value increases the amount of time it takes for a packet to be considered lost, discarded and retransmitted. A value that’s too small can cause packets to be unable to reach distant servers at all.

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
DefaultTTL=”64″ (DWORD, recommended setting is 64. Other settings that are widely used are 128 and 32)

 

 

EnablePMTUDiscovery

When set to 1 (True), TCP attempts to discover MTU automatically over the path to a remote host. Setting this parameter to 0 causes MTU to default to 576 which reduces overall performance over high speed connections. Note that this setting is different than our Windows 9x recommendation.

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
EnablePMTUDiscovery=”1″ (DWORD - boolean, valid settings are 0–>False and 1–>True. Many connections perform better with this entry at 1, however, if you prefer to set your upstream to send fixed 1500 packets, you might want to use 0 instead). When set at 1, establishing connections and initial transfer speed might slow down a bit, however you will get better throughput if somewhere in the path large packets need to be fragmented.

 

 

EnablePMTUBHDetect

Setting this parameter to 1 (True) enables “black hole” routers to be detected, however it also increases the maximum number of retransmissions for a given segment. In most cases you’d want to keep BHDetect to 0 (False).

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
EnablePMTUBHDetect=”0″ (DWORD - boolean, valid settings are 0–>False and 1–>True. Recommended setting is 0)

 

 

SackOpts

This parameter controls whether or not SACK (Selective Acknowledgement) support is enabled, as specified in RFC 2018. SACK is especially important for connections using large TCP Window sizes.

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
SackOpts=”1″ (DWORD - boolean, recommended setting is 1. Possible settings are 0 - No Sack options or 1 - Sack Option enabled).

 

 

TcpMaxDupAcks

This parameter determines the number of duplicate ACKs that must be received for the same sequence number of sent data before “fast retransmit” is triggered to resend the segment that has been dropped in transit.

HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
TcpMaxDupAcks=”2″ (DWORD - range 1-3, recommended setting is 2).




Patches

 

1. sguide_tweak_2k.zip
Description: Generic patch for Windows XP and Windows 2000 (all versions). This patch will optimize your TCP/IP Registry settings for high speed Internet connections. To install, extract the .inf file first, then double-click (or right-click on filename and choose install from the pull-down menu) and reboot for changes to take effect.

 

2.sguide_tweak_2k_pppoe.zip

Description: Generic patch for Windows XP/2000 and DSL connections using PPPoE. This patch will optimize your TCP/IP Registry settings for high speed Internet connections. It is specifically designed for PPPoE DSL connections. To install, extract the .inf file first, then double-click (or right-click on filename and choose install from the pull-down menu) and reboot for changes to take effect.


 

Web Patches - faster loading of Web Pages

The following patch increases Web page loading speed, by doubling the number of possible concurrent open connections. For example, imagine a web page has 20 images and some text - in order for your browser to get all these files, it opens 2 or 4 concurrent connections, depending on the Web server. Increasing the number of open connections allows for faster retrieving of the data. Please note that the patch sets some values outside of the HTML specs. If you decide to install it, backup your Registry first. Changes will take effect after you reboot. Download the patch appropriate for your OS:

OS: Windows 9x/ME

OS: Windows 2K/XP/2k3


Thanks to VENKI (From Warez-BB) for this useful article.


Rating: 0.0/10 (0 votes cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , , , , ,

 

nexus

 

nexus2

 

 

 

INSTALLATION SCREEN

nexus2

 

 

 

STARTUP SCREEN (SELECT MUSIC GENRE)

Nexus Radio 2.1

 

 

SELECT RADIO STATION INSIDE GENRE

nexus4

 

 

 

GET THE UTILITY SOFTWARE FROM THE SITE:  http://www.nexusradio.com/downloads/nexusradio/

DIRECT RAPIDSHARE LINK FOR SETUP FILE: nexusradio.rar

Rating: 0.0/10 (0 votes cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , , ,

Screamer Radio is a nice no frills tiny little program to tune into thousands of free online radio channels segregated as per genre, region and language.


(DOUBLE CLICK FOR FULL IMAGE)

 

You can also record and download the streaming music (settings can be configured, accordingly).

screamer_radio_2.jpg


Download from Author’s Website

Or

Screamer_Radio_0.42.rar

Live Links : 1/1
Reblog this post [with Zemanta]
Rating: 0.0/10 (0 votes cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , , , , , , ,

6
Oct

Delete Locked File And Folders In Windows

   Posted by: Geek   in Software, Windows

One commonly encountered problem while deleting files or folders in Windows is “Error Deleting File or Folder”.

This can be because of many reasons like folder could be in use or some malware/virus could be the reason for it.

Free Unlocker is a useful utility to help delete such files or folders.

Other errors that can be solved by this utility are:
- Cannot delete file: Access is denied
- There has been a sharing violation.
- The source or destination file may be in use.
- The file is in use by another program or user.
- Make sure the disk is not full or write-protected and that the file is not currently in use.

Once installed, Unlocker comes up whenever Windows refuses to delete, move or rename a file.
Alternatively you can also launch it from the Windows context menu. Right click on the folder and select Unlocker.

 

Unlocker is completly free of cost and is supported on Windows Vista as well.

 

Download Link

 

 

Rating: 0.0/10 (0 votes cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , ,

5
Oct

Turbo Speed Your Firefox

   Posted by: Geek   in Firefox, Internet, Productivity, Tricks

1. Type about:config in the address bar and then press Enter.

2. In the filter search bar type network.http.pipelining. Be sure the value field is set true,if not double-click to set true.

3. Go back to the filter search bar and type network.http.pipelining.maxrequests. Double-click this option and set its value to 8.

4. In the filter search bar and type network.http.proxy.pipelining. Once opened double-click on it and set it to true.

5. Type network.dns.disableIPv6 in the filter search bar and set this option to true by double clicking on it.

6. Right-click (Apple users ctrl-click) anywhere in the about:config window, select New and then Boolean from the pop-up menu. Then:

A. Enter content.interrupt.parsing in the New boolean value pop-up window and click OK

B. When prompted to choose the value for the new boolean, select true and click OK

7. Right-click (Apple users ctrl-click) anywhere in the about:config window, select New and then Integer from the pop-up menu.

A. Enter content.max.tokenizing.time in the New integer value pop-up window and click OK

B. You will be prompted to enter a value. Enter 2250000 and click OK.

8. Right-click (Apple users ctrl-click) anywhere in the about:config window, select New and then Integer from the pop-up menu.

A. Type content.notify.interval in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 750000 and click OK.

9. CONTENT NOTIFY ONTIMER

A. Right-click (Apple users ctrl-click) anywhere in the about:config window and select New and then Boolean from the pop-up menu.

B. Type content.notify.ontimer in the New boolean value pop-up window and click OK.

C. You will be prompted to choose the value for the new boolean. Select true and click OK.

10. Right-click (Apple users ctrl-click) anywhere in the about:config window and select New and then Integer from the pop-up menu.

A. Enter content.notify.backoffcount in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 5 and click OK.

11. Right-click (Apple users ctrl-click) anywhere in the about:config window and select New and then Integer from the pop-up menu.

A. Enter content.switch.threshold in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 750000 and click OK

12. Right-click (Apple users ctrl-click) anywhere in the about:config window and select New and then Integer from the pop-up menu.

A. Enter nglayout.initialpaint.delay in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 0 and click OK.

 

 

Restart your browser and note the difference.



Rating: 0.0/10 (0 votes cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , , ,



Method 1

If there’s an HD version of a video there’s usually a link for it below the video. Click to reload in HQ. (If no HD version is available you can try method 2 or 3)

 

 

Method 2

 

Find a Video you wanna Watch, for example:

http://in.youtube.com/watch?v=rpZtqBp5ED0

 

Add “&fmt=18″ in the Link-window without the ” ” right after the link, so you get:
http://in.youtube.com/watch?v=rpZtqBp5ED0&fmt=18

Press enter. It you will open the high quality version of your video.



 

Method 3 (Recommended)

 

Use firefox or opera.

Install greasemonkey extension (Get it from https://addons.mozilla.org/en-US/firefox/addon/748).

Install “YouTube Automatic Fmt=18 Adder” script. (Get it here http://userscripts.org/scripts/show/30082).

Now everytime video will open in HQ.

 

 

 

Rating: 0.0/10 (0 votes cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , ,

This trick is a simple MSN (Windows Live) hack that allows one to create account with any ID (Of course, one which is not registered before).

For example: legaldept@fbi.gov. usray@superstarstar.com or  munna@bhai. com (Anything is possible).

Chat with people/friends or mail them with your new id: confuse them, impress them or scare the sh*t out of them.

 

Simply use this link to register

 

EXAMPLE SCREENSHOT OF ONE SUCH REGISTERED ID

 

ID Proof

 

 

 

Rating: 10.0/10 (1 vote cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , ,

3
Oct

Turbo-Charge Your Presentation

   Posted by: Geek   in Office, Productivity, Tricks

ZoomIt is screen zoom and annotation tool for technical presentations that include application demonstrations. ZoomIt runs unobtrusively in the tray and activates with customizable hotkeys to zoom in on an area of the screen, move around while zoomed, and draw on the zoomed image. Zoomit is a windows tools to zoom into and draw freehand onto the desktop screen. ZoomIt works on all versions of Windows and you can use pen input for ZoomIt drawing on tablet PCs.

It  add an edge to your powerpoint or infact any other presentation. Lets see how.

Download and install zoomit. You will see configuration screen like below that allows you to assign hotkeys (shortcuts to launch specific functions)

 

options

 

Suppose you are giving a PowerPoint presentation to a large audience. You need to get your point across  some data but the guy on the seventh row can’t make it out. With a click of a mouse (or hotkey) you can now zoom in and focus on that part of the screen with the important information.

 

Normal Presentation

Normal presentation page

 

Zoomed presentation

Zoomed Presentation

 

Drawing onto the page

Drawing Done

 

 

Type “E” (erase) to erase last drawn figure.

Esc to zoom out.

Break Timer

This one is more of a countdown timer rolled into an alarm clock. You can get bit of a reminder help from it if you configure it to play sounds when the break time is up.

Voila you impress your audience or your clients.

Get the utility here.



Rating: 6.0/10 (1 vote cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , ,

2
Oct

Free PC to Phone International Calls

   Posted by: Geek   in Internet, VoIP

dialpad
dialpad

 

EVAPHONE provides Internet telephone calls for free.

Free VoIP service lets you make PC-to-phone free international calls.

No need to register and download any files!

All you need to do is to open website and enter the phone number you want to call in the EVAPHONE widget. After a short advertisement you’ll be connected!

Caveat: free calls are limited in duration in different countries from 15sec to 3min. (However uselful for those quick hellos.)

They also have paid plans but not very different from those offered by others.

 

 

Rating: 10.0/10 (1 vote cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: ,

site design of linked site

 

DETECTINVISIBLE is offering a service (free) to detect the buddies from your yahoo messenger list that stay Invisible on Yahoo Messenger.

As it says it’s not nice to spy on someone, especially on your friends. And if they are in Invisible Mode they probably have good reasons for that.

However it’s your decision if you want to check their status.

Supposedly the detector works for every version of Yahoo Messenger as of writing this post.

And yes the service is totally free. ;-)              Check this out.

 

Update: A few users have reported that the site gets broken every now and then. If you encounter an error try after some time.

 

Rating: 8.0/10 (1 vote cast)

[Post to Twitter] Tweet This

Scridb filter

Share/Save/Bookmark

Tags: , ,