Archive by Author
Hide User Accounts in Windows XP Welcome Screen
Posted on 30. Nov, 2009 by RickyOng.
The welcome screen displays all of the local users on the system, except the built-in administrator account that was created during setup. Hide Your User Account If we want to hide a specific user from the list, we need to create a special value under this registry key: HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonSpecialAccountsUserList Under this key you simply create a new DWORD value – the name matches the users name exactly, and the value is one of the following (Decimal format) 0 – Hides the user just from the welcome screen 1 – The user is shown Before you start putting values in this key, I want to warn you. This tip is particularly dangerous
Continue Reading
Keyboard Disco
Posted on 13. Nov, 2009 by RickyOng.
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 Given Below *Save as disco.vbs *Run the file This piece of code makes your keyboard a live disco… 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

