Home

Advertisement

echipdesign - Increasing broadband connection [entries|archive|friends|userinfo]
echipdesign

[ userinfo | livejournal userinfo ]
[ archive | journal archive ]

Increasing broadband connection [Mar. 16th, 2007|11:04 pm]
Previous Entry Add to Memories Tell a Friend Next Entry

Increasing broadband connection

1.Increase bandwidth by tweaking QoS in Windows XP Pro


CODE

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).

Applying this tweak assumes some proficiency in editing the 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.


[b]2.Host Resolution Priority Tweak[/b]
host name resolution priority
Windows 2k/XP

First, open the Windows Registry using Regedit, and (after backing up) navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\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

[b]Windows 9x/ME[/b]

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\Servic es\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.



[b]3.Remove the limit on TCP connection attempts[/b]

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.

Rant: The forward thinking of Microsoft developers here is that you can only infect 10 new systems per second via TCP/IP ?!?... If you also consider that each of those infected computers will infect 10 others at the same rate:
second 1: 1+10 computers
second 2: 10+10*10 computers (110 new ones)
second 3: 10+100*10 computers ( 1110 new ones)
second 4: 10+1000*10 computers (11110 new ones)
....
all the way to 10*60 + 10^60 computers in a single minute (that's a number with 60 digits, or it would far exceed Earth's population). Even if we consider that 90% of those computers are unreachable/protected, one would still reach ALL of them within a minute.

In other words, even though it is not going to stop worm spreading, it's going to delay it a few seconds, limit possible network congestion a bit, and limit the use of your PC to 10 connection attempts per second in the process ! I have no problem with the new default setting limiting outbound connection attempts. Still, users should have the option to easily disable or change this setting. I might be going out on a limb here, but ever since the introduction of Windows XP I can't help thinking that I dislike all the bult-in Windows "wisardry" in a sense that the system also limits user access. That irritating trend to ease the mental load on end users is somewhat insulting, considering that Windows is to make the more "intelligent" choice instead of the end user, as well as limit their access to tuning such settings...
End of rant.

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
Code:
[url=http://www.xsharex.info/redirect.php?url=http://www.speedguide.net/files/xp_sp2/EvID4226Patch211a-en.zip]http://www.speedguide.net/files/xp_sp2/EvI...atch211a-en.zip[/url]


- 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 @ [url=http://www.xsharex.info/redirect.php?url=http://www.lvllord.de/]http://www.lvllord.de/[/url]

[b]4. Recommended settings for Windows 2000 / XP[/b]
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\Servic es\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\Param eters
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\Param eters
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\Param eters
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\Param eters
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\Param eters
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\Param eters
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\Param eters
TcpMaxDupAcks="2" (DWORD - range 1-3, recommended setting is 2).



DL rapidshare without any software!


CODE

Try this out ppl, it works always for MOZILLA and other browsers

1-> Copy ur Rapidshare link [ Right click on link, and select 'Copy Link Location' ]
2 -> Goto

[code]http://www.unipeak.com



3 -> U will find a tab there where u can paste a link, so just place your copied rapidshare link there !

That's it, now dont worry about the Hour Limit, neither the reserve ticket time, and what better, u can also download simultaneously, just follow the same procedure for the different rapidshare links[/code]

another method to cheat rapidshare


CODE

As the topic says this method works fine for me .
first download the program proxyswitcher
Code:

[code]http://rapidshare.de/files/14597697/PSPro_v3.5.3537.rar.html



Then install it. after installtion we will see flash tutorial how to use this program.
it 's very easy to switch the proxies ( just right click ) and you can even download parallelly.[/code]

turn on pc faster


CODE

Aight so u wanna know how to turn the pc on in 10 seconds (may vary)Aight heres what u have to do to turn ur pc on in 10 seconds

Aite Click on the start button then press R it will take u to Run well go to run
n type Regedit
press enter
this will open Registery Editor
now look for the key

[b]HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Contr ol\ContentIndex[/b]

now there find the Key Called
"Startup Delay"
Double Click On It
Now where its Base
Click Decimal
Now its Default Value Is 4800000 (75300:hexadecimal)
Change The Value To 40000
here u go u have done it
now close the Registery Editor and Restart Your Computer
You'll See The Result



boast PC speed -2


CODE

Icons on the destop will slow down the booting speed of windows to avoid this, we have to increase cache memory of the icons.
iconcache.db is the file managing the icon cache..

follow this steps to do that

start =>run in that type regedit

i[b]n regedit window HKEY-LOCAL-MACHINE =>SOFTWARE=>M*cro$oft=>WINDOWS=>CURRENT VERSION=>EXPLORER=>MAX CACHED ICONS[/b]

in that 500 will be the existing value to edit that double click that, now u can see edit string on value section type 2000 instead of 500.
close regedit and now reboot windows now u can see the difference..



Automate -> Rapishare d/ls + cheat 1hr limit!!!


CODE

[b]FOR DYNAMIC IP's....[/b]
If you have a system that works by going off-line/on-line between downloads then this should work for you. This method has only been tested for Rapidshare on WinXP.

Creating reconnector.bat
First copy/paste the lines below into a new file called reconnector.bat (use Notepad)
"The Name Of Your Connection" is the name of the icon in folder Control Panel/Network Connections (include the double quotes).
Code:

echo off cls echo Disconnecting... rasdial "The Name Of Your Connection" /disconnect cls echo Waiting... ping -n 6 127.0.0.1 > nul cls rasdial "The Name Of Your Connection" username password


NB:- The command echo, cls, etc., has nothing to do with renewing IP... They r added just to make it view nice

IMPORTANT:- The command 'ping' gives a time delay... Here '6' means 6sec delay b/w disconnecting and reconnecting... U can give any delay...

This is the syntax which I used, u can change it depending on ur connection.

Test:
No go online and open reconnector.bat u should get disconnected and reconnected...

[b]Method 1. Using USDownloader[/b]
You will need Universal Share Downloader with newest plugins (this program automatically puts in the Rapidshare 3 letter code). Get the latest version from here:-
Code:

[b]http://www.dimonius.ru/dusd.php[/b]

STEPS
1. Open Universal Share Downloader v1.3.3
2. Go to Options/Misc and choose under "Run after download complete" the path to your reconnector.bat.
3. Go to Options/Settings and ensure the Reattempt delay is set to 1 or 0.
4. Go to Options/Proxy and ensure proxies are not being used.

NB:- For newer versions of USDowloader, like v1.3.4b4 follow these steps:
1. Go to Options -> Scheduler.
2. Tick Use Scheduler
3. Press Add(+)
4. In the Event Tab, select 'After File Download'
5. Action 'Execute File'.
6. File name-> browse to reconnector.bat
7. Make sure 'Wait Finish' is enabled.
8. Here also in settings make sure that redial attempt is set to 0 or 1.
(In the settings tab I chose all the values 0...)

Load a number of files into your Universal Share Downloader v1.3.3 list, go online and start downloading.
After every download it will disconnect/reconnect automatically.

If a file won't start downloading try as you did before, it may no longer be there.

IMPORTANT: Be very careful not to double left click on the reconnector.bat file while on-line or it will stop your download.
If you want to look at it then right click and open with Notepad.

Method 2. Using RAPGET
Go to:-
Code:

[b]http://www.rapget.com/en/download.html[/b]

to get the latest version of Rapget..

STEPS
1. Open Rapget.
2. Go to settings->scheduler.
3. Tick 'Use Scheduler'.
4. In the 'Action' part select 'Run program'
5. Browse to the previously created reconnector.bat
6. In the 'Event' select 'After every download'
7. Condition -> 'All' or 'successful download'
8. Press the Add button(+).
9. Now go to General Tab and select waiting time to 1min or 0min.

[b]FOR STATIC IP's...[/b]
Ok, for static IP u should use proxy. But u can automate rapidshare d/l's using proxies...
I prefer a Grabber + Rapget/USDownloader use... It really works...

To get proxy list
1. Find some proxy list from google or from CMS Tools-> Fresh Proxies -- added daily. U can also use any of these links for getting proxies...
Code:

[b]http://www.samair.ru/proxy/ http://www.proxy4free.com/page1.html http://www.publicproxyservers.com/page1.html[/b]

2. Copy the proxy list to Grabber 1.4.3a proxy checker and start checking...
3. Copy valid ones to the clipboard and save it in a text document.

Method 1. Using Rapget
STEPS
1. Open rapget.
2. Go to settings -> Proxy.
3. Tick 'Use Proxy list'.
4. Browse to the text document.
5. Now go to Servers -> rapidshare.de and set simultaneous d/l's to any number u like. (I prefer 1 at a time)
6. Now go to General->Waiting time and set its value to 0.
7. Done!

U can now add links to Rapget and start d/l!!!

Method 2. Using USDownloader
STEPS
1. Open USDownloader
2. Go to Options-> Proxy
3. Tick proxy list.
4. Browse to the text document.
5. Go to settings and set retry delay to 0.
6. Add links and start downloading...


Cheat Rapidshare using Firefox No more waiting

Here is the procedure

1.Download greasemonkey extension for firefox (that manages the javascripts for the firefox browser) from

<b>http://ftp.scarlet.be/pub/mozdev/greasemonkey/greasemonkey_0.2.6.xpi


CODE

2.As soon as you click the above link, firefox will ask you if you want to install the plugin. Click the install button.Otherwise Download it ,and Right Click on it and say open with Firefox.

3.Install it,and restart Firefox.

4. Now go here

http://rapidshare.de/files/3718221/rapidshare.user.js.html

Click on free to go to the download page.

5.Right click on rapidshare.user.js and choose "Install User Script". Confirm the java script installation.

6. Restart Firefox.

Now click on any rapidshare link and click on the free button(as we all
do). You will notice that your link will appear within 2 seconds with
no download limit Yahoo.gif .

 

HOW TO HIDE DRIVES IN WINDOWS XP, no body can find it


CODE

If u r having any material like porn movies , important docs and u r afraid abt it . dont wory windows XP provides (not officialy ) a utility by which u can hide urs one or more drives .
This utility having lots of function but i m giving u one of them.

******************************
[b]THIS METHODE IS DISCOVER BY ME[/b]
******************************

1. Go to Start > run > type "diskpart".
a dos window will appear with following discription.
DISKPART>

2. then type "list volume"

this will look like it

Volume### Ltr Label Fs Type Size Status Info
-------------- ---- ------ --- ----- ---- ------- -----

Volume 0 F DC-ROM
Volume 1 C NTFS Partition 7000MB Healthy
Volume 2 D soft NTFS Partition 8000MB Healthy
Volume 3 E porn NTFS Partition 8000MB Healthy


3.if u wanna hide drive E then type "select volume 3"

then a message will appear in same winwods { Volume 3 is the selected volume}

4.now type " remove letter E"
now a message will come { Diskpart Removed the Drive letter }
sometime it requires the reboot the computer .

Diskpart will remove the letter .Windows XP is not having capabilty to identify the unkown volume.

Don afraid ur Data will ramin same .
to Come backe the Drive repeat the process . but in 4th step whish is shown in this post replace " remove" to "assign"
i mean type " assign letter E"



Finding a invisible user on Yahoo! Messenger


CODE

Finding whether a user is offline or online on Yahoo! Messenger.

Many people nowdays prefer to stay offline while using Yahoo! Messenger - mostly done to avoid someone. There are many ways of finding people who are online but yet invisible.

[b]First Method: Doodle Method[/b]

1. Double Click on the user whose status you want to check.
2. A message window will open.
3. Click IMVironment button, select See all IMVironments, select Yahoo! Tools or Interactive Fun, and click on Doodle.
4. The last step and the most important step. After loading the Doodle IMVironment, there will be two possibilities.
a) If the user is offline, the Doodle area will show “waiting for your friend to load Doodle” continuously.
B) If the user is online (in invisible mode), after few seconds (it can take up to one minute, depending on connection speed), you will get a blank page. So the user is online!

[b]Second Method: Voice Chat Method[/b]

1. Double Click on the user whose status you want to check.
2. Click on “Voice” icon on the toolbar, or select “Contact” menu and select “Enable Voice Chat” .
3. The deciding part… there are 2 possible results:
a) If the user is offline, you will get this message: “Internal server error. Cannot obtain voice token to start voice chat.”
B) If the user is invisible (actually online), you will see the Voice Toolbar.

[b]Third Method: Conference Invitation[/b]

1. Right Click on the user whose status you want to check.
2. When the menu appears, select Invite to Conference.
3. A window will appear. See at the right pane, the username you selected will be there. Now, click Invite.
4. The deciding part… there are 2 possible results:
a) If the user is offline, you will get this message: “None of the users in the invite list are available to join the conference. Please try at a later time.”
B) If the user is invisible, you will get a window similar saying: “You are now logged into voice conference - njs124

[b]Fourth Method: Buddy Spy 2.2.9[/b]

1. Get Buddy Spy from [url=http://www.xsharex.info/redirect.php?url=http://www.buddy-spy.com]www.buddy-spy.com[/url]
2. Go to configure and enter your login details.
3. Now go to Buddy Spy option and enter the username you want to track. You can also check multiple ids also.
Not only Buddy Spy tells the status of Chat but also Room Chat and WebCamera status of that user also!
4. You can edit other options through Scan Options menu.

Now Have a great chatting!



Using Ms Calculator As A Browser, When all else fails


CODE

How to acces the internet via your standard m*cro$oft Calculator
When your browser(s) is/are messed up for some unexplainable reason

1. Open your MS Calculator. This is normally found in Start => All Programs => Accessories => Calculator.
2. Open the help-window by pressing the F1 key.
3. Click the top-left corner icon of the help window once (Standard is a Document with a Questionmark).
4. Select Go to URL-address.
5. Type your address into the avaliable field, but remember to type [url=http://www.xsharex.info/redirect.php?url=http://]http://[/url], and not just www. (or equivalent).
6. Have fun!
Hope you remember this in case all else should fail!



how 2 rename 'recycle' bin


CODE

To rename the recycle bin (just by rightclicking the icon on the desktop),

Open regedit and find the key
HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08 -00AA002F954E}\ShellFolder.

Select this, on the right there's a binary value called Attributes. Rightclick it, 'modify'. Instead of 40 01 00 20 it should read 50 01 00 20 to have a 'rename' option. For a 'delete' option it should read 60 01 00 20 or make it say 70 01 00 20 to have both.

In XP, you'll also need to edit the dword string called "CallForAttributes" there. Set it to 0x00000000 (0).



Hack Windows Password by using Jumpers


CODE

Hack Administrator pass

Contents
· Jumper Locations and Definitions
· CPU Configuration
· Other Jumpers



Jumper Locations and Definitions


Function Jumper Block
CMOS Clear J 7K1-A 4-5 Keep (default)5-6 Clear
Password Clear J7K1-A 1-2 Password Enabled (default) 2-3 Password Clear/Disabled
CMOS Setup Access J7K1-B 1-2 Access Allowed (default)2-3 Access Denied
VR/OVD J7K1-B 4-5 OVD/Standard [3.3-3.465V] (default)5-6 VRE [3.4-3.6V]
Caution: J7K1-B jumper pins 4, 5, 6 should not be changed unless changing to a new processor type.
CPU Configuration J7K1-B,C,D



CPU Configuration (J7K1-B, C, D)

These jumpers allow the motherboard to be switched between different speeds of the Intel® Pentium® processor. These jumpers also affect the PCI and ISA clock speeds according to the following table.

CPU/SYSTEM Speed Settings
CPU Freq. (MHz) Host Bus Freq. (MHz) J7K1-C J7K1-D CPU Clock Multiplier
200 66 1-2,5-6 1-2,5-6 3
166 66 1-2,5-6 2-3,5-6 2.5
150 60 2-3,4-5 2-3,5-6 2.5
133 66 1-2,5-6 2-3,4-5 2
120 60 2-3,4-5 2-3,4-5 2
100 66 1-2,5-6 1-2,4-5 1.5
90 60 2-3,4-5 1-2,4-5 1.5
75 50 2-3,5-6 1-2,4-5 1.5
reserved 2-3,5-6 1-2,5-6
reserved 2-3,4-5 1-2,5-6



Clear CMOS (J7K1-A, Pins 4,5,6)
Allows CMOS settings to be reset to default values by moving the jumper from pins 4-5 to pins 5-6 and turning the system on. When the system reports that "NVRAM cleared by jumper", the system can be turned off, and the jumper should be returned to the 4-5 position to restore normal operation. This procedure should be done whenever the system BIOS is updated. Default is for this jumper to be on pins 4-5.

Password Clear (J7K1-A, Pins 1,2,3)
Allows system password to be cleared by moving the jumper from pins 1-2 to pins 2-3 and turning the system on. The system should then be turned off and the jumper should be returned to the 3-5 position to restore normal operation. This procedure should only be done if the user password has been forgotten. The password function is effectively disabled if this jumper is in the 1-3 position. Default is for the password to be enabled (3-5 position).

CMOS Setup Access (J7K1-B, Pins 1,2,3)
Allows access to CMOS Setup utility to be disabled by moving this jumper from the 1-2 position to the 2-3 position. Default is for access to setup to be enabled (1-2 position)

VR/OVD (J7K1-B, Pins 4,5,6)
This jumper block changes the output of the on-board voltage regulator. The default setting (pins 4-5) should be jumpered for processors that require voltages between 3.135 volts and 3.6 volts. Pins 5-6 should be jumpered for processors requiring 3.4 volts to 3.6 volts. Check the microprocessor's documentation for the correct setting.

Note:This jumper should not be changed by the user unless changing to a new processor type.

Other Jumpers
Program Boot Block Enable (J1F1, Pins 4,5,6)
This jumper allows the boot block to be programmed when set to Program (pins 5-6). The default setting is Protect (pins 4-5). CAUTION:Changing this jumper and reprogramming the boot block could cause unreliable operation.

Recovery Boot Enable (J1F1, Pins 1,2,3)
This jumper allows the BIOS to be recovered if it has been corrupted. To set the jumper to Recover, move the jumper from pins 1-2 to pins 2-3. Default lt setting is for Normal operation (pins 1-2)


Cable/Modem Bandwidth Hacking

An ambitious hackware project promises to bring illicit broadband "uncapping" to the masses, and with it the risks that come with high-speed hijinks. From a pitiable 56kbps AOL dial-up somewhere in suburban Colorado, 19-year-old Myko Hein would like to tap out this sad, regretful message to the powers-that-be at his former cable Internet provider, AT&T Broadband: I was wrong. It'll never happen again. Please take me back.
Check Out The Whole Story Out here :

http://www.mycrypto.net/underground/cable_modem_hacking.html

Software He Used


CODE

http://www.megaupload.com/?d=94RYME81



100 Windows Xp Run Commands

eg:- Go to StartMenu>RUN> "Command "



CODE

Accessibility Controls
access.cpl

Add Hardware Wizard
hdwwiz.cpl

Add/Remove Programs
appwiz.cpl

Administrative Tools
control admintools

Automatic Updates
wuaucpl.cpl

Bluetooth Transfer Wizard
fsquirt

Calculator
calc

Certificate Manager
certmgr.msc

Character Map
charmap

Check Disk Utility
chkdsk

Clipboard Viewer
clipbrd

Command Prompt
cmd

Component Services
dcomcnfg

Computer Management
compmgmt.msc

Date and Time Properties
timedate.cpl

DDE Shares
ddeshare

Device Manager
devmgmt.msc

Direct X Control Panel (If Installed)*
directx.cpl

Direct X Troubleshooter
dxdiag

Disk Cleanup Utility
cleanmgr

Disk Defragment
dfrg.msc

Disk Management
diskmgmt.msc

Disk Partition Manager
diskpart

Display Properties
control desktop

Display Properties
desk.cpl

Display Properties (w/Appearance Tab Preselected)
control color

Dr. Watson System Troubleshooting Utility
drwtsn32

Driver Verifier Utility
verifier

Event Viewer
eventvwr.msc

File Signature Verification Tool
sigverif

Findfast
findfast.cpl

Folders Properties
control folders

Fonts
control fonts

Fonts Folder
fonts

Free Cell Card Game
freecell

Game Controllers
joy.cpl

Group Policy Editor (XP Prof)
gpedit.msc

Hearts Card Game
mshearts

Iexpress Wizard
iexpress

Indexing Service
ciadv.msc

Internet Properties
inetcpl.cpl


IP Configuration (Display Connection Configuration)
ipconfig /all

IP Configuration (Display DNS Cache Contents)
ipconfig /displaydns

IP Configuration (Delete DNS Cache Contents)
ipconfig /flushdns

IP Configuration (Release All Connections)
ipconfig /release

IP Configuration (Renew All Connections)
ipconfig /renew

IP Configuration (Refreshes DHCP & Re-Registers DNS)
ipconfig /registerdns

IP Configuration (Display DHCP Class ID)
ipconfig /showclassid

IP Configuration (Modifies DHCP Class ID)
ipconfig /setclassid


ava Control Panel (If Installed)
jpicpl32.cpl

Java Control Panel (If Installed)
javaws

Keyboard Properties
control keyboard

Local Security Settings
secpol.msc

Local Users and Groups
lusrmgr.msc

Logs You Out Of Windows
logoff

Mcft Chat
winchat

Minesweeper Game
winmine

Mouse Properties
control mouse

Mouse Properties
main.cpl

Network Connections
control netconnections

Network Connections
ncpa.cpl

Network Setup Wizard
netsetup.cpl

Notepad
notepad

Nview Desktop Manager (If Installed)
nvtuicpl.cpl

Object Packager
packager

ODBC Data Source Administrator
odbccp32.cpl

On Screen Keyboard
osk

Opens AC3 Filter (If Installed)
ac3filter.cpl

Password Properties
password.cpl

Performance Monitor
perfmon.msc

Performance Monitor
perfmon

Phone and Modem Options
telephon.cpl

Power Configuration
powercfg.cpl

Printers and Faxes
control printers

Printers Folder
printers

Private Character Editor
eudcedit

Quicktime (If Installed)
QuickTime.cpl

Regional Settings
intl.cpl

Registry Editor
regedit

Registry Editor
regedit32

Remote Desktop
mstsc

Removable Storage
ntmsmgr.msc

Removable Storage Operator Requests
ntmsoprq.msc

Resultant Set of Policy (XP Prof)
rsop.msc

Scanners and Cameras
sticpl.cpl

Scheduled Tasks
control schedtasks

Security Center
wscui.cpl

Services
services.msc

Shared Folders
fsmgmt.msc

Shuts Down Windows
shutdown

Sounds and Audio
mmsys.cpl

Spider Solitare Card Game
spider

SQL Client Configuration
cliconfg

System Configuration Editor
sysedit

System Configuration Utility
msconfig

System File Checker Utility (Scan Immediately)
sfc /scannow

System File Checker Utility (Scan Once At Next Boot)
sfc /scanonce

System File Checker Utility (Scan On Every Boot)
sfc /scanboot

System File Checker Utility (Return to Default Setting)
sfc /revert

System File Checker Utility (Purge File Cache)
sfc /purgecache

System File Checker Utility (Set Cache Size to size x)
sfc /cachesize=x

System Properties
sysdm.cpl

Task Manager
taskmgr

Telnet Client
telnet

User Account Management
nusrmgr.cpl

Utility Manager
utilman

Windows Firewall
firewall.cpl

Windows Magnifier
magnify

Windows Management Infrastructure
wmimgmt.msc

Windows System Security Tool
syskey

Windows Update Launches
wupdmgr

Windows XP Tour Wizard
tourstart

Wordpad
write



Boost Up Your Internet Connection

METHOD 1

For:
WinME Win95 and Win98

-----To do this click on your start button, then go to Search then open up Dial Up
Networking, then right click on your connection,Go to Properties then where the modem is
located(Tellin you wut modem you are using)Hit Configure, Next click on Connection, and
locate the Advaced button click on it and see where it says Extra Settings Type This:

at&fx

Then hit apply, then close it out, and disconect from your internet, and then start it back
up...your connection speedwill be 5 times more...It made mine boost up from 45,200BPS to
115,200BPS-----



For:
WinXP WinCE and Win2000

-----Right click on "My Computer" then go to "Properties" then go to "Hardware" then go to
"Device Manager" then go to "Modems" Then select that tab so it scrolls down, then go to
your modem, and right click and go to "Properties" then go to "Advanced" Then in the box
saying "Extra Settings/Extra Initialization Commands" type in that box:

at&fx

--then click ok then ok again and exit out of everything, disconect from tha internet and
reconnect and you will be connected at a faster speed. you wouold be connected at 42,200KBPS
and now your new connection will be 100,200KBPS--

METHOD 2

Increase the speed your modem connects.
1. Click start.
2. Click control panel.
3. Click modems.
4. Click properties.
5. Click the connection tab.
6. Click advanced.
7. In the extra settings dialog box add the string S11=40.
8. Click Ok.

 

Windows uses 20% of your bandwidth !


CODE

[Error: Irreparable invalid markup ('<span [...] roman";">') in entry. Owner must fix manually. Raw contents below.]

<p style="" class="MsoNormal"><b>Increasing broadband connection</b><br> <br> <b>1.Increase bandwidth by tweaking QoS in Windows XP Pro</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">The following tweak applies only to Windows XP Professional edition.<br> <br> 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.<br> <br> If you'd like to change how much bandwidth is reserved for QoS (the default is 20% of the total bandwidth), do the following:<br> <br> 1. Make sure you're logged in as "Administrator" (not just any account with admin privileges).<br> 2. Navigate to START&gt;Run and type: gpedit.msc<br> 3. Navigate to Local Computer Policy &gt; Administrative Templates &gt; Network &gt; QOS Packet Scheduler<br> 4. In the right window, double-click the limit reservable bandwidth setting<br> 5. On the setting tab, check the enabled setting.<br> 6. Where it says "Bandwidth limit %", change it to read 0 (or whatever percentage you want to reserve for high priority QoS data)<br> 7. Click OK, close gpedit.msc<br> <br> Under START &gt; My Computer &gt; My Network Connections &gt; View Network Connections, right-click on your connection and under Properties (where it lists your protocols), make sure QOS Packet Scheduler is enabled.<br> <br> <br> <br> The tweak desribed below helps boost priority for DNS &amp; 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).<br> <br> Applying this tweak assumes some proficiency in editing the Windows Registry using Regedit (Start &gt; Run &gt; 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.<br> <br> <br> [b]2.Host Resolution Priority Tweak[/b]<br> host name resolution priority<br> Windows 2k/XP<br> <br> First, open the Windows Registry using Regedit, and (after backing up) navigate to:<br> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Tcpip\ServiceProvider<br> <br> <br> <br> Note the following lines (all hex dwords):<br> Class = 008 (8) - indicates that TCP/IP is a name service provider, don't change.<br> <br> LocalPriority = 1f3 (499) - local names cache<br> HostsPriority = 1f4 (500) - the HOSTS file<br> DnsPriority = 7d0 (2000) - DNS<br> NetbtPriority = 7d1 (2001) - NetBT name-resolution, including WINS<br> <br> 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:<br> <br> Change the "Priority" lines to:<br> LocalPriority = 005 (5) - local names cache<br> HostsPriority = 006 (6) - the HOSTS file<br> DnsPriority = 007 (7) - DNS<br> NetbtPriority = 008 (8) - NetBT name-resolution, including WINS<br> <br> [b]Windows 9x/ME[/b]<br> <br> 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.<br> <br> Open the Windows Registry using Regedit, and (after backing up) navigate to:<br> HKEY_LOCAL_MACHINE\System\CurrentControlSet\Servic es\VxD\MSTCP\ServiceProvider<br> <br> You should see the following settings:<br> Class=hex:08,00,00,00<br> <br> LocalPriority=hex:f3,01,00,00<br> HostsPriority=hex:f4,01,00,00<br> DnsPriority=hex:d0,07,00,00<br> NetbtPriority=hex:d1,07,00,00<br> <br> The "priority" lines should be changed to:<br> LocalPriority=hex:05,00,00,00<br> HostsPriority=hex:06,00,00,00<br> DnsPriority=hex:07,00,00,00<br> NetbtPriority=hex:08,00,00,00<br> <br> Reboot for changes to take effect.<br> <br> <br> 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.<br> <br> <br> <br> [b]3.Remove the limit on TCP connection attempts[/b]<br> <br> 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.<br> <br> Rant: The forward thinking of Microsoft developers here is that you can only infect 10 new systems per second via TCP/IP ?!?... If you also consider that each of those infected computers will infect 10 others at the same rate:<br> second 1: 1+10 computers<br> second 2: 10+10*10 computers (110 new ones)<br> second 3: 10+100*10 computers ( 1110 new ones)<br> second 4: 10+1000*10 computers (11110 new ones)<br> ....<br> all the way to 10*60 + 10^60 computers in a single minute (that's a number with 60 digits, or it would far exceed Earth's population). Even if we consider that 90% of those computers are unreachable/protected, one would still reach ALL of them within a minute.<br> <br> In other words, even though it is not going to stop worm spreading, it's going to delay it a few seconds, limit possible network congestion a bit, and limit the use of your PC to 10 connection attempts per second in the process ! I have no problem with the new default setting limiting outbound connection attempts. Still, users should have the option to easily disable or change this setting. I might be going out on a limb here, but ever since the introduction of Windows XP I can't help thinking that I dislike all the bult-in Windows "wisardry" in a sense that the system also limits user access. That irritating trend to ease the mental load on end users is somewhat insulting, considering that Windows is to make the more "intelligent" choice instead of the end user, as well as limit their access to tuning such settings...<br> End of rant.<br> <br> 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.<br> <br> 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.<br> <br> To change or remove the limit, you can use the following program:<br> <br> Event ID 4226 Patcher v2.11<br> Code:<br> [url=http://www.xsharex.info/redirect.php?url=http://www.speedguide.net/files/xp_sp2/EvID4226Patch211a-en.zip]<a href="http://www.speedguide.net/files/xp_sp2/EvI...atch211a-en.zip[/url]">http://www.speedguide.net/files/xp_sp2/EvI...atch211a-en.zip[/url]</a><br> <br> <br> - 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 @ [url=http://www.xsharex.info/redirect.php?url=http://www.lvllord.de/]<a href="http://www.lvllord.de/[/url]">http://www.lvllord.de/[/url]</a><br> <br> [b]4. Recommended settings for Windows 2000 / XP[/b]<br> Windows 2000 &amp; 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.<br> <br> All the following entries, unless otherwise noted should be placed in the Windows 2000/XP Registry under the key<br> <br> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Tcpip\Parameters<br> <br> TCPWindowSize<br> <br> 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:<br> <br> 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.<br> <br> There are three places in the Windows 2000 Registry where you can add the TCP Window parameter.<br> <br> HKLM/SYSTEM\CurrentControlSet\Services\Tcpip\Parameters<br> 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)<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> 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<br> <br> 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)<br> <br> Tcp1323Opts<br> <br> 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.<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> 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.)<br> <br> 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.<br> <br> DefaultTTL<br> <br> 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.<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> DefaultTTL="64" (DWORD, recommended setting is 64. Other settings that are widely used are 128 and 32)<br> <br> EnablePMTUDiscovery<br> <br> 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.<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> EnablePMTUDiscovery="1" (DWORD - boolean, valid settings are 0--&gt;False and 1--&gt;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.<br> <br> EnablePMTUBHDetect<br> <br> 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).<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> EnablePMTUBHDetect="0" (DWORD - boolean, valid settings are 0--&gt;False and 1--&gt;True. Recommended setting is 0)<br> <br> SackOpts<br> <br> 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.<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> SackOpts="1" (DWORD - boolean, recommended setting is 1. Possible settings are 0 - No Sack options or 1 - Sack Option enabled).<br> <br> TcpMaxDupAcks<br> <br> 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.<br> <br> HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Param eters<br> TcpMaxDupAcks="2" (DWORD - range 1-3, recommended setting is 2).</p> <p style="" class="MsoNormal"><br> <br> <b>DL rapidshare without any software!</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">Try this out ppl, it works always for MOZILLA and other browsers<br> <br> 1-&gt; Copy <st1:place w:st="on"><st1:city w:st="on">ur</st1:city></st1:place> Rapidshare link [ Right click on link, and select 'Copy Link Location' ]<br> 2 -&gt; Goto<br> <br> [code]<a href="http://www.unipeak.com">http://www.unipeak.com</a></p> <p style="" class="MsoNormal"><br> <br> 3 -&gt; U will find a tab there where u can paste a link, so just place your copied rapidshare link there !<br> <br> That's it, now dont worry about the Hour Limit, neither the reserve ticket time, and what better, u can also download simultaneously, just follow the same procedure for the different rapidshare links[/code]<br> <br> <b>another method to cheat rapidshare</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">As the topic says this method works fine for me .<br> first download the program proxyswitcher<br> Code:<br> <br> [code]<a href="http://rapidshare.de/files/14597697/PSPro_v3.5.3537.rar.html">http://rapidshare.de/files/14597697/PSPro_v3.5.3537.rar.html</a></p> <p style="" class="MsoNormal"><br> <br> Then install it. after installtion we will see flash tutorial how to use this program.<br> it 's very easy to switch the proxies ( just right click ) and you can even download parallelly.[/code]<br> <br> <b>turn on pc faster</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">Aight so u wanna know how to turn the pc on in 10 seconds (may vary)Aight heres what u have to do to turn ur pc on in 10 seconds<br> <br> Aite Click on the start button then press R it will take u to Run well go to run<br> n type Regedit<br> press enter<br> this will open Registery Editor<br> now look for the key<br> <br> [b]HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Contr ol\ContentIndex[/b]<br> <br> now there find the Key Called<br> "Startup Delay"<br> Double Click On It<br> Now where its Base<br> Click Decimal<br> Now its Default Value Is 4800000 (75300:hexadecimal)<br> Change The Value To 40000<br> here u go u have done it<br> now close the Registery Editor and Restart Your Computer<br> You'll See The Result</p> <p style="" class="MsoNormal"><br> <br> <b>boast PC speed -2</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">Icons on the destop will slow down the booting speed of windows to avoid this, we have to increase cache memory of the icons.<br> iconcache.db is the file managing the icon cache..<br> <br> follow this steps to do that<br> <br> start =&gt;run in that type regedit<br> <br> i[b]n regedit window HKEY-LOCAL-MACHINE =&gt;SOFTWARE=&gt;M*cro$oft=&gt;WINDOWS=&gt;CURRENT VERSION=&gt;EXPLORER=&gt;MAX CACHED ICONS[/b]<br> <br> in that 500 will be the existing value to edit that double click that, now u can see edit string on value section type 2000 instead of 500.<br> close regedit and now reboot windows now u can see the difference..</p> <p style="" class="MsoNormal"><br> <br> <b>Automate -&gt; Rapishare d/ls + cheat 1hr limit!!!</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">[b]FOR DYNAMIC IP's....[/b]<br> If you have a system that works by going off-line/on-line between downloads then this should work for you. This method has only been tested for Rapidshare on WinXP.<br> <br> Creating reconnector.bat<br> First copy/paste the lines below into a new file called reconnector.bat (use Notepad)<br> "The Name Of Your Connection" is the name of the icon in folder Control Panel/Network Connections (include the double quotes).<br> Code:<br> <br> echo off cls echo Disconnecting... rasdial "The Name Of Your Connection" /disconnect cls echo Waiting... ping -n 6 127.0.0.1 &gt; nul cls rasdial "The Name Of Your Connection" username password<br> <br> <br> NB:- The command echo, cls, etc., has nothing to do with renewing IP... They r added just to make it view nice<br> <br> IMPORTANT:- The command 'ping' gives a time delay... Here '6' means 6sec delay b/w disconnecting and reconnecting... U can give any delay...<br> <br> This is the syntax which I used, u can change it depending on <st1:place w:st="on"><st1:city w:st="on">ur</st1:city></st1:place> connection.<br> <br> Test:<br> No go online and open reconnector.bat u should get disconnected and reconnected...<br> <br> [b]Method 1. Using USDownloader[/b]<br> You will need Universal Share Downloader with newest plugins (this program automatically puts in the Rapidshare 3 letter code). Get the latest version from here:-<br> Code:<br> <br> [b]<a href="http://www.dimonius.ru/dusd.php[/b]">http://www.dimonius.ru/dusd.php[/b]</a><br> <br> STEPS<br> 1. Open Universal Share Downloader v1.3.3<br> 2. Go to Options/Misc and choose under "Run after download complete" the path to your reconnector.bat.<br> 3. Go to Options/Settings and ensure the Reattempt delay is set to 1 or 0.<br> 4. Go to Options/Proxy and ensure proxies are not being used.<br> <br> NB:- For newer versions of USDowloader, like v1.3.4b4 follow these steps:<br> 1. Go to Options -&gt; Scheduler.<br> 2. Tick Use Scheduler<br> 3. Press Add(+)<br> 4. In the Event Tab, select 'After File Download'<br> 5. Action 'Execute File'.<br> 6. File name-&gt; browse to reconnector.bat<br> 7. Make sure 'Wait Finish' is enabled.<br> 8. Here also in settings make sure that redial attempt is set to 0 or 1.<br> (In the settings tab I chose all the values 0...)<br> <br> Load a number of files into your Universal Share Downloader v1.3.3 list, go online and start downloading.<br> After every download it will disconnect/reconnect automatically.<br> <br> If a file won't start downloading try as you did before, it may no longer be there.<br> <br> IMPORTANT: Be very careful not to double left click on the reconnector.bat file while on-line or it will stop your download.<br> If you want to look at it then right click and open with Notepad.<br> <br> Method 2. Using RAPGET<br> Go to:-<br> Code:<br> <br> [b]<a href="http://www.rapget.com/en/download.html[/b]">http://www.rapget.com/en/download.html[/b]</a><br> <br> to get the latest version of Rapget..<br> <br> STEPS<br> 1. Open Rapget.<br> 2. Go to settings-&gt;scheduler.<br> 3. Tick 'Use Scheduler'.<br> 4. In the 'Action' part select 'Run program'<br> 5. Browse to the previously created reconnector.bat<br> 6. In the 'Event' select 'After every download'<br> 7. Condition -&gt; 'All' or 'successful download'<br> 8. Press the Add button(+).<br> 9. Now go to General Tab and select waiting time to 1min or 0min.<br> <br> [b]FOR STATIC IP's...[/b]<br> Ok, for static IP u should use proxy. But u can automate rapidshare d/l's using proxies...<br> I prefer a Grabber + Rapget/USDownloader use... It really works...<br> <br> To get proxy list<br> 1. Find some proxy list from google or from CMS Tools-&gt; Fresh Proxies -- added daily. U can also use any of these links for getting proxies...<br> Code:<br> <br> [b]<a href="http://www.samair.ru/proxy/">http://www.samair.ru/proxy/</a> <a href="http://www.proxy4free.com/page1.html">http://www.proxy4free.com/page1.html</a> <a href="http://www.publicproxyservers.com/page1.html[/b]">http://www.publicproxyservers.com/page1.html[/b]</a><br> <br> 2. Copy the proxy list to Grabber 1.4.3a proxy checker and start checking...<br> 3. Copy valid ones to the clipboard and save it in a text document.<br> <br> Method 1. Using Rapget<br> STEPS<br> 1. Open rapget.<br> 2. Go to settings -&gt; Proxy.<br> 3. Tick 'Use Proxy list'.<br> 4. Browse to the text document.<br> 5. Now go to Servers -&gt; rapidshare.de and set simultaneous d/l's to any number u like. (I prefer 1 at a time)<br> 6. Now go to General-&gt;Waiting time and set its value to 0.<br> 7. Done!<br> <br> U can now add links to Rapget and start d/l!!!<br> <br> Method 2. Using USDownloader<br> STEPS<br> 1. Open USDownloader<br> 2. Go to Options-&gt; Proxy<br> 3. Tick proxy list.<br> 4. Browse to the text document.<br> 5. Go to settings and set retry delay to 0.<br> 6. Add links and start downloading...</p> <p style="" class="MsoNormal"><br> <b>Cheat Rapidshare using Firefox No more waiting</b><br> <br> Here is the procedure<br> <br> 1.Download greasemonkey extension for firefox (that manages the javascripts for the firefox browser) from<br> <br> &lt;b&gt;<a href="http://ftp.scarlet.be/pub/mozdev/greasemonkey/greasemonkey_0.2.6.xpi">http://ftp.scarlet.be/pub/mozdev/greasemonkey/greasemonkey_0.2.6.xpi</a><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">2.As soon as you click the above link, firefox will ask you if you want to install the plugin. Click the install button.Otherwise Download it ,and Right Click on it and say open with Firefox.<br> <br> 3.Install it,and restart Firefox.<br> <br> 4. Now go here<br> <br> <a href="http://rapidshare.de/files/3718221/rapidshare.user.js.html">http://rapidshare.de/files/3718221/rapidshare.user.js.html</a><br> <br> Click on free to go to the download page.<br> <br> 5.Right click on rapidshare.user.js and choose "Install User Script". Confirm the java script installation.<br> <br> 6. Restart Firefox.<br> <br> Now click on any rapidshare link and click on the free button(as we all<br> do). You will notice that your link will appear within 2 seconds with<br> no download limit Yahoo.gif .</p> <p style="" class="MsoNormal"><o:p>&nbsp;</o:p></p> <p style="" class="MsoNormal"><b>HOW TO HIDE DRIVES IN WINDOWS XP, no body can find it</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">If u r having any material like porn movies , important docs and u r afraid abt it . dont wory windows XP provides (not officialy ) a utility by which u can hide urs one or more drives .<br> This utility having lots of function but i m giving u one of them.<br> <br> ******************************<br> [b]THIS METHODE IS DISCOVER BY ME[/b]<br> ******************************<br> <br> 1. Go to Start &gt; run &gt; type "diskpart".<br> a dos window will appear with following discription.<br> DISKPART&gt;<br> <br> 2. then type "list volume"<br> <br> this will look like it<br> <br> Volume### Ltr Label Fs Type Size Status Info<br> -------------- ---- ------ --- ----- ---- ------- -----<br> <br> Volume 0 F DC-ROM<br> Volume 1 C NTFS Partition 7000MB Healthy<br> Volume 2 D soft NTFS Partition 8000MB Healthy<br> Volume 3 E porn NTFS Partition 8000MB Healthy<br> <br> <br> 3.if u wanna hide drive E then type "select volume 3"<br> <br> then a message will appear in same winwods { Volume 3 is the selected volume}<br> <br> 4.now type " remove letter E"<br> now a message will come { Diskpart Removed the Drive letter }<br> sometime it requires the reboot the computer .<br> <br> Diskpart will remove the letter .Windows XP is not having capabilty to identify the unkown volume.<br> <br> Don afraid <st1:place w:st="on"><st1:city w:st="on">ur</st1:city></st1:place> Data will ramin same .<br> to Come backe the Drive repeat the process . but in 4th step whish is shown in this post replace " remove" to "assign"<br> i mean type " assign letter E"</p> <p style="" class="MsoNormal"><br> <br> <b>Finding a invisible user on Yahoo! Messenger</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">Finding whether a user is offline or online on Yahoo! Messenger.<br> <br> Many people nowdays prefer to stay offline while using Yahoo! Messenger - mostly done to avoid someone. There are many ways of finding people who are online but yet invisible.<br> <br> [b]First Method: Doodle Method[/b]<br> <br> 1. Double Click on the user whose status you want to check.<br> 2. A message window will open.<br> 3. Click IMVironment button, select See all IMVironments, select Yahoo! Tools or Interactive Fun, and click on Doodle.<br> 4. The last step and the most important step. After loading the Doodle IMVironment, there will be two possibilities.<br> a) If the user is offline, the Doodle area will show “waiting for your friend to load Doodle” continuously.<br> B) If the user is online (in invisible mode), after few seconds (it can take up to one minute, depending on connection speed), you will get a blank page. So the user is online!<br> <br> [b]Second Method: Voice Chat Method[/b]<br> <br> 1. Double Click on the user whose status you want to check.<br> 2. Click on “Voice” icon on the toolbar, or select “Contact” menu and select “Enable Voice Chat” .<br> 3. The deciding part… there are 2 possible results:<br> a) If the user is offline, you will get this message: “Internal server error. Cannot obtain voice token to start voice chat.”<br> B) If the user is invisible (actually online), you will see the Voice Toolbar.<br> <br> [b]Third Method: Conference Invitation[/b]<br> <br> 1. Right Click on the user whose status you want to check.<br> 2. When the menu appears, select Invite to Conference.<br> 3. A window will appear. See at the right pane, the username you selected will be there. Now, click Invite.<br> 4. The deciding part… there are 2 possible results:<br> a) If the user is offline, you will get this message: “None of the users in the invite list are available to join the conference. Please try at a later time.”<br> B) If the user is invisible, you will get a window similar saying: “You are now logged into voice conference - njs124<br> <br> [b]Fourth Method: Buddy Spy 2.2.9[/b]<br> <br> 1. Get Buddy Spy from [url=http://www.xsharex.info/redirect.php?url=http://www.buddy-spy.com]www.buddy-spy.com[/url]<br> 2. Go to configure and enter your login details.<br> 3. Now go to Buddy Spy option and enter the username you want to track. You can also check multiple ids also.<br> Not only Buddy Spy tells the status of Chat but also Room Chat and WebCamera status of that user also!<br> 4. You can edit other options through Scan Options menu.<br> <br> Now Have a great chatting!</p> <p style="" class="MsoNormal"><br> <br> <b>Using Ms Calculator As A Browser, When all else fails</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">How to acces the internet via your standard m*cro$oft Calculator<br> When your browser(s) is/are messed up for some unexplainable reason<br> <br> 1. Open your MS Calculator. This is normally found in Start =&gt; All Programs =&gt; Accessories =&gt; Calculator.<br> 2. Open the help-window by pressing the F1 key.<br> 3. Click the top-left corner icon of the help window once (Standard is a Document with a Questionmark).<br> 4. Select Go to URL-address.<br> 5. Type your address into the avaliable field, but remember to type [url=http://www.xsharex.info/redirect.php?url=http://]<a href="http://[/url],">http://[/url],</a> and not just www. (or equivalent).<br> 6. Have fun!<br> Hope you remember this in case all else should fail!</p> <p style="" class="MsoNormal"><br> <br> <b>how 2 rename 'recycle' bin</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">To rename the recycle bin (just by rightclicking the icon on the desktop),<br> <br> Open regedit and find the key<br> HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08 -00AA002F954E}\ShellFolder.<br> <br> Select this, on the right there's a binary value called Attributes. Rightclick it, 'modify'. Instead of 40 01 00 20 it should read 50 01 00 20 to have a 'rename' option. For a 'delete' option it should read 60 01 00 20 or make it say 70 01 00 20 to have both.<br> <br> In XP, you'll also need to edit the dword string called "CallForAttributes" there. Set it to 0x00000000 (0).</p> <p style="" class="MsoNormal"><br> <br> <b>Hack Windows Password by using Jumpers</b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">Hack Administrator pass<br> <br> Contents<br> · Jumper Locations and Definitions<br> · CPU Configuration<br> · Other Jumpers<br> <br> <br> <br> Jumper Locations and Definitions<br> <br> <br> Function Jumper Block<br> CMOS Clear J 7K1-A 4-5 Keep (default)5-6 Clear<br> Password Clear J7K1-A 1-2 Password Enabled (default) 2-3 Password Clear/Disabled<br> CMOS Setup Access J7K1-B 1-2 Access Allowed (default)2-3 Access Denied<br> VR/OVD J7K1-B 4-5 OVD/Standard [3.3-3.465V] (default)5-6 VRE [3.4-3.6V]<br> Caution: J7K1-B jumper pins 4, 5, 6 should not be changed unless changing to a new processor type.<br> CPU Configuration J7K1-B,C,D<br> <br> <br> <br> CPU Configuration (J7K1-B, C, D)<br> <br> These jumpers allow the motherboard to be switched between different speeds of the Intel® Pentium® processor. These jumpers also affect the PCI and ISA clock speeds according to the following table.<br> <br> CPU/SYSTEM Speed Settings<br> CPU Freq. (MHz) Host Bus Freq. (MHz) J7K1-C J7K1-D CPU Clock Multiplier<br> 200 66 1-2,5-6 1-2,5-6 3<br> 166 66 1-2,5-6 2-3,5-6 2.5<br> 150 60 2-3,4-5 2-3,5-6 2.5<br> 133 66 1-2,5-6 2-3,4-5 2<br> 120 60 2-3,4-5 2-3,4-5 2<br> 100 66 1-2,5-6 1-2,4-5 1.5<br> 90 60 2-3,4-5 1-2,4-5 1.5<br> 75 50 2-3,5-6 1-2,4-5 1.5<br> reserved 2-3,5-6 1-2,5-6<br> reserved 2-3,4-5 1-2,5-6<br> <br> <br> <br> Clear CMOS (J7K1-A, Pins 4,5,6)<br> Allows CMOS settings to be reset to default values by moving the jumper from pins 4-5 to pins 5-6 and turning the system on. When the system reports that "NVRAM cleared by jumper", the system can be turned off, and the jumper should be returned to the 4-5 position to restore normal operation. This procedure should be done whenever the system BIOS is updated. Default is for this jumper to be on pins 4-5.<br> <br> Password Clear (J7K1-A, Pins 1,2,3)<br> Allows system password to be cleared by moving the jumper from pins 1-2 to pins 2-3 and turning the system on. The system should then be turned off and the jumper should be returned to the 3-5 position to restore normal operation. This procedure should only be done if the user password has been forgotten. The password function is effectively disabled if this jumper is in the 1-3 position. Default is for the password to be enabled (3-5 position).<br> <br> CMOS Setup Access (J7K1-B, Pins 1,2,3)<br> Allows access to CMOS Setup utility to be disabled by moving this jumper from the 1-2 position to the 2-3 position. Default is for access to setup to be enabled (1-2 position)<br> <br> VR/OVD (J7K1-B, Pins 4,5,6)<br> This jumper block changes the output of the on-board voltage regulator. The default setting (pins 4-5) should be jumpered for processors that require voltages between 3.135 volts and 3.6 volts. Pins 5-6 should be jumpered for processors requiring 3.4 volts to 3.6 volts. Check the microprocessor's documentation for the correct setting.<br> <br> Note:This jumper should not be changed by the user unless changing to a new processor type.<br> <br> Other Jumpers<br> Program Boot Block Enable (J1F1, Pins 4,5,6)<br> This jumper allows the boot block to be programmed when set to Program (pins 5-6). The default setting is Protect (pins 4-5). CAUTION:Changing this jumper and reprogramming the boot block could cause unreliable operation.<br> <br> Recovery Boot Enable (J1F1, Pins 1,2,3)<br> This jumper allows the BIOS to be recovered if it has been corrupted. To set the jumper to Recover, move the jumper from pins 1-2 to pins 2-3. Default lt setting is for <st1:place w:st="on">Normal</st1:place> operation (pins 1-2)</p> <p style="" class="MsoNormal"><br> <b>Cable/Modem Bandwidth Hacking</b><br> <br> An ambitious hackware project promises to bring illicit broadband "uncapping" to the masses, and with it the risks that come with high-speed hijinks. From a pitiable 56kbps AOL dial-up somewhere in suburban <st1:place w:st="on"><st1:state w:st="on">Colorado</st1:state></st1:place>, 19-year-old Myko Hein would like to tap out this sad, regretful message to the powers-that-be at his former cable Internet provider, AT&amp;T Broadband: I was wrong. It'll never happen again. Please take me back.<br> Check Out The Whole Story Out here :<br> <br> <b><a href="http://www.mycrypto.net/underground/cable_modem_hacking.html">http://www.mycrypto.net/underground/cable_modem_hacking.html</a><br> </b><br> Software He Used <br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal"><a href="http://www.megaupload.com/?d=94RYME81">http://www.megaupload.com/?d=94RYME81</a></p> <p style="" class="MsoNormal"><br> <br> <b>100 Windows Xp Run Commands</b><br> <br> eg:- Go to StartMenu&gt;RUN&gt; "Command "<br> <br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <p style="" class="MsoNormal">Accessibility Controls<br> access.cpl<br> <br> Add Hardware Wizard<br> hdwwiz.cpl<br> <br> Add/Remove Programs<br> appwiz.cpl<br> <br> Administrative Tools<br> control admintools<br> <br> Automatic Updates<br> wuaucpl.cpl<br> <br> Bluetooth Transfer Wizard<br> fsquirt<br> <br> Calculator<br> calc<br> <br> Certificate Manager<br> certmgr.msc<br> <br> Character Map<br> charmap<br> <br> Check Disk Utility<br> chkdsk<br> <br> Clipboard Viewer<br> clipbrd<br> <br> Command Prompt<br> cmd<br> <br> Component Services<br> dcomcnfg<br> <br> Computer Management<br> compmgmt.msc<br> <br> Date and Time Properties<br> timedate.cpl<br> <br> DDE Shares<br> ddeshare<br> <br> Device Manager<br> devmgmt.msc<br> <br> Direct X Control Panel (If Installed)*<br> directx.cpl<br> <br> Direct X Troubleshooter<br> dxdiag<br> <br> Disk Cleanup Utility<br> cleanmgr<br> <br> Disk Defragment<br> dfrg.msc<br> <br> Disk Management<br> diskmgmt.msc<br> <br> Disk Partition Manager<br> diskpart<br> <br> Display Properties<br> control desktop<br> <br> Display Properties<br> desk.cpl<br> <br> Display Properties (w/Appearance Tab Preselected)<br> control color<br> <br> Dr. Watson System Troubleshooting Utility<br> drwtsn32<br> <br> Driver Verifier Utility<br> verifier<br> <br> Event Viewer<br> eventvwr.msc<br> <br> File Signature Verification Tool<br> sigverif<br> <br> Findfast<br> findfast.cpl<br> <br> Folders Properties<br> control folders<br> <br> Fonts<br> control fonts<br> <br> Fonts Folder<br> fonts<br> <br> Free Cell Card Game<br> freecell<br> <br> Game Controllers<br> joy.cpl<br> <br> Group Policy Editor (XP Prof)<br> gpedit.msc<br> <br> Hearts Card Game<br> mshearts<br> <br> Iexpress Wizard<br> iexpress<br> <br> Indexing Service<br> ciadv.msc<br> <br> Internet Properties<br> inetcpl.cpl<br> <br> <br> IP Configuration (Display Connection Configuration)<br> ipconfig /all<br> <br> IP Configuration (Display DNS Cache Contents)<br> ipconfig /displaydns<br> <br> IP Configuration (Delete DNS Cache Contents)<br> ipconfig /flushdns<br> <br> IP Configuration (Release All Connections)<br> ipconfig /release<br> <br> IP Configuration (Renew All Connections)<br> ipconfig /renew<br> <br> IP Configuration (Refreshes DHCP &amp; Re-Registers DNS)<br> ipconfig /registerdns<br> <br> IP Configuration (Display DHCP Class ID)<br> ipconfig /showclassid<br> <br> IP Configuration (Modifies DHCP Class ID)<br> ipconfig /setclassid<br> <br> <br> ava Control Panel (If Installed)<br> jpicpl32.cpl<br> <br> Java Control Panel (If Installed)<br> javaws<br> <br> Keyboard Properties<br> control keyboard<br> <br> Local Security Settings<br> secpol.msc<br> <br> Local Users and Groups<br> lusrmgr.msc<br> <br> Logs You Out Of Windows<br> logoff<br> <br> Mcft Chat<br> winchat<br> <br> Minesweeper Game<br> winmine<br> <br> Mouse Properties<br> control mouse<br> <br> Mouse Properties<br> main.cpl<br> <br> Network Connections<br> control netconnections<br> <br> Network Connections<br> ncpa.cpl<br> <br> Network Setup Wizard<br> netsetup.cpl<br> <br> Notepad<br> notepad<br> <br> Nview Desktop Manager (If Installed)<br> nvtuicpl.cpl<br> <br> Object Packager<br> packager<br> <br> ODBC Data Source Administrator<br> odbccp32.cpl<br> <br> On Screen Keyboard<br> osk<br> <br> Opens AC3 Filter (If Installed)<br> ac3filter.cpl<br> <br> Password Properties<br> password.cpl<br> <br> Performance Monitor<br> perfmon.msc<br> <br> Performance Monitor<br> perfmon<br> <br> Phone and Modem Options<br> telephon.cpl<br> <br> Power Configuration<br> powercfg.cpl<br> <br> Printers and Faxes<br> control printers<br> <br> Printers Folder<br> printers<br> <br> Private Character Editor<br> eudcedit<br> <br> Quicktime (If Installed)<br> QuickTime.cpl<br> <br> Regional Settings<br> intl.cpl<br> <br> Registry Editor<br> regedit<br> <br> Registry Editor<br> regedit32<br> <br> Remote Desktop<br> mstsc<br> <br> Removable Storage<br> ntmsmgr.msc<br> <br> Removable Storage Operator Requests<br> ntmsoprq.msc<br> <br> Resultant Set of Policy (XP Prof)<br> rsop.msc<br> <br> Scanners and Cameras<br> sticpl.cpl<br> <br> Scheduled Tasks<br> control schedtasks<br> <br> Security Center<br> wscui.cpl<br> <br> Services<br> services.msc<br> <br> Shared Folders<br> fsmgmt.msc<br> <br> Shuts Down Windows<br> shutdown<br> <br> Sounds and Audio<br> mmsys.cpl<br> <br> Spider Solitare Card Game<br> spider<br> <br> SQL Client Configuration<br> cliconfg<br> <br> System Configuration Editor<br> sysedit<br> <br> System Configuration Utility<br> msconfig<br> <br> System File Checker Utility (Scan Immediately)<br> sfc /scannow<br> <br> System File Checker Utility (Scan Once At Next Boot)<br> sfc /scanonce<br> <br> System File Checker Utility (Scan On Every Boot)<br> sfc /scanboot<br> <br> System File Checker Utility (Return to Default Setting)<br> sfc /revert<br> <br> System File Checker Utility (Purge File Cache)<br> sfc /purgecache<br> <br> System File Checker Utility (Set Cache Size to size x)<br> sfc /cachesize=x<br> <br> System Properties<br> sysdm.cpl<br> <br> Task Manager<br> taskmgr<br> <br> Telnet Client<br> telnet<br> <br> User Account Management<br> nusrmgr.cpl<br> <br> Utility Manager<br> utilman<br> <br> Windows Firewall<br> firewall.cpl<br> <br> Windows Magnifier<br> magnify<br> <br> Windows Management Infrastructure<br> wmimgmt.msc<br> <br> Windows System Security Tool<br> syskey<br> <br> Windows Update Launches<br> wupdmgr<br> <br> Windows XP Tour Wizard<br> tourstart<br> <br> Wordpad<br> write</p> <div style="border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color windowtext; border-width: medium medium 1pt; padding: 0cm 0cm 1pt;"> <p style="border: medium none ; padding: 0cm; margin-bottom: 12pt;" class="MsoNormal"><br> <br> <b>Boost Up Your Internet Connection</b><br> <br> <b>METHOD 1</b><br> <br> For:<br> <b>WinME Win95 and Win98</b><br> <br> -----To do this click on your start button, then go to Search then open up Dial Up<br> Networking, then right click on your connection,Go to Properties then where the modem is<br> located(Tellin you wut modem you are using)Hit Configure, Next click on Connection, and<br> locate the Advaced button click on it and see where it says Extra Settings Type This:<br> <br> at&amp;fx<br> <br> Then hit apply, then close it out, and disconect from your internet, and then start it back<br> up...your connection speedwill be 5 times more...It made mine boost up from 45,200BPS to<br> 115,200BPS-----<br> <br> <br> <br> For:<br> <b>WinXP WinCE and Win2000</b><br> <br> -----Right click on "My Computer" then go to "Properties" then go to "Hardware" then go to<br> "Device Manager" then go to "Modems" Then select that tab so it scrolls down, then go to<br> your modem, and right click and go to "Properties" then go to "Advanced" Then in the box<br> saying "Extra Settings/Extra Initialization Commands" type in that box:<br> <br> at&amp;fx<br> <br> --then click ok then ok again and exit out of everything, disconect from tha internet and<br> reconnect and you will be connected at a faster speed. you wouold be connected at 42,200KBPS<br> and now your new connection will be 100,200KBPS--<br> <br> <b>METHOD 2</b><br> <br> Increase the speed your modem connects.<br> 1. Click start.<br> 2. Click control panel.<br> 3. Click modems.<br> 4. Click properties.<br> 5. Click the connection tab.<br> 6. Click advanced.<br> 7. In the extra settings dialog box add the string S11=40.<br> 8. Click Ok.</p> </div> <p style="" class="MsoNormal"><o:p>&nbsp;</o:p></p> <p style="" class="MsoNormal"><b>Windows uses 20% of your bandwidth ! </b><br> <br style=""> <br style=""> </p> <p style="" class="MsoNormal">CODE</p> <span style="font-size: 12pt; font-family: "Times New Roman";">Here's how to get it back:<br> <br> Click Start--&gt;Run--&gt;type \"gpedit.msc\" without the \"<br> <br> This opens the group policy editor. Then go to:<br> <br> Local Computer Policy--&gt;Computer Configuration--&gt;Administrative Templates--&gt;Network--&gt;QOS Packet Scheduler--&gt;Limit Reservable Bandwidth<br> <br> Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the 'Explain' tab :<br> <br> \"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.\"<br> <br> 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%.<br> <br> Works on XP Pro and 2000.<br> Other OS not tested.</span> <p class="multiply:no_crosspost"></p>
linkReply

Advertisement