Posted in
Labels:
Fun,
Optimising Xp
|
9:06 PM
Firefox is already pretty damn fast but did you know that you can tweak it and improve the speed even more?
That's the beauty of this program being open source.
Here's what you do:
In the URL bar, type “about:config” and press enter. This will bring up the configuration “menu” where you can change the parameters of Firefox.
Double Click on the following settings and put in the numbers below - for the true / false Booleans - they’ll change when you double click.
Code:
browser.tabs.showSingleWindowModePrefs – true
network.http.max-connections – 48
network.http.max-connections-per-server – 16
network.http.max-persistent-connections-per-proxy – 8
network.http.max-persistent-connections-per-server – 4
network.http.pipelining – true
network.http.pipelining.maxrequests – 100
network.http.proxy.pipelining – true
network.http.request.timeout – 300
One more thing… Right-click somewhere on that screen and add a NEW -> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0”. This value is the amount of time the browser waits before it acts on information it receives. Since you’re broadband - it shouldn’t have to wait.
Now you should notice you’re loading pages MUCH faster now!
Posted in
Labels:
Fun,
Optimising Xp
|
8:52 PM
Actually we can delete the temporary files manually by typing %temp% in run and delete all the files in the folder.But these temporary files can be deleted automatically whenever it is created in xp.
Follow the steps :
+Go to run and type gpedit.msc
+Navigate through -> Computer Configuration/Administrative Templates/WindowsComponents/Terminal Services/Temporary Folder
+Then right click "Do Not Delete Temp Folder Upon Exit" and go to properties and hit disable.
Now from next time when Windows puts a temp file in that folder it will be automatically deleted when it is created
Posted in
Labels:
Fun,
Optimising Xp
|
8:47 PM
Steps:
1] Browse C:\WINDOWS\system32\drivers\etc
2] Find the file named "HOSTS"
3] Open it in notepad
4] Under "127.0.0.1 localhost" Add 127.0.0.2 www.sitenameyouwantblocked.com , and that site will no longer be accessable.
5] Done!
-So-
127.0.0.1 localhost
127.0.0.2 www.blockedsite.com
-->www.blockedsite.com is now unaccessable<--
For every site after that you want to add, just add "1" to the last number in the internal ip (127.0.0.2) and then the addy like before.
IE: 127.0.0.3 www.blablabla.com127.0.0.4 www.blablabla.com127.0.0.5 www.blablabla.com
etc
Posted in
Labels:
Fun,
Optimising Xp
|
8:36 PM
goto ---> run ---> regedit--->HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
Now in left side panel, select "StorageDevicePolicies" key, again right click to create new DWORD value then label it "WriteProtect".
Set its value to "1". But again enable this option set its values "0".
Now close the registry editor and restart your computer after any changes to go into effect.
Posted in
Labels:
Fun,
Optimising Xp
|
8:18 PM
hey guys u might have learned the trick to lock folders by creating two batch files.
But this trick is slightly modified so that u can even assign a password
1) first of all copy the following code in notepad
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Step
2) Now you can see "type your password here" in the code (23rd line) . Delete that and type in your password there.
3) save this file with any name and extension ( .bat)
4) Now double click the batch file. It will create a folder named "Locker"
5) Put all the files u want to lock in that folder
6) Now double click on the batch file to lock the folder.
7) Now if you want to unlock the folder double click that batch file again and you will be prompted for password.
note: All such kind of tricks fail when you change the folder name
Posted in
Labels:
Optimising Xp
|
9:50 PM
CTRL+A - Select all items on the current page
CTRL+D - Add the current page to your Favorites
CTRL+E - Open the Search bar
CTRL+F - Find on this page
CTRL+H - Open the History bar
CTRL+I - Open the Favorites bar
CTRL+N - Open a new window
CTRL+O - Go to a new location
CTRL+P - Print the current page or active frame
CTRL+S - Save the current page
CTRL+W - Close current browser window
CTRL+ENTER - Adds the http://www. (url) .com
SHIFT+CLICK - Open link in new window
BACKSPACE - Go to the previous page
ALT+HOME - Go to your Home page
HOME - Move to the beginning of a document
TAB - Move forward through items on a page
END - Move to the end of a document
ESC - Stop downloading a page
F11 - Toggle full-screen view
F5 - Refresh the current page
F4 - Display list of typed addresses
F6 - Change Address bar and page focus
ALT+RIGHT ARROW - Go to the next page
SHIFT+CTRL+TAB - Move back between frames
SHIFT+F10 - Display a shortcut menu for a link
SHIFT+TAB - Move back through the items on a page
CTRL+TAB - Move forward between frames
CTRL+C - Copy selected items to the clipboard
CTRL+V - Insert contents of the clipboard
ENTER - Activate a selected link
HOME - Move to the beginning of a document
END - Move to the end of a document
F1 - Display Internet Explorer Help
Posted in
Labels:
Optimising Xp
|
9:47 PM
Add/Remove Programs control appwiz.cpl
Date/Time Properties control timedate.cpl
Display Properties control desk.cpl
FindFast control findfast.cpl
Fonts Folder control fonts
Internet Properties control inetcpl.cpl
Keyboard Properties control main.cpl keyboard
Mouse Properties control main.cpl
Multimedia Properties control mmsys.cpl
Network Properties control netcpl.cpl
Password Properties control password.cpl
Printers Folder control printers
Sound Properties control mmsys.cpl sounds
System Properties control sysdm.cpl
Posted in
Labels:
Optimising Xp
|
9:23 PM
compmgmt.msc - Computer management
devmgmt.msc - Device manager
diskmgmt.msc - Disk management
dfrg.msc - Disk defrag
eventvwr.msc - Event viewer
fsmgmt.msc - Shared folders
gpedit.msc - Group policies
lusrmgr.msc - Local users and groups
perfmon.msc - Performance monitor
rsop.msc - Resultant set of policies
secpol.msc - Local security settings
services.msc - Various Services
msconfig - System Configuration Utility
regedit - Registry Editor
msinfo32 - System Information
sysedit - System Edit
win.ini - windows loading information(also system.ini)
winver - Shows current version of windows
mailto: - Opens default email client
command- Opens command prompt
Posted in
Labels:
.PDF,
Downloads,
Optimising Xp
|
9:04 PM
Posted in
Labels:
Downloads,
Images
|
9:39 PM
Posted in
Labels:
Downloads,
Videos
|
7:50 PM
Posted in
Labels:
Downloads,
Videos
|
4:20 PM
Posted in
Labels:
Downloads,
Videos
|
4:08 PM
Posted in
Labels:
Applications,
Downloads
|
3:02 PM
Posted in
Labels:
Applications,
Downloads
|
2:07 PM
Posted in
Labels:
.PDF,
Downloads
|
12:50 PM