Can sum 1 help?

  • Thread starter Thread starter dudeyou
  • Start date Start date
D

dudeyou

Guest
ok well here goes, i have windows xp and im not administratorand i really want to play half life 2 but i dont have enough privileges so it wont let me play. i was wondering if anybody knew how to bypass windows xp privileges system so i can play half life 2
 
Ask the administrator to turn the option off. After all, I'm thinking you bought the game; you should be allowed to play it :/
 
where are you using this computer? public place?, friend's laptop. university loaned systems? curious.
 
everything you need is right here

Adding/modifying user accounts

Now that you have a command prompt, you can add a new user (ie yourself) like so

C:>net user username /ADD

where username is the name of your new account. And remember, try and make it look inconspicuous, then they'll just think its a student who really is at school, when really, the person doesn't EXIST! IF you wanna have a password, use this instead:

C:>net user username password /ADD

where password is the password you want to have. So for instance the above would create an account called 'username', with the password being 'password'. The below would have a username of 'JohnSmith' and a password of 'fruity'

C:>net user JohnSmith fruity /ADD

Right then, now that we can create accounts, let's delete them:)

C:>net user JohnSmith /DELETE

This will delete poor liddle JohnSmith's account. Awww. Do it to you enemies:P no only joking becuase they could have important work... well okay only if you REALLY hate them:)

Let's give you admin priveleges:)

C:>net localgroup administrator JohnSmith /ADD

This will make JohnSmith an admin. Remember that some schools may not call their admins 'adminstrator' and so you need to find out the name of the local group they belong to.

You can list all the localgroups by typing

C:>net localgroup
 
Back
Top