* Hide the username on start menu

⊆ 3:22 AM by LEGEND | ˜ 0 comments »

Hide the username on start menu

Navigate to:
HCU\software\microsoft\windows\Current|Version\Policies\Explorer

and

HLM\software\microsoft\windows\currentversion\policies\Explorer

Change the DWORD Valude NoUserNameInStartMenu to 1 to hide the username to display..

 

* HIDING DRIVES

⊆ 4:29 AM by LEGEND | ˜ 0 comments »

This setting allows you to control which drives are visible in My Computer and Explorer. It is possible to hide all drives or just selected ones.

Open your registry (press win+r and type regedit , hit enter )
goto

[HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Policies\Explorer]

and find or create the DWORD "NoDrives" there by right clicking on explorer -> NEW -> DWORD value .

The "NoDrives" value uses a 32-bit word to define local and network drive visibility for each logical drive in the computer. The lower 26 bits of the 32-bit word correspond to drive letters A through Z. Drives are visible when set to 0 and hidden when set to 1.

If your not happy working in Hex, add these decimal numbers to hide the drive(s):

A: 1, B: 2, C: 4, D: 8, E: 16, F: 32, G: 64, H: 128, I: 256, J: 512, K: 1024, L: 2048, M: 4096, N: 8192, O: 16384, P: 32768, Q: 65536, R: 131072, S: 262144, T: 524288, U: 1048576, V: 2097152, W: 4194304, X: 8388608, Y: 16777216, Z: 33554432, ALL: 67108863

For example to hide drive A and drive D, you would add 1 (A) + 8 (D) which means the value should be set to "9".

To disable all the drives set the value to "67108863".

Restart Windows for the change to take effect.

Note: These drives will still appear in File Manager, to remove File Manager, delete or rename winfile.exe.

 

* CHANGING DOS BACKGROUND

⊆ 5:22 AM by LEGEND | ˜ 0 comments »

The value DefaultColor controls the foreground and background colors used in command prompt windows. It has a default value of 0, for standard white text on a black background.
CHANGING DOS BACKGROUND
Open your registry (press win+r and type regedit , hit enter )
goto


[HKEY_CURRENT_USER\Software\Microsoft\Command Processor]

u'll find "DefaultColor"

You can replace it's value with a two-digit hexadecimal number, in which the first digit selects a background color and the second a foreground color. The hexadecimal codes are:

Hexadecimal value Color
0 Black
1 Blue
2 Green
3 Aqua
4 Red
5 Purple
6 Yellow
7 White
8 Gray
9 Light Blue
A Light Green
B Light Aqua
C Light Red
D Light Purple
E Light Yellow
F Bright White


A value of F0, for example, would give black text on a white background, and 1E would yield yellow text on a blue background.

The change should take effect the next time you open a console window.