Thursday, February 5, 2009

Manually remove Autorun.inf Scripting

open task manager and kill your explorer.exe
then new task type cmd

in your command prompt move to that specific drive
lets say K as your drive where u have that open with problem

K:\>attrib autorun.inf -s -h -r

type the above command and then

K:\>del autorun.inf

thats it u r done now u can open your drive normally

Tuesday, February 3, 2009

Since we are going to do all the Editing in Window

Since we are going to do all the Editing in Window Registry it is Recommended to Back Up the Registry before going Further.

After you have Backed up your registry follow the Steps to Create your Hidden Account:

* First Goto Start -> Run -> Type regedit -> Enter
* In the Left Menu goto,

HKEY_LOCAL_MACHINE\Software\Microsoft\Wi
ndowsNT\CurrentVersion\Winlogon\SpecialAccounts\UserList

* In the Right pane, Right click -> New -> String Value
* Right click on the new String Value and click Rename
* Type the Name of the Account you want to hide.
* Hit Enter then Right click on the String Value again and Change value to 0 which hides it. If you want it to be Visible to all Enter the Value 1.
* Now Save and Exit the Registry and Logoff.
* Goto welcome screen and Hit ctrl+alt+del twice to bring up Logon prompt
* Type hidden Accounts name and password
* Enjoy!!!

Changing ANY user password without having to know the existing password

This tweak gives a user the opportunity to use it for good or bad. It enables the user to re-password any account without having to know the existing password and also shows you every account that exists on the machine (even the ones that are hidden). This is a good tool to use if you forgot a password to say your administrator account and you needed to be logged into the admin account for any reason.

To view all of the user accounts:

1) While logged onto the computer, click on Start>Run>and type in CMD.

2) From the command prompt window, type in net users. This will show you every account that is made onto the computer whether it is hidden or not.

-----------------------------------------------------------------

To change an account password:

1) While logged onto the computer to an account that has administrative rights, click on Start>Run>and type in CMD.

2) Type in net user then the name of the account then * and press enter. heres an example: net user administrator * or net user "Joe Smith" * . Put the name in quotes if it contains spaces.

3) From there it should ask for a new password. Type in your new password (type very carefully - the command window won't display what you type) and once more to confirm it. If you get the message that the command succeeded successfully you're all set!!

Type Any Thing in System Properties

NOW U CAN ABLE TO SHOW PENTIUM 5 AND EVEN MORE

TYPE "REGEDIT" IN RUN BOX {START->RUN->TYPE REGEDIT}
NOW CLICK IN
H-KEY-LOCAL-MACHIN . THEN ON HARDWARE. THEN ON DISCRIPTION.THEN ON SYSTEM,THEN ON
CentralProcessor.THEN ON 0
{H-KEY-LOCAL-MACHIN/HARDWARE/DISCRIPTION
/SYSTEM/CentralProcessor/0}
NOW U GET IN RIGHT PANE THE VALUE THAT IS
"ProcessorNameString"
DOUBLE CLICK ON THIS VALUE
VALUE NAME AND VALUE DATA IS NOW IN FROUNT OF U NOW IN DATA COLOM U CAN EDIT IT RANDOMLY WHAT U WANT IN PLACE OF THAT
VALUE
AND THEN PRESS OK

Add a Website link to Start menu

This is a simple registry tweak which adds a website link to your Start Menu.....its very handy for quick access to your favourite website.

To Install : Copy the code below to notepad and save it as link.reg then just right click on it and choose "merge".


Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-
11d4-bdaf-00c04f60b9f0}]
@="TweakXP.com"

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\DefaultIcon]
@="%SystemRoot%\\system32\\shell32.dll,-47"

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag]
"CLSID"="{13709620-C279-11CE-A49E-444553540000}"
"method"="ShellExecute"
"Command"="TweakXP.com"
"Param1"="http://www.tweakxp.com"

To uninstall : Copy the code below to notepad and save as rem.reg and right click and choose merge.


Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}]
@=""

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\DefaultIcon]
@=""

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag]
"CLSID"="{13709620-C279-11CE-A49E-444553540000}"
"method"="ShellExecute"
"command"=""
"Param1"=""

Speed Boot - Save 2 Seconds

I found that creating a script to run on shutdown that deletes the temp folder and history shaved 2.5 seconds on my boot time, down do 10.5 secs.

Create a batch file by doing the following:

1) Open notepad and enter the following lines:

RD /S /q "C:\Documents and Settings\"UserName without quotes"\Local Settings\History"
RD /S /q "C:\Documents and Settings\Default User\Local Settings\History"
RD /S /q "D:\Temp\" <--"Deletes temp folder, type in the location of your temp folder"

2) Save the fily and then rename is something like deltemp.bat

3) Now click Start, Run and type in gpedit.msc --->Computer Configuration --->Windows Settings --->Scripts and double click on Shutdown --->Click Add and find the batch file you created and press ok to set the script

Tweak worked wonders for me, hope it works well for you.

Windows dll Files download

Here is another location for windows dll's

http://www.dll-files.com/

Creating a Shutdown/Reboot/Logoff Icon

WindowsXP has a program called SHUTDOWN.EXE which allows you to easily create icons to shutdown or restart your computer.

To create a shutdown shortcut on the desktop:

Right click on an open area of the desktop
Select New / Shortcut
Enter in "shutdown -s -t 00" - no quotes
Press the Next button
For the name, enter in anything you like. I just use shutdown. Click on the Finish button.

For a reboot, enter "shutdown -r -t 00"
For a logoff, enter "shutdown -l -t 00"


Shutdown [{-l|-s|-r|-a}] [-f] [-m [\\ComputerName]] [-t xx] [-c "message"] [-d[p]:xx:yy]

Parameters

-l - Logs off the current user, this is also the defualt. -m ComputerName takes precedence.
-s - Shuts down the local computer.
-r - Reboots after shutdown.
-a - Aborts shutdown. Ignores other parameters, except -l and ComputerName. You can only use -a during the time-out period.
-f - Forces running applications to close.
-m [\\ComputerName] - Specifies the computer that you want to shut down.
-t xx - Sets the timer for system shutdown in xx seconds. The default is 20 seconds.
-c "message" - Specifies a message to be displayed in the Message area of the System Shutdown window. You can use a maximum of 127 characters. You must enclose the message in quotation marks.