![]() |
|
[PRANK OR SERIOUS] Batch command - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: [PRANK OR SERIOUS] Batch command (/Thread-PRANK-OR-SERIOUS-Batch-command) |
RE: [PRANK OR SERIOUS] Batch command - Shadow Hunter - 03-11-2011 cool...illusion i dint think that much ... it can seriously be made complex...........
RE: [PRANK OR SERIOUS] Batch command - Shadow Hunter - 03-11-2011 cool...illusion i dint think that much ... it can seriously be made complex...........
RE: [PRANK OR SERIOUS] Batch command - 1llusion - 03-11-2011 (03-11-2011, 06:48 PM)shadow hunter Wrote: cool...illusion i dint think that much yeh me and my mates once did a DDOS of our school server by this ![]() Just with a little difference: we were opening also websites with a lot of videos or photos so they did take a bit more performance hehe because of this, we didn't write a test from computers ![]() edit: for quick crash, you can also do: Code: tskill /a /v *![]() and last but not least, ALLWAYS use @echo off it covers your back
RE: [PRANK OR SERIOUS] Batch command - 1llusion - 03-11-2011 (03-11-2011, 06:48 PM)shadow hunter Wrote: cool...illusion i dint think that much yeh me and my mates once did a DDOS of our school server by this ![]() Just with a little difference: we were opening also websites with a lot of videos or photos so they did take a bit more performance hehe because of this, we didn't write a test from computers ![]() edit: for quick crash, you can also do: Code: tskill /a /v *![]() and last but not least, ALLWAYS use @echo off it covers your back
RE: [PRANK OR SERIOUS] Batch command - Shadow Hunter - 03-12-2011 actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back.... RE: [PRANK OR SERIOUS] Batch command - Shadow Hunter - 03-12-2011 actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back.... RE: [PRANK OR SERIOUS] Batch command - 1llusion - 03-12-2011 (03-12-2011, 06:04 AM)shadow hunter Wrote: actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back.... Well, when a batch is executed, it usually writes the path of the batch file and the command. You can test it by: Code: echo Test
pauseWith @echo off you won't get the path of the batch file, therefore its more difficult to find out, what is causing it: Code: @echo off
echo test
pauseFor this simple flood, it might be useless, but with more complex batches, it comes in handy ![]() EDIT: just came to my mind. Also, you can use the > nul command Basically it will hide whats going on ![]() Example: Code: @echo off
echo test
pause > nulRE: [PRANK OR SERIOUS] Batch command - 1llusion - 03-12-2011 (03-12-2011, 06:04 AM)shadow hunter Wrote: actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back.... Well, when a batch is executed, it usually writes the path of the batch file and the command. You can test it by: Code: echo Test
pauseWith @echo off you won't get the path of the batch file, therefore its more difficult to find out, what is causing it: Code: @echo off
echo test
pauseFor this simple flood, it might be useless, but with more complex batches, it comes in handy ![]() EDIT: just came to my mind. Also, you can use the > nul command Basically it will hide whats going on ![]() Example: Code: @echo off
echo test
pause > nulRE: [PRANK OR SERIOUS] Batch command - Shadow Hunter - 03-12-2011 @Illusion man this forum is full of cool people..... thanks mate u are wonderful...
RE: [PRANK OR SERIOUS] Batch command - Shadow Hunter - 03-12-2011 @Illusion man this forum is full of cool people..... thanks mate u are wonderful...
|