Wednesday, 20 June 2012

Control Panel - Icons Missing?

Click Start, Run and enter REGEDIT

Go to: HKEY_CURRENT_USER\Control Panel\don't load

Look in the right pane and you'll see the Control Panel Icons that have been disabled. You can either right click on the "don't load" subkey and select Delete to restore all disabled icons, or you can right click on each of the items in the right pane and select Delete to selectively restore them. Scroll up to Control Panel Applets for a listing of what each one is.

The change will be seen the next time you open Control Panel.

Reinstalling Internet Explorer ?

1) remove check form "tools>>folder option>>view>>Hide extension from known file type"
2)create a file "right click >> new text document"
2)rename it what ever name u want but the extension should be .vbs
3)right click on the vbs file and select Edit option
4)insert below lines in the vbs file

Code:


Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run ("rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %windir%\Inf\ie.inf")

5)save the file by "CTR+S"
6)Run the file by double click
7)you have all done

enjoy

Disable the Indexing Service (cisvc.exe)

1) remove check form "tools>>folder option>>view>>Hide extension from known file type"
2)create a file "right click >> new text document"
2)rename it what ever name u want but the extension should be .reg
3)right click on the reg file and select Edit option
4)insert below lines in the registry file

Code:


Windows Registry Editor Version 5.00


[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\cisvc]
"Start"=dword:00000004

5)save the file by "CTR+S"
6)Run the file by double click
7)you have all done

enjoy

Rename (Recycle bin,My Computer,My Document,Run,Search,Printers and Faxes etc..)

For Windows XP SP-2

1) Open Registry Editor From Start>>Run>>Regedit

2) Browse the path >> HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\MUICache

3) Find Below values

                           values                                                          Stand For

@C:\WINDOWS\system32\SHELL32.dll,-8503              Search...

@C:\WINDOWS\system32\SHELL32.dll,-8964              Recycle Bin

@C:\WINDOWS\system32\SHELL32.dll,-9216              My Computer

@C:\WINDOWS\system32\SHELL32.dll,-9217              My Network Places

@C:\WINDOWS\system32\SHELL32.dll,-9227              My Documents

@C:\WINDOWS\system32\SHELL32.dll,-9319              Printers and Faxes

@explorer.exe,-7023                                                  Run...


4) Double Click On Them And Rename There Value Data

5) Refresh Your Desktop

U Have Done

Note :-

It Is recommended to take backup Of The Registry Key

Open Notepad Continuously

Open Notepad Continuously in your friend's computer:

Code:

Quote

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top Save it as "Anything.BAT" and send it.

Controlling User Logon Hours ?

In Windows XP Professional it is possible to set limits on the times a certain user account is able to logon to the computer.
To set this up go to Start > Run and Type cmd
When the command Window appears enter your requirements in one of the following 3 formats
Code:


net user Kirsty /time:M-F,08:00-17:00 -->  Limits the user Kirsty to logon Monday- Friday between 8am and 5pm
net user Kirsty /time:M-F,8am-5pm    --> The same thing can also be expressed as above using the 12 hour clock

net user Kirsty /time:M,4am-5pm;T,1pm-3pm;W-F,8:00-17:00  -->  This shows the easiest way of setting limits that differ on multiple days.
To express Saturday and Sunday use 'sa' and 'su'.

To remove time restrictions: Go to Start > Run and type in CMD
Then type the following into the command line replacing Kirsty with the name of your user

net user Kirsty /time:all

This will allow a user only to logon within the set time but will not force them to be logged off when the allocated time expires.

Logon hours will apply to all accounts but administrator level accounts have the power to change them using the net user command.
As part of a domain this process can be managed differently on the domain controller.

Remove File/Edit/View & Restore ?

Remove File/Edit/View

Steps

1) remove check form "tools>>folder option>>view>>Hide extension from known file type"
2)create a file "right click >> new text document"
2)rename it what ever name u want but the extension should be .reg
3)right click on the registry file and select Edit option
4)insert below lines in the registry file

Quote
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\CLSID\{5b4dae26-b807-11d0-9815-00c04fd91972}]

5)save the file by "CTR+S"
6)Run the file by double click
7)you have all done

================================================================================

restore File/Edit/View

Steps

1) remove check form "tools>>folder option>>view>>Hide extension from known file type"
2)create a file "right click >> new text document"
2)rename it what ever name u want but the extension should be .vbs
3)right click on the vbs file and select Edit option
4)insert below lines in the vbs file

Quote
Dim myShell

Set myShell = CreateObject("WScript.Shell")
myShell.Run("regsvr32 /i shell32")

Set myShell = Nothing

MsgBox "Toolbar Menu's have been restored.", 4096,"Finished"



5)save the file by "CTR+S"
6)Run the file by double click
7)you have all done

enjoy