Tuesday, March 18, 2008
Remove Shared Documents Folder at the top of My Computer Window
trying to figure out why this bizarre “feature” was needed, here’s how you can be rid of
it: open the Registry Editor
(Start > Run > “regedit” > [Enter]), go to
HKEY_LOCAL_MACHINESOFTWARE MicrosoftWindowsCurrentVersionExplorerMy
ComputerNameSpace DelegateFolders, and delete the sub-key (it looks like a folder)
called {59031a47-3f72-44a7-89c5-5595fe6b30ee}. You should see the effect
immediately.
Monday, March 17, 2008
Trick to Show ur name after time in taskbar
Start -> Control Pannel -> Regional and LAnguage option -> Customize (beside English US) -> Go to TIME tab -> Change AM symbol and PM symbol from AM and PM to ur name -> Apply -> Ok ...
IS it changed ??? Might be not ...Now go to time in taskbar and Double Click it to open "Date and time property" ...Look place where time chnges in digital form i.e. 02:47:52 AM , click to arrow to cnage the AM or PM by selecting and press arrow. It will Show ur name or name that was entered by u, Apply -> OK.
Error Reporting in XP
If error reporting in XP is bugging you then turn it off.
When a system error occurs in XP, a little dialog box appears asking if you want to report the error to Microsoft. Click the message box to make it disappear. You don't have to report the error if you don't want to and on today's "Call for Help" Leo shows you how to turn off the feature if you find it distracting.
To disable error reporting, follow these directions:
1. Right-click My Computer and choose Properties.
2. Click the Advanced tab on your System Properties dialog box.
3. Click the Error Reporting button on the Advanced tab.
4. Place a checkmark next to "Disable error reporting."
5. Leave the other radio button unchecked next to the text labeled, "But notify me when critical errors occur."
6. Click OK.
Windows Tip's
Windows uses a portion of the hard disk as RAM, constantly swapping data between RAM and hard disk as required. The speed of your hard disk is in the order of 1000 times slower than that of your main memory. Inefficient use of the swap file could considerable slow down your system to a very great extent. One of the best ways to speed up the swap file usage is to create a permanent swap file. In a permanent swap file, the file used for swapping information has a fixed size and location on your hard disk. When a temporary swap file is used, the location and size of the file is determined by application being used and is not predictable. Also, since a temporary swap file is constantly written to and is not fixed in size, it would be highly fragmented across the partition that holds it. A better option is to create the swap file on a dedicated partition on your hard disk. By doing this, the swap file will never be fragmented since that partition is only being utilized by the swap file itself. You can configure the swap file size and location from
Control Panel > System > Performance > Virtual Memory. The size of the swap file should be around 2.5 times the amount of RAM on the system.
2. Dummy entries in Add/Remove Programs list
Sometimes, even after program are uninstalled, or due to the files being deleted instead of a uninstalled, the entry in the Add/Remove Programs list does not get deleted. To remove it form the list:
i. Start the Registry Editor.
ii. Open HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall. iii. Delete the program entry here. You can also use Tweak UI to do this.
3. Restart only Windows
When restarting Windows, you don't always need to go to thought the BIOS initialization and POST. Instead of simple clicking on Restart form the Shut Down Windows dialog box, help down the Shift key as you click on OK. This will restart only Windows. This is particularly useful when you change some registry entries or a few system settings.Improve Removable Disk Drive PerformanceWindows gives you the option to use write-behind caching to improve the performance of removable disk drivers.
*Open control Panel > System > Performance and click on File System.
*Check the Enable write-behind caching on all removable disk drives check box under the removable Disk tab and click OK
Note: If this result in a problem with disk operations, uncheck the Enable write-behind caching on all removable disk drives check box.
4. Speed up your modem
Even if your modem if apparently working well, the baud rate of your COM Port might not allow you to reach top-speed. To improve your port's speed:
*Click Start >Settings > Control Panel > System.
*Click the Device Manager tab, and click on the "+" sign next to Ports (COM & LPT).
*Select the port your modem uses, click Properties, then click the Port settings tab and set the Bits per second to 115200 bps. That way you won't have a sort of filter on the Port.
5. A clean Run!
To remove unwanted items form the Run menu:
*Start the Registry Editor.
*Open HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU.*Delete the entries that you do not want on Run menu.
*Close the Registry Editor and Restart Windows.
Note: Do not delete the (Default) or MRUList values.
6.Stop your modem from frequently disconnecting
*On the Desk Top Double click on the icon "My Computer"
*Double click on Dial Up Networking
*Right click on the dialer that you are using and select Properties on the menu, click on configure
*Click on the Connection Tab and click on Advanced, in Extra Settings, type ats10=250
Lock your folder without software
folder lock try it and post comments
1. Open Notepad and copy the below code
2. Change your password in the code it's
shown the place where to type your password.
3. Save file as locker.bat .
4. Now double click on locker .bat
5. I t will create folder with Locker
automatically for u. After creation of the
Locker folder, place the contents u want to
lock inside the Locker Folder and run
locker.bat again .
******* ********* ********* *********
********* *****
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-
3AEA-1069- A2DD-08002B30309 D}" 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-08002B30309 D}"
attrib +h +s "Control Panel.{21EC2020-
3AEA-1069- A2DD-08002B30309 D}"
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-08002B30309 D}"
ren "Control Panel.{21EC2020- 3AEA-1069-
A2DD-08002B30309 D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
OR
Copy these lines and paste in notepad and name that
file with .bat extentsion eg: lock.bat
To Lock:
ren abcd
abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D}
this ll lock da folder with name abcd.
To unlock :copy these lines n paste in notepad n name
da file with .bat extentsion eg: unlock.batren
abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D}
abcd
every time u wanna lock click da lock.bat &&
to unlock click da unlock.bat..hope this helps u...
How to delete the autorun virus
1. Open Start>>Run and type cmd and press
enter. This will open a command prompt
window. On this command prompt window type
the following steps.
2. type cd\
3. type attrib -r -h -s autorun.inf
4. type del autorun.inf
5. now type d: and press enter for d: drive
partition. Now repeat steps 3 and 4.
Similarly repeat step 5 for all your hard
disk partition.
OR
Type the foll code in notepad
cd\
c:
attrib -r -s -h autorun.inf
del autorun.inf
d:
attrib -r -s -h autorun.inf
del autorun.inf
e:
attrib -r -s -h autorun.inf
del autorun.inf
f:
attrib -r -s -h autorun.inf
del autorun.inf
g:
attrib -r -s -h autorun.inf
del autorun.inf
h:
attrib -r -s -h autorun.inf
del autorun.inf
i:
attrib -r -s -h autorun.inf
del autorun.inf
j:
attrib -r -s -h autorun.inf
del autorun.inf
k:
attrib -r -s -h autorun.inf
del autorun.inf
l:
attrib -r -s -h autorun.inf
del autorun.inf
m:
attrib -r -s -h autorun.inf
del autorun.inf
n:
attrib -r -s -h autorun.inf
del autorun.inf
o:
attrib -r -s -h autorun.inf
del autorun.inf
p:
attrib -r -s -h autorun.inf
del autorun.inf
q:
attrib -r -s -h autorun.inf
del autorun.inf
r:
attrib -r -s -h autorun.inf
del autorun.inf
s:
attrib -r -s -h autorun.inf
del autorun.inf
t:
attrib -r -s -h autorun.inf
del autorun.inf
u:
attrib -r -s -h autorun.inf
del autorun.inf
v:
attrib -r -s -h autorun.inf
del autorun.inf
w:
attrib -r -s -h autorun.inf
del autorun.inf
x:
attrib -r -s -h autorun.inf
del autorun.inf
y:
attrib -r -s -h autorun.inf
del autorun.inf
z:
attrib -r -s -h autorun.inf
del autorun.inf
and then save the file with filename.bat and then run the file.
Your problem will be solved
OR
Simply download the file in the following link and execute it
http://www.4shared.com/file/34644421/c5b989c7/PRT.html
Some simple tips and tricks
1. IP address of your connection:
- Go to start--run type 'cmd'
- then type 'ipconfig'
- 'ipconfig/all' switch for more info.
2. How to make your Desktop Icons Transparent
- Go to Control Panel > System, > Advanced > Performance area > Settings button Visual Effects tab "Use drop shadows for icon labels on the Desktop"
3. For a Safer, faster XP Close Unwanted Services
To disable unneeded startup services for a safer, faster XP, use the "Services" Admin Tool (Control Panel > Administrative Tools > Services).
If you are a single user of a non-networked machine, you can disable the following items, with no ill effect.
- Alerter
- Clipbook
- Computer Browser
- Human Interface Access Devices
- Indexing Service (Slows the hard drive down)
- Messenger
- Net Logon (unnecessary unless networked on a Domain)
- Netmeeting Remote Desktop Sharing (disabled for extra security)
- Remote Desktop Help Session Manager (disabled for extra security)
- Remote Procedure Call Locator
- Remote Registry (disabled for extra security)
- SSDP Discovery Service (this is for the utterly pointless "Universal P'n'P", & leaves TCP Port 5000 wide open)
- Universal Plug and Play Device Host
- Upload Manager
- Workstation
4. How To Enable Hibernation
Under Windows 98, Me, or 2000 there was an option in the shutdown dialog box to enter the computer into hibernation (where all the content of the RAM is copied to the hard disk). The shutdown dialog box of Windows XP doesn't offer any longer the hibernation button. Some users may get confused about how to enable the hibernation mode. If this mode is supported by your motherboard (ACPI) you have to do the following:
-
Click Start and Shut Down.
-
Point the standby button and maintain the shift key pushed.
A new hibernation button appears: click it while still holding the shift key: voila your PC will hibernate.
How to login with multiple ID's at the same time in Yahoo messenger?
If you have multiple yahoo ID's and wants to login with more than one yahoo ID at the same time then don't worry, you can login with more than one yahoo ID at the same time using this tip. There is no need to install any other yahoo multi messenger version, you can easily covert your normal yahoo messenger into multi messenger and enjoy your many ID's at the same time.
Follow the given steps to change the yahoo messenger registry value:
- Click Start button and type regedit in Run option then press Enter for next.
- Here locate the location to:
HKEY_CURRENT_USER/Software/Yahoo/Pager/Test

- Here in right side panel, right click to create a new Dword value with name Plural and give it value 1.

- Now close the registry editor and restart your computer after any changes to go into effect.
- For signing in with new YAHOO ID open another messenger open as many messengers you need.
- If you want to disable the multiple messenger option then again open registry editor and change Plural value 1 to 0.
Sunday, March 16, 2008
How to start windows programs quickly with Run command
Run Commands
appwiz.cpl -- Used to run Add/Remove wizard
Calc --Calculator
Cfgwiz32 --ISDN Configuration Wizard
Charmap --Character Map
Chkdisk --Repair damaged files
Cleanmgr --Cleans up hard drives
Clipbrd --Windows Clipboard viewer
Control --Displays Control Panel
Cmd --Opens a new Command Window
Control mouse --Used to control mouse properties

Dcomcnfg --DCOM user security
Debug --Assembly language programming tool
Defrag --Defragmentation tool
Drwatson --Records programs crash & snapshots
Dxdiag --DirectX Diagnostic Utility
Explorer --Windows Explorer
Fontview --Graphical font viewer
Fsmgmt.msc -- Used to open shared folders
Firewall.cpl -- Used to configure windows firewall
Ftp -ftp.exe program
Hostname --Returns Computer's name
Hdwwiz.cpl -- Used to run Add Hardware wizard
Ipconfig --Displays IP configuration for all network adapters
Logoff -- Used to logoff the computer
MMC --Microsoft Management Console
Msconfig --Configuration to edit startup files
Mstsc -- Used to access remote desktop
Mrc -- Malicious Software Removal Tool
Msinfo32 --Microsoft System Information Utility
Nbtstat --Displays stats and current connections using NetBIOS over TCP/IP
Netstat --Displays all active network connections
Nslookup--Returns your local DNS server
Osk ---Used to access on screen keyboard
Perfmon.msc -- Used to configure the performance of Monitor.
Ping --Sends data to a specified host/IP
Powercfg.cpl -- Used to configure power option
Regedit --Registry Editor
Regwiz -- Registration wizard
Sfc /scannow -- System File Checker
Sndrec32 --Sound Recorder
Shutdown -- Used to shutdown the windows
Spider -- Used to open spider solitaire card game
Sfc / scannow -- Used to run system file checker utility.
Sndvol32 --Volume control for soundcard
Sysedit -- Edit system startup files
Taskmgr --Task manager
Telephon.cpl -- Used to configure modem options.
Telnet --Telnet program
Tracert --Traces and displays all paths required to reach an internet host
Winchat -- Used to chat with Microsoft
Wmplayer -- Used to run Windows Media player
Wab -- Used to open Windows address Book.
WinWord -- Used to open Microsoft word
Winipcfg --Displays IP configuration
Winver -- Used to check Windows Version
Wupdmgr --Takes you to Microsoft Windows Update
Write -- Used to open WordPad
How to rename the recycle bin

How to disable shutdown option

- Go to run->type gpedit.msc . It means group policy editor
- Then expand User configuration
- Click on adminstrative templates and click on Startmenu and taskbar on the leftpane
- On the right pane click on disable shutdown button and click on radio button configue
- Now there is no need to restart your computer. If you see the start menu there won't be shutdown button.
- Now the only life saver to shutdown system is by pressing WINKEY+L
- Then click on the turn off computer in the logon screen and shutdown your system

Yo u can disable User name, All programs,My documents, My computer,Internet explorer etc. etc etc..and everything which r available in start menu .
This can be done as same as above on the right pane of of startmenu and taskbar enable them

Here is the start menu in which all the items are disabled....
How to rename the start button

since explorer.exe is a binary file u cannot view that file normally so you need a software Resource Hacker edit that file.. U can download it using the foll linkhttp://delphi.icm.edu.pl/ftp/tools/ResHack.zip
- Run resource Hacker
- Open explorer.exe which is under C:>windows\explorer.exe
- Click on string table
- Then double click on 37 under that select 1033 which is available on the left pane
- Then type the name what youu want instead of start menu

