Post: easy cmd tools (release)
01-10-2012, 05:47 AM #1
hollandje
Are you high?
(adsbygoogle = window.adsbygoogle || []).push({}); hey

everyone wants to learn codes and hacking and you need to start somewhere so with this simple release you'll be able to use the most used cmd commands with 1 simple click on a button.

green = easy
orange = Normal
Red = Hard (you'll need to do some more than just typing something in)

how to use them: open notepad and paste the PHP code in there, then save it as a .bat file.


I'll try to update this post with new codes every day, so let's get started and enjoy Smile




Find all acces level on the PC

     @echo off
color a
:A
cls
echo this tool is to search which accounts or pc's are connected to this network
echo made by hollandje
pause
net user
pause
Goto A


Send message around the network to all or one user (only XP)

    
@echo off
color a
:A
Cls
echo Send a message around the network (by hollandje)
set /p n=User (type in * for all users. type in the ip adress for a single user):
set /p m= Your message:
net send %n% %m%
Pause
Goto A


shutdown tool

    
@echo off
color a
:A
Cls
echo this tool can be used to shutdown someone's pc (by hollandje)
pause
shutdown -i
pause
Goto A


find all users and pc's on the network
    
@echo off
color a
:A
Cls
echo this tool can be used to show the pc's and users connected to the current network (by hollandje)
pause
net view
pause
Goto A


see your internet configuration
    
@echo off
color a
:A
Cls
echo this tool can be used to find your ip-adress and others.
pause
ipconfig
pause
Goto A


Delete any file with a directory

    
@echo off
color a
:A
Cls
echo with this tool you can easily delete any file from the pc if you know the directory (by hollandje)
set /p n=file directory:
DEL %n%
echo file succesfully deleted!
pause
Goto A


Copy a file
    
@echo off
color a
:A
echo with this tool you can copy a file with a directory
echo (by hollandje)
set /p n=the directory of the file:
set /p m=the place you want it to copy:
copy %n% %m%
pause
Cls
Goto A

Dont forget to also include the file name in the directory so it will look like this
You must login or register to view this content.

Shutdown PC by name
    
@echo off
color a
:A
Cls
echo this tool can be used to shutdown someone's pc by the name
echo use the net user code to find out the name of the pc
set /p n=The name of the PC:
shutdown -m %n%
echo shutdown succesfull!
pause
Goto A


Delete a directory
    
@echo off
color a
:A
Cls
echo okay this tool is very powerfull
echo this tool is so powerfull that it can easily
echo destroy someone's pc, so be carefull
echo .
echo .
echo .
set /p n=The directory you wish to delete:
RD %n%
echo directory succefully deleted!
pause
Goto A

okay this is a very very powerfull command. This will delete a directory complete!
don't go around and use this on school pc's to delete the system32 map that is not how the code should be used!


add a user to the network/domain
    
@echo off
color a
:A
Cls
echo with this tool you can add users to a network or a domain (administrator etc.)
set /p n= The name of the user:
set /p m= The password (leave blank for none):
set /p s= The domain to add user:
net user %n% %s% %m% /add
pause
Goto A


sorry for any advertisements in the PHP header Eek

Last Update:
14.01.11
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to hollandje for this useful post:

Jaw1312, Killua-
01-10-2012, 06:26 PM #2
Killua-
Let The Madness Reign
Nice find but these are kind of basic. Thanks though, this could be useful to other members.
01-10-2012, 10:21 PM #3
hollandje
Are you high?
Originally posted by Killua
Nice find but these are kind of basic. Thanks though, this could be useful to other members.


i know these on are basic but i keep making more of these and i'm thinking to make a advanced page in this thread so we'll see.
01-11-2012, 06:42 AM #4
Originally posted by hollandje View Post
i know these on are basic but i keep making more of these and i'm thinking to make a advanced page in this thread so we'll see.


you should see my command prompt. it's sick..
01-11-2012, 08:35 AM #5
hollandje
Are you high?
Originally posted by SatanicHispanic View Post
you should see my command prompt. it's sick..

How do u mean it's sick?
01-12-2012, 12:33 AM #6
Originally posted by hollandje View Post
How do u mean it's sick?


It's amazing took me like 2 days.

has all of your shit plus like a 100. awesome.
01-13-2012, 12:33 AM #7
Jaw1312
moc.etadpUneGtxeN
Originally posted by SatanicHispanic View Post
It's amazing took me like 2 days.

has all of your shit plus like a 100. awesome.

Post a screenie bro.

---------- Post added at 07:33 PM ---------- Previous post was at 07:30 PM ----------

Originally posted by hollandje View Post
hey

everyone wants to learn codes and hacking and you need to start somewhere so with this simple release you'll be able to use the most used cmd commands with 1 simple click on a button.

green = easy
orange = Normal
Red = Hard (you'll need to do some more than just typing something in)

how to use them: open notepad and paste the PHP code in there, then save it as a .bat file.


I'll try to update this post with new codes every day, so let's get started and enjoy Smile




Find all acces level on the PC

     @echo off
color a
:A
cls
echo this tool is to search which accounts or pc's are connected to this network
echo made by hollandje
pause
net user
pause
Goto A


Send message around the network to all or one user (only XP)

    
@echo off
color a
:A
Cls
echo Send a message around the network (by hollandje)
set /p n=User (type in * for all users. type in the ip adress for a single user):
set /p m= Your message:
net send %n% %m%
Pause
Goto A


shutdown tool

    
@echo off
color a
:A
Cls
echo this tool can be used to shutdown someone's pc (by hollandje)
pause
shutdown -i
pause
Goto A


find all users and pc's on the network
    
@echo off
color a
:A
Cls
echo this tool can be used to show the pc's and users connected to the current network (by hollandje)
pause
net view
pause
Goto A


see your internet configuration
    
@echo off
color a
:A
Cls
echo this tool can be used to find your ip-adress and others.
pause
ipconfig
pause
Goto A


Delete any file with a directory

    
@echo off
color a
:A
Cls
echo with this tool you can easily delete any file from the pc if you know the directory (by hollandje)
set /p n=file directory:
DEL %n%
echo file succesfully deleted!
pause
Goto A


Copy a file
    
@echo off
color a
:A
echo with this tool you can copy a file with a directory
echo (by hollandje)
set /p n=the directory of the file:
set /p m=the place you want it to copy:
copy %n% %m%
pause
Cls
Goto A

Dont forget to also include the file name in the directory so it will look like this
You must login or register to view this content.

Shutdown PC by name
    
@echo off
color a
:A
Cls
echo this tool can be used to shutdown someone's pc by the name
echo use the net user code to find out the name of the pc
set /p n=The name of the PC:
shutdown -m %n%
echo shutdown succesfull!
pause
Goto A


sorry for any advertisements in the PHP header Eek

Help me? You must login or register to view this content.
01-13-2012, 02:27 PM #8
hollandje
Are you high?
- editing fault :s

---------- Post added at 03:27 PM ---------- Previous post was at 02:45 PM ----------

Originally posted by Jaw1312 View Post
Post a screenie bro.

---------- Post added at 07:33 PM ---------- Previous post was at 07:30 PM ----------


Help me? You must login or register to view this content.


okay so from the picture i can't tell what your problem so i'll make a step by step tut on how to use shutdown -i comment

1.

press enter in the command prompt

2.

press add.

3.

type in the IP-adress of the pc you want to shutdown. (must be on the network)

4.

choose your desired options

5.

and then you press ok and it should work proparly

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo