TechScribe : Unveiling the Latest Tech Wonders
Labels
Articles
Batch Programming
Offline Website
Saturday, June 27, 2020
CREATE A BATCH PROGRAM THAT CREATE INFINITE USERS WITH RANDOM NAME
1.Open notepad
2.Then type the following code in it
@echo off
:x
net user %random% /add
goto x
3.S
a
ve it as .bat extension.
4.Run it
Note : Run it as adminstrator.
CREATE A BATCH PROGRAM THAT CREATE INFINITE FOLDER WITH RANDOM NAME
1.Open notepad
2.Then type the following code in it
@echo off
:x
md %random%
goto x
3.S
a
ve it as .bat extension.
4.Run it
(Note: It is recommended to run in a virtual machine system)
Newer Posts
Home
Subscribe to:
Posts (Atom)