icon

Feb 15, 2010

Change the Internet Explorer Title

Follow these simple steps
goto
Start

type Regedit

Go to
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window तितले

Enter what you want appear in the title bar


eg:YOUR NAME

SECRET CODES OF CHINA MOBILE

Engineering Mode: *#110*01#
factory Mode: *#987#
Restore Factory Settings: *#987*99#
Check Software Version: *#900# OR *#800#
Default User Codes: 1122, 3344, 1234, 5678
Change LCD Contrast: *#369#
To Enable COM Port: *#110*01# -> Device -> Set UART -> PS Config -> UART1/115200
Codes to Change Screen Language:
* *#0000# + Send : Set Default Language
* *#0007# + Send : Set Language to Russian
* *#0033# + Send : Set Language to French
* *#0034# + Send : Set Language to Spanish
* *#0039# + Send : Set Language to Italian
* *#0044# + Send : Set Language to English
* *#0049# + Send : Set Language to German
* *#0066# + Send : Set Language to Thai
* *#0084# + Send : Set Language to Vietnamese
* *#0966# + Send : Set Language to Arabic

INCREASE YOUR COMPUTER PERFORMANCE

THESE SIMPLE STEPS:
goto START=>RUN
type regedit
select HKEY_CURRENT_USER and
select control panel folder and
then select desktop folder
At the right hand side,you can see registry settings
select=>Menu ShowDelay
then right click and selec => modify
you can now see Edit String option
default value data is 400
change it to 000
now press ok and restart your computer.your computer will be 200% faster.

Feb 1, 2010

Computer Restarts at Windows XP Loading Screen

Computer Restarts at Windows XP Loading स्क्रीन

Computer restarting at the windows loading screen. Now this was a unique problem since I couldn’t tweak any of the windows settings without first getting into it, and in this case, this was impossible. After a few hours of research I concluded that the trouble is caused by damaged kernel32.dll file, so I simply extracted a new copy of kernel32.dll from the windows xp cd to my friend’s laptop and it started working fine again. Here’s a step by step procedure to do the same-
1. Start the recovery ronsole from the windows boot options menu. If you don’t have the recovery console installed, then start the recovery console from windows xp cd, like this,
a. Insert the windows xp cd into the cd drive and restart the computer to boot from this cd.
b. Follow all the prompts during the text based part of the windows xp setup. Choose recover or repair option by pressing R.
c. Type the administrator’s password when prompted.
2. Now you will be at command prompt. Type cd system32 and press enter
3. Then type ren kernel32.dll kernel32.old and press enter
4. Now type map and then press enter.
5. Now note the drive letter that is assigned to assigned to the cd drive that contains the windows xp cd. It will be displayed in a format similar to this,
D:\Device\CdRom0
6. Type
Expand D:\i386\kernel32.dl_
where D is the drive letter of the cd drive that contains the windows xp cd. This may be different for your computer. See the output of step 5 to find out what is the drive letter for your computer. (Also, note the underscore character after the “l” in kernel32.dl_)
The following message will be displayed after the above command,
Kernel32.dll, 1 file(s) expanded.
7. Type exit to restart the computer.
Hopefully this will solve the problem of computer restarting at the loading screen. If not, then use comments below to post your special case.

Attrib Command

Microsoft Windows 95, 98, and ME syntax

Displays or changes file attributes.

ATTRIB [+R | -R] [+A | -A] [+S | -S] [+H | -H] [[drive:][path]filename] [/S]

+Sets an attribute.
-Clears an attribute.
RRead-only file attribute.
AArchive file attribute.
SSystem file attribute.
HHidden file attribute.
/SProcesses files in all directories in the specified path.

Microsoft Windows 2000 and Windows XP syntax

Displays or changes file attributes.

ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [[drive:] [path] filename] [/S [/D]]

+Sets an attribute.
-Clears an attribute.
RRead-only file attribute.
AArchive file attribute.
SSystem file attribute.
HHidden file attribute.
/SProcesses files in all directories in the specified path.
/DProcess folders as well.

Microsoft Windows 2000 and Windows XP recovery console syntax

Note: The below options are the available options in the Windows recovery console.

Changes attributes on one file or directory.

ATTRIB -R | +R | -S | +S | -H | +H | -C | +C filename

+Sets an attribute.
-Clears an attribute.
RRead-only file attribute.
SSystem file attribute.
HHidden file attribute.
CCompressed file attribute.

Examples

attrib

Typing attrib by itself will display all files in the current directory and each of their attributes. If any file is hidden it will also display those files.

attrib +r autoexec.bat

Add the read-only attribute to the autoexec.bat file so it cannot be modified until the read only attribute is taken off. This is helpful for important system files or any other file that you do not want to have mistakenly edited or changed by another program.

attrib +h config.sys

Add the hidden attribute to the config.sys file causing it to be not be seen by the average user.

attrib -h config.sys

This command will do the opposite of the above command. Instead of hiding the file it will unhide the file if hidden.