removing 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: 1. Start the Registry Editor. 2.
Open HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows \current version\Uninstall. 3. Delete the program entry here. You
can also use TweakUI to do this
Showing posts with label registry entry. Show all posts
Showing posts with label registry entry. Show all posts
Commands with Short description
Posted by
R.D
on Thursday, March 11, 2010
/
Labels:
registry entry,
Run,
shortcut,
Windows
/
Comments: (0)
1. assign
The command redirects requests for disk operations on one drive to a different drive.
assign [x[:]=y[:][...]]
assign /STATUS
Options:
* x The drive letter to reassign.
* y The drive letter that x: will be assigned to.
* /STATUS Displays the current drive assignments.
If typed without parameters then all drive letters are reset to original assignments.
The command is available in MS-DOS 5.00.
2. append
(External)
Display or sets the search path for data files. DOS will search the specified path(s) if the file is not found in the current path. This had some creative uses, such as allowing non-CD based games to be run from the CD, with configuration/save files stored on the HD.
append;
append [d:]path[;][d:]path[...]
append [/X:]n|off][/E]
3.attrib
Change or view the attributes of one or more files. It defaults to displaying the attributes of all files in the current directory.
Options:
* To add an attribute attach a '+' in front of it.
* To remove an attribute attach a '-' in front of it
* Attributes include
o R - Read-only
o A - Archive
o S - System
o H - Hidden
attrib [+|-ahrs] [filespec]
Directory Attrib Functions: It is also possible to use ATTRIB across directories.
[drive:][path][filename]
Specifies a file or files for attrib to process.
*
o /D - Process folders as well.
o /S - Process matching files in the current folder and all subfolders.
Roughly equivalent to the Unix commands chattr and lsattr.
4. call
Calls one batch program from another. A new batch file context is created with the specified arguments and control is passed to the statement after the label specified.
Syntax:
call [filespec][batch file parameters]
* filespec: name and if necessary path of the new batch file
* parameters: switches
5. cd or chdir
Change current directory. Displays the current working directory when used without a path parameter.
cd
displays the current working directory on the current drive.
cd f:
displays the current working directory on F:.
cd directory
changes the working directory on the current drive to directory.
chdir e:directory
changes the working directory on E: to directory.
cd ..
changes the working directory to the parent directory (up one directory level).
cd \
changes the working directory to the root (top level) directory of the current drive.
Equivalent to the Unix command cd (with a path parameter), or pwd (without a parameter). cd .. changes to the parent directory.
6. chcp
Changes the code page used to display character glyphs in a console window.
chcp [codepage]
With a numeric parameter, this command changes the codepage setting to codepage. Without a parameter, the command displays the currently active codepage.
7. chkdsk
Verifies a hard disk or a floppy disk for file system integrity.
Options:
* /F :
* /P : Forces a full disk verification
* /R : Searches for defective sectors and recovers legible information (applies /F)
chkdsk drive [[path]filename] [/F] [/V]
Equivalent to the Unix command fsck
8. choice
Allows for batch files to prompt the user to select one item from a set of single-character choices.
Introduced in MS-DOS 6;[1] DR-DOS 7.03.[2]
9. cls
Clears the screen.
cls
Equivalent to the Unix clear.
10. copy
Copies files from one location to another. The destination defaults to the current directory. If multiple source files are indicated, the destination must be a directory, or an error will result.
copy filespec [destination]
Files may be copied to devices. For example, copy file lpt1 sends the file to the printer on LPT1. copy file con outputs file to the screen ("console"), which can also be done using type file. Devices themselves may be copied: copy con file takes the text typed into the console and puts it into file, stopping when EOF (Ctrl+Z) is typed.
Files may be concatenated using +. For example, copy file1+file2 file_cat will concatenate the files and output them as file_cat. There are two switches to modify the command's behaviour, /a (text mode, the default) and /b (binary mode). In text mode, copy will stop when it reaches the EOF character; in binary mode, the files will be concatenated in their entirety, ignoring EOF characters. Examples:
copy /a alpha.txt + beta.txt gamma.txt
copy /b alpha.mpg + beta.mpg gamma.mpg
Equivalent Unix commands are cp (for copying) and cat (for concatenation). Device files may be copied in Unix as well, e.g. cp file /dev/tty will display a file on the screen (but cat file is more commonly used here).
Equivalent RT-11/RSX-11/OpenVMS command is copy.
11. defrag
(in MS/PC-DOS; diskopt in DR-DOS)
Defragments a disk drive.
Options:
* -A – Analyses the fragmentation of a disk drive
* -F – Force defragmentation even if disk space is low
* -V – Verbose output mode
Example of usage:
defrag driveletter: -a -v
No Unix equivalent.
12. del or erase
Deletes one or more files.
del filename
erase filename
Equivalent to the Unix command rm.
Equivalent in RT-11/RSX-11/OpenVMS operating systems line is delete command which can be contracted to del.
13. deltree
Deletes a directory along with all of the files and subdirectories that it contains. Normally, it will ask for confirmation of such a drastic action.
deltree [/y] directory
The /y parameter, if present, tells the deltree command to carry out without first prompting for confirmation.
The deltree command is not included in recent Microsoft Windows operating systems. Deleting a non-empty directory in those versions of Windows where the command is not included, can be achieved by using the rmdir command as in the following example:
rmdir /s [/q] directory
In Unix, the functionality of deltree is provided by the rm command with the parameter -r (or -rf for the /y switch).
14. dir
Lists the contents of a directory.
The dir command typed by itself, displays the disk's volume label and serial number; one directory or filename per line, including the filename extension, the file size in bytes, and the date and time the file was last modified; and the total number of files listed, their cumulative size, and the free space (in bytes) remaining on the disk. The command is one of the few commands that exist from the first versions of DOS.
dir [drive:][path][filename] [parameters]
Most commonly used parameters of dir include:
* /W : Displays the listing in wide format, with as many as five filenames or directory names on each line.
* /P : Pause at every page
* /S : Also look in subdirectories
* /Axx: Display files with the specified attributes only
* /Oxx: Modifies sort order
* /B : Uses bare format (no heading information or summary)
* > [drive:][path][filename] : To Store Result in a text file;(c:\dir > c:\fileList.txt)
Possible attributes for the A parameter are D (directories), R (read-only files), H (hidden files), A (files/directories with the archive bit on), and S (system files). The prefix - negates an attribute; attributes can be combined (e.g. /A:/A means directories with the archive bit on).
Possible sort orders are N (name), S (size), E (extension), D (date and time), A (last access date), and G (group directories first). The prefix - reverses the order.
Other less commonly used parameters of dir include:
* /D : Display wide format but sorted by column
* /L : Display forced into lowercase
* /N : Display forced into long file name format instead of 8.3
* /Q : Displays the owner of each file
* /X : Display shows 8.3 names next to long file names
The default parameters of dir can be set using the DIRCMD environment variable.
Equivalent to the Unix command ls (the option -l is "long" list format, it works the opposite way from /w.)
Equivalent in RT-11/RSX-11/OpenVMS operating systems line is directory command which can be contracted to dir.
15. echo
Prints its own arguments back out to the DOS equivalent of the standard output stream. Usually, this means directly to the screen, but the output of echo can be redirected like any other command. Often used in batch files to print text out to the user.
echo this is text Outputs 'this is text'
echo. Outputs a blank line
Another important use of the echo command is to toggle echoing of commands on and off in batch files.
echo on turns on echoing of commands
echo off turns off echoing of commands
Traditionally batch files begin with the @echo off statement. This says to the interpreter that echoing of commands should be off during the whole execution of the batch file thus resulting in a "tidier" output. The @ symbol declares that this particular command (echo off) should also be executed without echo. For example the following 2 batch files are equivalent:
Batch1.bat:
@echo off
echo The files in your root directory:
dir /b /a-d c:\
Batch2.bat:
@echo The files in your root directory:
@dir /b /a-d c:\
Echo can be used to write to files directly from the console, by redirecting the output stream:
echo text > filename
Echo can also be used to append to files directly from the console, again by redirecting the output stream:
echo text >> filename
To type more than one line from the console into a file, use copy con (above).
Equivalent to the Unix command echo.
16. exe2bin
Converts an executable (.exe) file into a binary file with the extension .com, which is a memory image of the program.
The size of the resident code and data sections combined in the input .exe file must be less than 64KB. The file must also have no stack segment.
17. exit
Exits the current command processor. If the exit is used at the primary command, it has no effect unless in a DOS window under Microsoft Windows, in which case the window is closed and the user returns to the desktop.
EXIT
Exit also exists in Unix-shells. If an exit command is used in the primary command shell under Unix, however, it will logoff the user, similar to the control-D keystroke.
18. fastopen
Main article: FASTOPEN
19. fc or comp
Compares two files or sets of files and displays the differences between them.
FC [/A] [/C] [/L] [/LBn] [/N] [/T] [/W] [/nnnn] [drive1:][path1]filename1 [drive2:][path2]filename2
FC /B [drive1:][path1]filename1 [drive2:][path2]filename2
/A Displays only first and last lines for each set of differences.
/B Performs a binary comparison.
/C Disregards the case of letters.
/L Compares files as ASCII text.
/LBn Sets the maximum consecutive mismatches to the specified number of lines.
/N Displays the line numbers on an ASCII comparison.
/T Does not expand tabs to spaces.
/W Compresses white space (tabs and spaces) for comparison.
/nnnn Specifies the number of consecutive lines that must match after a mismatch.
[drive1:][path1]filename1 Specifies the first file or set of files to compare.
[drive2:][path2]filename2 Specifies the second file or set of files to compare.[citation needed]
Equivalent to the Unix commands comm, cmp and diff.
20. fdisk
Manipulates hard disk partition tables. The name derives from IBM's habit of calling hard drives fixed disks. When run from the command line, it displays a menu of various partitioning operations:
1. Create DOS partition or Logical DOS Drive
2. Set active partition
3. Delete partition or Logical DOS Drive
4. Display partition information
5. Change current fixed disk drive (only available if the computer has more than one hard drive)
FDISK /MBR installs a standard master boot record on the hard drive.
FDISK /MBR #: where # is other partition on system. Completes above command on indicated partition.
eg: "C:\FDISK /MBR D:" would install boot record on D:\ partition.
Fdisk exists under Unix with the same name, but it is an entirely different program. However they share purposes.
The command redirects requests for disk operations on one drive to a different drive.
assign [x[:]=y[:][...]]
assign /STATUS
Options:
* x The drive letter to reassign.
* y The drive letter that x: will be assigned to.
* /STATUS Displays the current drive assignments.
If typed without parameters then all drive letters are reset to original assignments.
The command is available in MS-DOS 5.00.
2. append
(External)
Display or sets the search path for data files. DOS will search the specified path(s) if the file is not found in the current path. This had some creative uses, such as allowing non-CD based games to be run from the CD, with configuration/save files stored on the HD.
append;
append [d:]path[;][d:]path[...]
append [/X:]n|off][/E]
3.attrib
Change or view the attributes of one or more files. It defaults to displaying the attributes of all files in the current directory.
Options:
* To add an attribute attach a '+' in front of it.
* To remove an attribute attach a '-' in front of it
* Attributes include
o R - Read-only
o A - Archive
o S - System
o H - Hidden
attrib [+|-ahrs] [filespec]
Directory Attrib Functions: It is also possible to use ATTRIB across directories.
[drive:][path][filename]
Specifies a file or files for attrib to process.
*
o /D - Process folders as well.
o /S - Process matching files in the current folder and all subfolders.
Roughly equivalent to the Unix commands chattr and lsattr.
4. call
Calls one batch program from another. A new batch file context is created with the specified arguments and control is passed to the statement after the label specified.
Syntax:
call [filespec][batch file parameters]
* filespec: name and if necessary path of the new batch file
* parameters: switches
5. cd or chdir
Change current directory. Displays the current working directory when used without a path parameter.
cd
displays the current working directory on the current drive.
cd f:
displays the current working directory on F:.
cd directory
changes the working directory on the current drive to directory.
chdir e:directory
changes the working directory on E: to directory.
cd ..
changes the working directory to the parent directory (up one directory level).
cd \
changes the working directory to the root (top level) directory of the current drive.
Equivalent to the Unix command cd (with a path parameter), or pwd (without a parameter). cd .. changes to the parent directory.
6. chcp
Changes the code page used to display character glyphs in a console window.
chcp [codepage]
With a numeric parameter, this command changes the codepage setting to codepage. Without a parameter, the command displays the currently active codepage.
7. chkdsk
Verifies a hard disk or a floppy disk for file system integrity.
Options:
* /F :
* /P : Forces a full disk verification
* /R : Searches for defective sectors and recovers legible information (applies /F)
chkdsk drive [[path]filename] [/F] [/V]
Equivalent to the Unix command fsck
8. choice
Allows for batch files to prompt the user to select one item from a set of single-character choices.
Introduced in MS-DOS 6;[1] DR-DOS 7.03.[2]
9. cls
Clears the screen.
cls
Equivalent to the Unix clear.
10. copy
Copies files from one location to another. The destination defaults to the current directory. If multiple source files are indicated, the destination must be a directory, or an error will result.
copy filespec [destination]
Files may be copied to devices. For example, copy file lpt1 sends the file to the printer on LPT1. copy file con outputs file to the screen ("console"), which can also be done using type file. Devices themselves may be copied: copy con file takes the text typed into the console and puts it into file, stopping when EOF (Ctrl+Z) is typed.
Files may be concatenated using +. For example, copy file1+file2 file_cat will concatenate the files and output them as file_cat. There are two switches to modify the command's behaviour, /a (text mode, the default) and /b (binary mode). In text mode, copy will stop when it reaches the EOF character; in binary mode, the files will be concatenated in their entirety, ignoring EOF characters. Examples:
copy /a alpha.txt + beta.txt gamma.txt
copy /b alpha.mpg + beta.mpg gamma.mpg
Equivalent Unix commands are cp (for copying) and cat (for concatenation). Device files may be copied in Unix as well, e.g. cp file /dev/tty will display a file on the screen (but cat file is more commonly used here).
Equivalent RT-11/RSX-11/OpenVMS command is copy.
11. defrag
(in MS/PC-DOS; diskopt in DR-DOS)
Defragments a disk drive.
Options:
* -A – Analyses the fragmentation of a disk drive
* -F – Force defragmentation even if disk space is low
* -V – Verbose output mode
Example of usage:
defrag driveletter: -a -v
No Unix equivalent.
12. del or erase
Deletes one or more files.
del filename
erase filename
Equivalent to the Unix command rm.
Equivalent in RT-11/RSX-11/OpenVMS operating systems line is delete command which can be contracted to del.
13. deltree
Deletes a directory along with all of the files and subdirectories that it contains. Normally, it will ask for confirmation of such a drastic action.
deltree [/y] directory
The /y parameter, if present, tells the deltree command to carry out without first prompting for confirmation.
The deltree command is not included in recent Microsoft Windows operating systems. Deleting a non-empty directory in those versions of Windows where the command is not included, can be achieved by using the rmdir command as in the following example:
rmdir /s [/q] directory
In Unix, the functionality of deltree is provided by the rm command with the parameter -r (or -rf for the /y switch).
14. dir
Lists the contents of a directory.
The dir command typed by itself, displays the disk's volume label and serial number; one directory or filename per line, including the filename extension, the file size in bytes, and the date and time the file was last modified; and the total number of files listed, their cumulative size, and the free space (in bytes) remaining on the disk. The command is one of the few commands that exist from the first versions of DOS.
dir [drive:][path][filename] [parameters]
Most commonly used parameters of dir include:
* /W : Displays the listing in wide format, with as many as five filenames or directory names on each line.
* /P : Pause at every page
* /S : Also look in subdirectories
* /Axx: Display files with the specified attributes only
* /Oxx: Modifies sort order
* /B : Uses bare format (no heading information or summary)
* > [drive:][path][filename] : To Store Result in a text file;(c:\dir > c:\fileList.txt)
Possible attributes for the A parameter are D (directories), R (read-only files), H (hidden files), A (files/directories with the archive bit on), and S (system files). The prefix - negates an attribute; attributes can be combined (e.g. /A:/A means directories with the archive bit on).
Possible sort orders are N (name), S (size), E (extension), D (date and time), A (last access date), and G (group directories first). The prefix - reverses the order.
Other less commonly used parameters of dir include:
* /D : Display wide format but sorted by column
* /L : Display forced into lowercase
* /N : Display forced into long file name format instead of 8.3
* /Q : Displays the owner of each file
* /X : Display shows 8.3 names next to long file names
The default parameters of dir can be set using the DIRCMD environment variable.
Equivalent to the Unix command ls (the option -l is "long" list format, it works the opposite way from /w.)
Equivalent in RT-11/RSX-11/OpenVMS operating systems line is directory command which can be contracted to dir.
15. echo
Prints its own arguments back out to the DOS equivalent of the standard output stream. Usually, this means directly to the screen, but the output of echo can be redirected like any other command. Often used in batch files to print text out to the user.
echo this is text Outputs 'this is text'
echo. Outputs a blank line
Another important use of the echo command is to toggle echoing of commands on and off in batch files.
echo on turns on echoing of commands
echo off turns off echoing of commands
Traditionally batch files begin with the @echo off statement. This says to the interpreter that echoing of commands should be off during the whole execution of the batch file thus resulting in a "tidier" output. The @ symbol declares that this particular command (echo off) should also be executed without echo. For example the following 2 batch files are equivalent:
Batch1.bat:
@echo off
echo The files in your root directory:
dir /b /a-d c:\
Batch2.bat:
@echo The files in your root directory:
@dir /b /a-d c:\
Echo can be used to write to files directly from the console, by redirecting the output stream:
echo text > filename
Echo can also be used to append to files directly from the console, again by redirecting the output stream:
echo text >> filename
To type more than one line from the console into a file, use copy con (above).
Equivalent to the Unix command echo.
16. exe2bin
Converts an executable (.exe) file into a binary file with the extension .com, which is a memory image of the program.
The size of the resident code and data sections combined in the input .exe file must be less than 64KB. The file must also have no stack segment.
17. exit
Exits the current command processor. If the exit is used at the primary command, it has no effect unless in a DOS window under Microsoft Windows, in which case the window is closed and the user returns to the desktop.
EXIT
Exit also exists in Unix-shells. If an exit command is used in the primary command shell under Unix, however, it will logoff the user, similar to the control-D keystroke.
18. fastopen
Main article: FASTOPEN
19. fc or comp
Compares two files or sets of files and displays the differences between them.
FC [/A] [/C] [/L] [/LBn] [/N] [/T] [/W] [/nnnn] [drive1:][path1]filename1 [drive2:][path2]filename2
FC /B [drive1:][path1]filename1 [drive2:][path2]filename2
/A Displays only first and last lines for each set of differences.
/B Performs a binary comparison.
/C Disregards the case of letters.
/L Compares files as ASCII text.
/LBn Sets the maximum consecutive mismatches to the specified number of lines.
/N Displays the line numbers on an ASCII comparison.
/T Does not expand tabs to spaces.
/W Compresses white space (tabs and spaces) for comparison.
/nnnn Specifies the number of consecutive lines that must match after a mismatch.
[drive1:][path1]filename1 Specifies the first file or set of files to compare.
[drive2:][path2]filename2 Specifies the second file or set of files to compare.[citation needed]
Equivalent to the Unix commands comm, cmp and diff.
20. fdisk
Manipulates hard disk partition tables. The name derives from IBM's habit of calling hard drives fixed disks. When run from the command line, it displays a menu of various partitioning operations:
1. Create DOS partition or Logical DOS Drive
2. Set active partition
3. Delete partition or Logical DOS Drive
4. Display partition information
5. Change current fixed disk drive (only available if the computer has more than one hard drive)
FDISK /MBR installs a standard master boot record on the hard drive.
FDISK /MBR #: where # is other partition on system. Completes above command on indicated partition.
eg: "C:\FDISK /MBR D:" would install boot record on D:\ partition.
Fdisk exists under Unix with the same name, but it is an entirely different program. However they share purposes.
registry Tricks
This will help to recover some components of windows in XP if they are disabled by any virus
Enabling Task Manager
Registry :-
To open registry Editor
1)Click Start, Run and type this command regedit
2)press enter
3)Goto the below path in registry Editor
path :- HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies\ System
In the right-pane, delete the value named DisableTaskMgr
Or
Just Change the value of DisableTaskMgr to 1 to 0
Enable Folder Option
Registry :-
path :- HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre nt Version\Policies\Explorer
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr ent Version\Policies\Explorer
goto The Abow 2 paths
Delete the value named NoFolderOptions
Or
Change the value value of NoFolderOptions to 1 to 0
Enable cmd
Registry :-
Path :- HKEY_CURRENT_USER\Software\Policies\Microsoft\Wind ows\System
Goto the Abow path in registry Editor
Delete the Value Named DisableCMD
Or
Change the value of DisableCMD to 1 to 0
Enabling Task Manager
Registry :-
To open registry Editor
1)Click Start, Run and type this command regedit
2)press enter
3)Goto the below path in registry Editor
path :- HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies\ System
In the right-pane, delete the value named DisableTaskMgr
Or
Just Change the value of DisableTaskMgr to 1 to 0
Enable Folder Option
Registry :-
path :- HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre nt Version\Policies\Explorer
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr ent Version\Policies\Explorer
goto The Abow 2 paths
Delete the value named NoFolderOptions
Or
Change the value value of NoFolderOptions to 1 to 0
Enable cmd
Registry :-
Path :- HKEY_CURRENT_USER\Software\Policies\Microsoft\Wind ows\System
Goto the Abow path in registry Editor
Delete the Value Named DisableCMD
Or
Change the value of DisableCMD to 1 to 0
Yahoo with multiple login IDs Without any Software
1. Open Note Pad
2. Carefull copy the text given below and paste in it
REGEDIT4
[HKEY_CURRENT_USER\Software\yahoo\pager\Test]
"Plural"=dword:00000001
3. Save the file as MULTIYAHOO.REG
4. Double Click on the File
5. If it asks for confirmation click "Yes"
5. Restart Your Yahoo messenger
2. Carefull copy the text given below and paste in it
REGEDIT4
[HKEY_CURRENT_USER\Software\yahoo\pager\Test]
"Plural"=dword:00000001
3. Save the file as MULTIYAHOO.REG
4. Double Click on the File
5. If it asks for confirmation click "Yes"
5. Restart Your Yahoo messenger
Yahoo with multiple login IDs Without any Software
Yahoo with multiple login IDs Without any Software
TO USE MANY NUMBER OF YAHOO MESSENGERS AT A TIME WITHOUT NEED OF SOFTWARE
GO TO START MENU ACTUALLY SITUATED ON LEFT BOTTOM ON EVERY ONES PC
THEN CLICK ON RUN
TYPE CMD PRESS ENTER COMMAND PROMPT WILL OPEN
IN COMMAND PROMT TYPE REGEDIT AND PRESS ENTER THEN REGISTRY EDITOR WILL OPEN
IN REGISTRY EDITOR
CLICK ON + SYMBOL NEAR HKEY_CURRENT_USER
THEN THE FOLDERS UNDER HKEY_CURRENT_USER WILL BE SHOWN
NOW CLICK ON + SYMBOL NEAR SOFTWARE
THEN FOLDERS UNDER SOFTWARE WILL BE SHOWN
THERE U ILL FIND A FOLDER NAMED YAHOO NOW CLICK ON + SYMBOL B4 IT
THEN U ILL FIND A FOLDER NAMED PAGER CLICK THE+ SYMBOL B4 IT
THEN U ILL FIND A FOLDER NAMED TEST CLICK ON IT
ON THE RIGHT SIDE OF THE REGISTRY EDITOR U ILL FIND A REGISTRY ENTRY NAMED DEFAULT
NOW BELOW IT RITE CLICK UR MOUSE SELECT NEW >> SELECT DWORD VALUE>> NAME IT AS PLURAL
NOW CLICK ON NEW REGISTRY ENTRY CREATED BY U AND NAMED AS PLURAL IT WILL ASK FOR A VALUE GIVE IT 5
OR ANY NUMBER DEPENDS ON HOW MANY YAHOO MESSENGERS U WANNA USE AT A TIME
CLOSE THE REGISTRY EDITOR AND CLICK ON YAHOO ICON AND U CAN OPEN ANY NUMBER OF YAHOO IDS AT ONCE....
TO USE MANY NUMBER OF YAHOO MESSENGERS AT A TIME WITHOUT NEED OF SOFTWARE
GO TO START MENU ACTUALLY SITUATED ON LEFT BOTTOM ON EVERY ONES PC
THEN CLICK ON RUN
TYPE CMD PRESS ENTER COMMAND PROMPT WILL OPEN
IN COMMAND PROMT TYPE REGEDIT AND PRESS ENTER THEN REGISTRY EDITOR WILL OPEN
IN REGISTRY EDITOR
CLICK ON + SYMBOL NEAR HKEY_CURRENT_USER
THEN THE FOLDERS UNDER HKEY_CURRENT_USER WILL BE SHOWN
NOW CLICK ON + SYMBOL NEAR SOFTWARE
THEN FOLDERS UNDER SOFTWARE WILL BE SHOWN
THERE U ILL FIND A FOLDER NAMED YAHOO NOW CLICK ON + SYMBOL B4 IT
THEN U ILL FIND A FOLDER NAMED PAGER CLICK THE+ SYMBOL B4 IT
THEN U ILL FIND A FOLDER NAMED TEST CLICK ON IT
ON THE RIGHT SIDE OF THE REGISTRY EDITOR U ILL FIND A REGISTRY ENTRY NAMED DEFAULT
NOW BELOW IT RITE CLICK UR MOUSE SELECT NEW >> SELECT DWORD VALUE>> NAME IT AS PLURAL
NOW CLICK ON NEW REGISTRY ENTRY CREATED BY U AND NAMED AS PLURAL IT WILL ASK FOR A VALUE GIVE IT 5
OR ANY NUMBER DEPENDS ON HOW MANY YAHOO MESSENGERS U WANNA USE AT A TIME
CLOSE THE REGISTRY EDITOR AND CLICK ON YAHOO ICON AND U CAN OPEN ANY NUMBER OF YAHOO IDS AT ONCE....
Disable Turn Off Option and ALT+F4 option
REGEDIT->HKEY_CURRENT_USER->SOFTWARE->MICROSOFT->WINDOWS->POLICIES->EXPLORER THEN GO TO RIGHT SIDE AND BY RIGHT CLICK OF UR MOUSE CREATE NEW DWORD VALUE WITH NAME NoClose and after creating click on it and give Value Data 1.
And Reboot your pc ..now your Turn Off option is disabled ..to Enable it again ..go to that directory by regedit ..and simply delete that created NoClose and Log Off Your User and Log in again ..your Turn off Again Working
And Reboot your pc ..now your Turn Off option is disabled ..to Enable it again ..go to that directory by regedit ..and simply delete that created NoClose and Log Off Your User and Log in again ..your Turn off Again Working
Boot defragment
A very important new feature in Microsoft Windows XP is the ability to do a boot defragment. This basically means that all boot files are placed next to each other on the disk drive to allow for faster booting. By default this option is enabled but some upgrade users have reported that it isn't on their setup.
1. Start Regedit.
2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOpt imizeFunction
3. Select Enable from the list on the right.
4. Right on it and select Modify.
5. Change the value to Y to enable and N to disable.
6. Reboot your computer.
1. Start Regedit.
2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOpt imizeFunction
3. Select Enable from the list on the right.
4. Right on it and select Modify.
5. Change the value to Y to enable and N to disable.
6. Reboot your computer.
Create Registry Files Yourself
getting allergic to edit youe registry in regedit
use these steps and make .reg files
double click
and
here you ve done it
To backup the registry
Click Start, then click Run. The Run dialog box appears.
In the Open box, type regedit, then press ENTER. The Registry Editor appears.
Do one of the following:
To backup the entire registry, click My Computer.
To backup a specific group of keys or a specific key, click the folder or key.
On the main menu, click File, then click Export. The Export Registry File dialog box appears.
Specify a name and location for the file, then click Save. The export process begins.
If you are exporting the entire registry, it can take a few minutes, and the file size can be up to 100 MB or more. If you are exporting just one key, the file size is approximately 1 KB.
After you edit the registry, if you are experiencing problems caused by editing the registry, you can import the backed up file:
On the main menu, click File, then click Import. The Import Registry File dialog box appears.
Click the .reg file to import, then click Open. The import process begins. If you are importing the entire registry, it can take a few minutes.
To create a .reg file
In a text editor, such as Notepad, type or paste the following text on the first line:
Windows Registry Editor Version 5.00
On the second line, type or paste the key path. For example, type:
[HKEY_LOCAL_MACHINE\SOFTWARE\GlobalSCAPE Inc.\EFT Server 4.0\EventRules]
(include brackets)
On the third line, type or paste the name of the key and the value (DWORD) for the key. For example, type:
"FolderMonitorWorkerThreadCount"=dword:0000010 0
(include quotation marks)
Close the file and save it with a .reg extension. For example, type:
threadcount.reg
Double-click the file and follow the prompts to install the key into the registry. If you receive an error, open the file to verify the information was typed correctly. The .reg file can be transported to and used on other computers
use these steps and make .reg files
double click
and
here you ve done it
To backup the registry
Click Start, then click Run. The Run dialog box appears.
In the Open box, type regedit, then press ENTER. The Registry Editor appears.
Do one of the following:
To backup the entire registry, click My Computer.
To backup a specific group of keys or a specific key, click the folder or key.
On the main menu, click File, then click Export. The Export Registry File dialog box appears.
Specify a name and location for the file, then click Save. The export process begins.
If you are exporting the entire registry, it can take a few minutes, and the file size can be up to 100 MB or more. If you are exporting just one key, the file size is approximately 1 KB.
After you edit the registry, if you are experiencing problems caused by editing the registry, you can import the backed up file:
On the main menu, click File, then click Import. The Import Registry File dialog box appears.
Click the .reg file to import, then click Open. The import process begins. If you are importing the entire registry, it can take a few minutes.
To create a .reg file
In a text editor, such as Notepad, type or paste the following text on the first line:
Windows Registry Editor Version 5.00
On the second line, type or paste the key path. For example, type:
[HKEY_LOCAL_MACHINE\SOFTWARE\GlobalSCAPE Inc.\EFT Server 4.0\EventRules]
(include brackets)
On the third line, type or paste the name of the key and the value (DWORD) for the key. For example, type:
"FolderMonitorWorkerThreadCount"=dword:0000010 0
(include quotation marks)
Close the file and save it with a .reg extension. For example, type:
threadcount.reg
Double-click the file and follow the prompts to install the key into the registry. If you receive an error, open the file to verify the information was typed correctly. The .reg file can be transported to and used on other computers
change processor name
GO TO
START>
RUN>
TYPE REGEDIT>
HKEY_LOCAL_MACHINE>
HARDWARE>
DISCRIPTION>
SYSTEM>
CENTRAL PROCESSOR>
ON RIGHT HAND SIDE RIGHT CLICK ON PROCESSORNAMESTRING AND THEN WRITE ANYTHING U WANT IN THAT TEXTBOX
START>
RUN>
TYPE REGEDIT>
HKEY_LOCAL_MACHINE>
HARDWARE>
DISCRIPTION>
SYSTEM>
CENTRAL PROCESSOR>
ON RIGHT HAND SIDE RIGHT CLICK ON PROCESSORNAMESTRING AND THEN WRITE ANYTHING U WANT IN THAT TEXTBOX
Enabiling Cmd + Regedit When It's Disabled By Admin / Group Policy
CMD:
Step 1:
Create a new shortcut
Step 2:
Add the following to the shortcut:
REG add HKCU\Software\Policies\Microsoft\Windows\System /v DisableCMD /t REG_DWORD /d 0 /f
Regedit:
Step 1:
Create shortcut
Step 2:
Add the following to the shortcut:
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
Backup register keys b4 u try this
Step 1:
Create a new shortcut
Step 2:
Add the following to the shortcut:
REG add HKCU\Software\Policies\Microsoft\Windows\System /v DisableCMD /t REG_DWORD /d 0 /f
Regedit:
Step 1:
Create shortcut
Step 2:
Add the following to the shortcut:
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f
Backup register keys b4 u try this
How to add your own windows tips
Posted by
R.D
on Saturday, November 21, 2009
/
Labels:
registry entry,
Run,
Windows,
XP
/
Comments: (0)
Are you sick of seeing the same tips again and again when you first logon to Windows? Now you can change them to whatever you want, whether it's quotes, jokes or a to-do list, anything is possible.
Open your registry and find the key below.
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Explorer\ Tips
Create a new string valued named by incrementing the existing value names and set it to the required tip text.
eg. 32 -
Open your registry and find the key below.
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Explorer\ Tips
Create a new string valued named by incrementing the existing value names and set it to the required tip text.
eg. 32 -
Disable Access to Add or Remove Programs
Suppose for security purpose you want to restrict other users from uninstalling any programs.
Just delete all the uninstall links of the programs from the start menu as all most all programs can be removed from control panel > add or remove programs option & then disable access to the add or remove programs itself.
So here's the hack
Start regedit by go to start > run & type in regedit and press enter.
Go to HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies
Right click on policies & create a new key by selecting new > key.
Name the new key Uninstall
Now select the newly created key ie Uninstall.
Now create a new DWORD value on the right pane of the regedit window
and name it NoAddRemovePrograms and set value to 1.
This should disable your Add or Remove Programs.
To re-enable your Add or Remove Programs just set the early created
NoAddRemovePrograms keys value to 0
Just delete all the uninstall links of the programs from the start menu as all most all programs can be removed from control panel > add or remove programs option & then disable access to the add or remove programs itself.
So here's the hack
Start regedit by go to start > run & type in regedit and press enter.
Go to HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies
Right click on policies & create a new key by selecting new > key.
Name the new key Uninstall
Now select the newly created key ie Uninstall.
Now create a new DWORD value on the right pane of the regedit window
and name it NoAddRemovePrograms and set value to 1.
This should disable your Add or Remove Programs.
To re-enable your Add or Remove Programs just set the early created
NoAddRemovePrograms keys value to 0
Disabling the ability to click on My Computer
You can restrict any user to access your system drives if you disable the click feature on My Computer. User will get no changes when he will try to open My Computer.
By editing the windows registry keys, you can disable the click feature on My Computer.
Follow the given steps to disable My Computer setting.
1] First click on Start button then type Regedit in Run option.
2] In registry editor panel search the value 20D04FE0-3AEA-1069-A2D8-08002B30309D
3] May be you will find this value on path HKey_Classes_Root \ CLSID section.
4] Here delete the entire section of this value.
5] Now close the registry editor and restart your computer after any changes to go into effect
By editing the windows registry keys, you can disable the click feature on My Computer.
Follow the given steps to disable My Computer setting.
1] First click on Start button then type Regedit in Run option.
2] In registry editor panel search the value 20D04FE0-3AEA-1069-A2D8-08002B30309D
3] May be you will find this value on path HKey_Classes_Root \ CLSID section.
4] Here delete the entire section of this value.
5] Now close the registry editor and restart your computer after any changes to go into effect
Repair corrupted taskmanager
many times we suffer the problem that due to a virus or a corrupted program the taskmanager is being corrupted also.
Like "Taskmanager is disabled by your administrator"
Anti virus or other program can't heal it.
Now we can, just copy the line below without the Q marks- paste in run command- then click ok
"REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f"
Problem solved
Like "Taskmanager is disabled by your administrator"
Anti virus or other program can't heal it.
Now we can, just copy the line below without the Q marks- paste in run command- then click ok
"REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f"
Problem solved
How To Make Windows Vista Shut Down Faster
When you first install Windows Vista shutdown time is not really a big problem but after a while it will be slower. With a registry trick, you can decrease the amount of time Windows Vista waits for a service to stop, and make Windows faster.
1. Open Registry Editor: go to the Start Menu, and type regedit in the Search bar.Then press Enter.
2. Navigate to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l]
3. Edit the "WaitToKillServiceTimeout"="20000" by right clicking on the key and selecting Modify.
By default, the setting is at 20000 milliseconds (20 seconds.) Remember that the default setting are the safest settings for your computer.
If you make this value smaller there is some risk involved. You can lower it in 4 seconds increments to see what is the best value that works for you.
1. Open Registry Editor: go to the Start Menu, and type regedit in the Search bar.Then press Enter.
2. Navigate to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l]
3. Edit the "WaitToKillServiceTimeout"="20000" by right clicking on the key and selecting Modify.
By default, the setting is at 20000 milliseconds (20 seconds.) Remember that the default setting are the safest settings for your computer.
If you make this value smaller there is some risk involved. You can lower it in 4 seconds increments to see what is the best value that works for you.
Crack the XP and validate u r copy
use the trick . it is work 90%
paste the text in to Notepad and save it as a .reg file
execute it and make u r os as a genuine ........
Quote:
Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]
"CurrentBuild"="1.511.1 () (Obsolete data - do not use)"
"ProductId"="55274-640-7450093-23464"
"DigitalProductId"=hex:a4,00,00,00,03,00,00,00,35, 35,32,37,34,2d,36,34,30,2d,\
37,34,35,30,30,39,33,2d,32,33,34,36,34,00,2e,00,00 ,00,41,32,32,2d,30,30,30,\
30,31,00,00,00,00,00,00,00,62,fc,61,4c,e0,26,33,16 ,05,d3,54,e7,a0,de,00,00,\
00,00,00,00,49,36,c2,49,20,47,0c,00,00,00,00,00,00 ,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,33,33,35,30,30,00 ,00,00,00,00,00,00,65,10,\
00,00,74,99,dd,b0,f7,07,00,00,98,10,00,00,00,00,00 ,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 ,c4,ae,d6,1c
"LicenseInfo"=hex:e7,77,18,19,f8,08,fc,7d,e8,f0,df ,12,6e,46,cb,3f,ad,b2,dd,b9,\
15,18,16,c0,bc,c3,6a,7d,4a,80,8b,31,13,37,5a,78,a2 ,06,c8,6b,b9,d9,dd,cc,6a,\
9c,c5,9b,77,aa,07,8d,56,6a,7c,e4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents]
"OOBETimer"=hex:ff,d5,71,d6,8b,6a,8d,6f,d5,33,93,f d
paste the text in to Notepad and save it as a .reg file
execute it and make u r os as a genuine ........
Quote:
Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]
"CurrentBuild"="1.511.1 () (Obsolete data - do not use)"
"ProductId"="55274-640-7450093-23464"
"DigitalProductId"=hex:a4,00,00,00,03,00,00,00,35, 35,32,37,34,2d,36,34,30,2d,\
37,34,35,30,30,39,33,2d,32,33,34,36,34,00,2e,00,00 ,00,41,32,32,2d,30,30,30,\
30,31,00,00,00,00,00,00,00,62,fc,61,4c,e0,26,33,16 ,05,d3,54,e7,a0,de,00,00,\
00,00,00,00,49,36,c2,49,20,47,0c,00,00,00,00,00,00 ,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,33,33,35,30,30,00 ,00,00,00,00,00,00,65,10,\
00,00,74,99,dd,b0,f7,07,00,00,98,10,00,00,00,00,00 ,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 ,c4,ae,d6,1c
"LicenseInfo"=hex:e7,77,18,19,f8,08,fc,7d,e8,f0,df ,12,6e,46,cb,3f,ad,b2,dd,b9,\
15,18,16,c0,bc,c3,6a,7d,4a,80,8b,31,13,37,5a,78,a2 ,06,c8,6b,b9,d9,dd,cc,6a,\
9c,c5,9b,77,aa,07,8d,56,6a,7c,e4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents]
"OOBETimer"=hex:ff,d5,71,d6,8b,6a,8d,6f,d5,33,93,f d
Get rid of Windows Messenger
Start->Run->"gpedit.msc""
-Computer Configuration
-Administrative Templates
-Windows Components
-Windows Messenger
Here you can enable
"Do not allow Windows Messenger to be run"
and
"Do not automatically start Windows Messenger initially"
-Computer Configuration
-Administrative Templates
-Windows Components
-Windows Messenger
Here you can enable
"Do not allow Windows Messenger to be run"
and
"Do not automatically start Windows Messenger initially"
Make Your keyboard a live disco.
This code when executed makes your Caps, Num, Scroll lock keys flash..
very attractive...i have tried it..trust me
Instructions:
*paste the code in notepad
*Save as disco.vbs
*Run the file
This piece of code makes your keyboard a live disco...
Quote:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Enjoy
HOW TO REMOVE LIVE DISCO ON KEYBOARD WITHOUT CHANGING CODE.
OPEN TASK MANAGER THEN IN PROCESSES DELETE WSCRIPT.EXE FILE
very attractive...i have tried it..trust me
Instructions:
*paste the code in notepad
*Save as disco.vbs
*Run the file
This piece of code makes your keyboard a live disco...
Quote:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Enjoy
HOW TO REMOVE LIVE DISCO ON KEYBOARD WITHOUT CHANGING CODE.
OPEN TASK MANAGER THEN IN PROCESSES DELETE WSCRIPT.EXE FILE
Clean Your RAM & Make Your Comp Speed Better
Clean your RAM
You may recognize that your system gets slower and slower when playing and working a lot with your Desktop or a laptop. That’s because your RAM is full of remaining progress pieces you do not need any more.
Open the notepad and type
FreeMem=Space(64000000)
in this file and save it as RAMcleaner.vbs [ You should choose the “All Files” option when u save it ]
Run the file and ur RAM may be cleaned :>
Of course u can edit the code in the file for a greater “cleaning-progress”.
FreeMem=Space(128000000)
just try it out.. it worked for me
You may recognize that your system gets slower and slower when playing and working a lot with your Desktop or a laptop. That’s because your RAM is full of remaining progress pieces you do not need any more.
Open the notepad and type
FreeMem=Space(64000000)
in this file and save it as RAMcleaner.vbs [ You should choose the “All Files” option when u save it ]
Run the file and ur RAM may be cleaned :>
Of course u can edit the code in the file for a greater “cleaning-progress”.
FreeMem=Space(128000000)
just try it out.. it worked for me
Create Your Own Drive
IF U WANT TO CREATE UR OWN PERSONAL DRIVE!
then...
Do this
Go to c drive
Create a new folder ( say samp1 )
now go to command prompt and type
subst z: c:\samp1
now go to my computer and check it..........
To remove the drive
go to command prompt and type
subst z: /d
It might be old.. but Not every One knows it...
then...
Do this
Go to c drive
Create a new folder ( say samp1 )
now go to command prompt and type
subst z: c:\samp1
now go to my computer and check it..........
To remove the drive
go to command prompt and type
subst z: /d
It might be old.. but Not every One knows it...