MY mENU


Thursday, 26 April 2012

Play around registry- More Options




Launch Regedit and go to the following Registry Key: HKEY_CURRENT_USER /Software/Microsoft/CurrentVersion/Policies Under this key, there will definitely be a key named explorer. Now under this explorer key we can create new DWORD values and modify it's value to 1 in order to impose the restriction. If you want to remove the Restriction, then you can simply delete the respective DWORD values or instead change their values to 0. The following is a list of DWORD values that can be created under the Explorer Key:


NoDeletePrinter: Disables Deletion of already installed Printers


NoAddPrinter: Disables Addition of new Printers

NoRun : Disables or hides the Run Command


NoSetFolders: Removes Folders from the Settings option on Start Menu (Control Panel, printers, Taskbar) 


NoSetTaskbar: Removes Taskbar system folder from the Settings option on Start Menu


NoFind: Removes the Find Tool (Start >Find)


NoDrives: Hides and does not display any Drives in My Computer


NoNetHood: Hides or removes the Network Neighborhood icon from the desktop


NoDesktop: Hides all items including, file, folders and system folders from the Desktop


NoClose: Disables Shutdown and prevents the user from normally shutting down Windows.


NoSaveSettings: Means to say, 'Don't save settings on exit' DisableRegistryTools: Disable Registry Editing Tools (If you disable this option, the Windows Registry Editor(regedit.exe) too will not work.)


NoRecentDocsHistory: Removes Recent Document system folder from the Start Menu (IE 4 and above) ClearRecentDocsOnExit: Clears the Recent Documents system folder on Exit.
Nolnternetlcon: Removes the Internet (system folder) icon from the Desktop Now create a new key and name it System. Under this new key, system we can create the following new DWORD values


NODispCPL: Hides Control Panel


NoDispBackgroundPage: Hides Background page.


NoDispScrsavPage: Hides Screen Saver Page


NoDispAppearancePage: Hides Appearance Page


NoDispSettingsPage: Hides Settings Page


NoSecCPL: Disables Password Control Panel


NoPwdPage: Hides Password Change Page


NoAdminPaqe: Hides Remote Administration Page


NoProfilePage: Hides User Profiles Page


NoDevMgrPage: Hides Device Manager Page


NoConfigPage: Hides Hardware Profiles Page


NoFileSysPage: Hides File System Button


NoVirtMemPage: Hides Virtual Memory Button Similarly, if we create a new subkey named Network, we can add the following DWORD values under it:


NoNetSetupSecurityPage: Hides Network Security Page


NoNelSetup: Hides or disables the Network option in the Control Panel


NoNetSetupIDPage: Hides the Identification Page


NoNetSetupSecurityPage: Hides the Access Control Page


NoFileSharingControl: Disables File Sharing Controls


NoPrintSharing: Disables Print Sharing Controls.

Wednesday, 25 April 2012

Change Internet Explorer's Caption


Open the registry editor and go to HKEY_LOCAL_MACHINE\SOFTWARE \Microsoft \Internet Explorer\Main. In the right pane create a new String Value name Window Title (Note the space between Window and Title). Right click on this newly created String Value and select Modify. Type in the new caption you want to be displayed. Restart for the settings to take place.

Tuesday, 24 April 2012

Shutdown and Reboot in Style ☺


Turning off or rebooting XP involves a several-step process: click the Start menu, choose Shut Down, and then select Shut Down or Restart. If you want, however, you can exit or reboot much more quickly, by creating a shortcut that enables one-click shutdowns. You can also use the shortcut to customize the shutdown or reboot for example, by displaying a specific message or automatically shutting down any programs that are running.


First, create a shortcut on your desktop by right-clicking the desktop, choosing New, and then choosing Shortcut. The Create Shortcut Wizard appears. In the box asking for the location of the shortcut, type shutdown. After you create the shortcut, doubleclicking it will shut down your PC. But you can do much more with a shutdown shortcut than merely shut down your PC.
You can add any combination of several switches to do extra duty, like this:


shutdown -r -t 01 -c "Rebooting your PC"


Double-clicking that shortcut will reboot your PC after a one-second delay and display the message "Rebooting your PC." The shutdown command includes a variety of switches you can use to customize it. 
Switches you can use with shutdown             Switch What it does
-s                                                                      Shuts down the PC.
-l                                                                        Logs off the current user.
-t nn                          Indicates the duration of delay, in seconds, before performing the action.
-c            "messagetext" Displays a message in the System Shutdown window. A maximum
of 127 characters can be used. The message must be enclosed in quotation marks.


-f                         Forces any running applications to shut down.
-r                         Reboots the PC.


Here are the ones I use for shutdowns and restarts:


Shutdown -s -t 03 -c "See you later!"


shutdown -r -t 03 -c "You can't get rid of me that quickly!"


You always have to turn from the CPU after running this command. (Same with AT and ATX powered machines.) If you want to turn down power of ATX machine automatically, run the following commnd "c:\windows\system32\tsshutdn.exe 00 / POWERDOWN / DELAY:00" This is used to turn off a server. Even though you don't have networked computers attached to your computer, this works.