Hack Forums

Full Version: Network Tool Batch
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hi i made this batch (first one iv ever made) :)

@echo off
color 40
:intro
cls
echo ###############################################################################
echo . .
echo ao27893's Network tool
echo . .
echo Version 1.0
echo . .
echo ###############################################################################
echo loading...........

:i
Echo type r to restart a computer on your network
echo type s to Shutdown a computer on your network
set /p q=r/s:
if %q%==r goto r
if %q%==s goto s
cls
echo invalid key try again
pause >nul
goto intro

:r
cls
echo Type user to restart
set /p n=User:
shutdown -r -m \\%n% -t 30 -c "computer has been shutdown by Your admin"
cls
echo did you want to abourt this? y/n
set /p g=y/n:
if %g%==y goto 52
if %g%==n goto 51
:52
shutdown -a -m \\%n%
cls
goto intro

:51
echo restart was not abourt
pause >nul
Goto intro


:S
cls
echo Type user to shutdown
set /p n=User:
shutdown -s -m \\%n% -t 15 -c "computer has been shutdown by Your admin"

cls
echo did you want to abourt this? y/n
set /p g=y/n:
if %g%==y goto 52
if %g%==n goto 51
:52
shutdown -a -m \\%n%

cls
goto intro

:51
echo restart was not abourt
pause >nul
Goto intro

there some spelling mistakes in there
Yeah Thats Actually Really Smart
Nice haha this is smart :) Wonder if your could use it at school? :P haha, would freak every1 out, it'd be master tool ,fast quick and ezzy :P good job
It doesn't seem to work for me...

It just comes up with the do you want to abort this message.

Also, do you type the computer username or the computer's name on the network?
The computers network name or IP
thx
its works good^^
tylerr20 Wrote:Nice haha this is smart :) Wonder if your could use it at school? :P haha, would freak every1 out, it'd be master tool ,fast quick and ezzy :P good job


Actually, I made exactly the same program, but when I run @ school, it says:

You don't have the permission to do that.


So.....
Thats is Prity cool m8 :P
lol, that's pretty cool. I think I'll bring this to my next LAN party Devlish
Sorry to say but you MUST have administrative priviledges to use that at school...
Pages: 1 2
Reference URL's