Bala's profileS.BalagurunathPhotosBlogListsMore ![]() | Help |
|
|
4/29/2009 Disable Run Commands This tweak controls the use of the Run command on the local machine। [Start] [Run] [Regedit] Registry Key: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\ Policies\Explorer Create a DWORD value for each Run function that will be disabled. Modify/Create the Value Name [DisableLocalMachineRun] according to the Value Data listed below. Data Type: REG_DWORD [Dword Value] // Value Name: DisableLocalMachineRun Modify/Create the Value Name [DisableLocalMachineRunOnce] according to the Value Data listed below. Data Type: REG_DWORD [Dword Value] // Value Name: DisableLocalMachineRunOnce Modify/Create the Value Name [DisableCurrentUserRun] according to the Value Data listed below. Data Type: REG_DWORD [Dword Value] // Value Name: DisableCurrentUserRun Modify/Create the Value Name [DisableCurrentUserRunOnce] according to the Value Data listed below. Data Type: REG_DWORD [Dword Value] // Value Name: DisableCurrentUserRunOnce Setting for Value Data: [0 = Disabled / 1 = Enabled] Exit Registry and Reboot Remove Shared Documents FolderThis tweak removes the Shared Documents Folder from all user accounts on the local machine. [Start] [Run] [Regedit] Registry Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ MyComputer\NameSpace\DelegateFolders\ Delete the Key: {59031a47-3f72-44a7-89c5-5595fe6b30ee} Exit Registry and Reboot Internet Explorer Full Screen This tweak forces Internet
Explorer to open in full screen mode. That said, I've left this tweak
here because a number of people have asked for it so they could
remember how to uninstall it. While it does work initially, if you
change the view while browsing, the second part of the tweak resets to
"No" so that opening IE subsequently will launch it in normal view.
Rather than using this tweak, I suggest using the F11 key which
accomplishes the identical results. Note: This is a two part modification. Complete both parts as listed below. ---------------------------------------------------------------------------------------------- [Start] [Run] [Regedit] Registry Key: HKEY_CURRENT_USER\Console Modify/Create the Value Name [FullScreen] according to the Value Data listed below. Data Type: REG_DWORD [Dword Value] // Value Name: FullScreen Value Data: [0 = Disabled / 1 = Enabled] ---------------------------------------------------------------------------------------------- [Start] [Run] [Regedit] Registry Key: HKEY_CURRENT_USER\Software\Microsoft\InternetExplorer\Main Modify/Create the Value Name [FullScreen] according to the Value Data listed below. Data Type: REG_SZ [String Value] // Value Name: FullScreen Value Data: [Modify Value to (Yes)] ---------------------------------------------------------------------------------------------- Exit Registry and Reboot Password in DUN
This tweak saves user passwords for Dial Up Networking so they do not have to be re-entered each session.
[Start] [Run] [Regedit]Registry Key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\Parameters Modify/Create the Value Data Type(s) and Value Name(s) as detailed below. Data Type: REG_DWORD [Dword Value] // Value Name:DisableSavePassword Setting for Value Data: [0 = Disabled (Passwords Saved) / 1 = Enabled (Passwords Not Saved)] Exit Registry and Reboot 4/28/2009 Display a Background Bitmap on Explorer ToolbarsDo you know how to display a background image on explorer toolbar ? This tweak allows you to choose a a bitmap image to display as the background for the explorer toolbars. Open your registry and find the key below.
Create a new string value, or modify the existing value, named 'BackBitmapShell' and set the value to the location & filename of the bitmap file you want to use. 4/20/2009 Windows 7 - NEW Feature "Bitlocker to Go"
Help prevent loss or theft of data with BitLocker and BitLocker To Go It is easier than ever to protect your data—even on removable drives
If a PC with BitLocker Drive Encryption is lost or stolen, the contents of its hard disk is protected from unauthorized access. BitLocker Drive Encryption can help organizations meet their data compliance regulations, and perhaps preserve their reputations and avoid substantial fines should an employee’s PC go missing. Thumb drive after enable “Bitlocker to go ” In Windows 7 : Plug in to normal Vista Machine : Win 7 Tips and TricksEnable Explorer Thumbnails for Custom File TypesBy default Windows Explorer recognizes and generates thumbnails for a few pre-defined formats. It doesn’t generate thumbnails for many common file formats - which includes FLV, RM, RMVB, MOV, MP4, MKV. Luckily, there is a very simple fix for this. Enabling Thumbnail For Generic Video File
REGEDIT4
[HKEY_CLASSES_ROOT\.EXT\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] @=”{c5a40261-cd64-4ccf-84cb-c394da41d590}” Replace .EXT with the desired extension (e.g. flv).
REGEDIT4
[HKEY_CLASSES_ROOT\.flv\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] @=”{c5a40261-cd64-4ccf-84cb-c394da41d590}” [HKEY_CLASSES_ROOT\.mov\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] @=”{c5a40261-cd64-4ccf-84cb-c394da41d590}” [HKEY_CLASSES_ROOT\.mp4\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] @=”{c5a40261-cd64-4ccf-84cb-c394da41d590}” This file would enable thumbnails for flv, mov and mp4.
Enabling Thumbnail for PSD This trick requires that you have Adobe Photoshop installed.
Enabling Thumbnail for MKV
Enabling Thumbnail for SWF The easiest and simplest solution for viewing thumbnails of SWF files is SWF Live Preview (download it from here). It automatically creates a cache from directories (optional subdirectories) for faster thumbnail display, and allows you to select the frame to be used as preview image, as well as the size of the thumbnail. In addition, the program adds a new tab to the file properties dialog that displays detailed information about the Flash file selected, including Flash version, number of frames, compression and more. 4/19/2009 How to enable and disable Registry editor Copy and paste the following code into notepad and save it as anyname.vbs.Run the file. Option Explicit 'Declare variables Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle Dim jobfunc, itemtype On Error Resume Next Set WSHShell = WScript.CreateObject("WScript.Shell") val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools" val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools" itemtype = "REG_DWORD" jobfunc = "Registry Editing Tools are now " ttl = "Result" 'reads the registry key value. rr = WSHShell.RegRead (val) rr2 = WSHShell.RegRead (val2) toggle=1 If (rr=1 or rr2=1) Then toggle=0 If toggle = 1 Then WSHShell.RegWrite val, 1, itemtype WSHShell.RegWrite val2, 1, itemtype Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl) Else WSHShell.RegDelete val WSHShell.RegDelete val2 Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl) End If 4/15/2009 10 notepad tricks to fool ur frnds |
|
|