Everyone wants to be hacker . So here we will start with bits of hacking then bytes and then will continue to learn more as we learn.
Welcome to Tektuts, Today I will introduce you with the hacking of windows system from command prompt. Its also usefull to know when you forget your windows system password then how can you reset that.
First of all to play with windows user accounts you need to learn the use of command NET
which is very useful as you can easily add remove and modify user from command prompt.
net user test /add
this will add new user test to the system.
net localgroup administrators test /add
this will elevate privilege from local to administrator
net user test /del
This was all i wanted to share with you in this post , if you want to learn from watching video you can head over to below video link.
How to Add new user
to add new user to the system open your command prompt and typenet user test /add
this will add new user test to the system.
How to elevate privilege to Administrator
to elevate privilege type the followingnet localgroup administrators test /add
this will elevate privilege from local to administrator
How to remove user from System
type the following to remove user from systemnet user test /del
This was all i wanted to share with you in this post , if you want to learn from watching video you can head over to below video link.