How To Close Ports

0 comments

So i've been looking for a while on just how to close a port on a computer. I simply
couldn't find a way. Well, i finally found it. This'll only work for windows users (unless
your unix version OS has netsh).
it's actually quite simple. here's the command for it:
netsh firewall delete portopening TCP portnumber
it's that simple. Simply go to START -> RUN -> and type in that command up there,
and it'll close it for you.
or, you can also open up command prompt (START -> RUN -> CMD) and type in "netsh"
without the quotes to get to your windows firewall settings.
however, since i'm such a nice guy, i wrote it all out in a vbs script for you so that it's
automatically runable. as well as a batch script. so here you are fellas:

.VBS Script

set ss = createobject("wscript.shell")
set ws = wscript
dim PORT
PORT = InputBox("Enter the port you wish to close:")
ss.run "netsh.exe"
ws.sleep 1000
ss.sendkeys "firewall delete portopening TCP " & PORT
ss.sendkeys "{enter}"
ws.sleep 500
'ss.sendkeys "exit"
'ss.sendkeys "{enter}"

.BAT Script

@echo off
title Port Closer
echo Port Closer
echo.
set /p port=Type the port number you wish to close here:
netsh firewall delete portopening TCP %port%
msg /w * Port %port% has been closed.
exit

DOS(Disk Operating system)

0 comments

Why CMD Using ?
Sometimes DOS is the Best Tool
Sometimes DOS commands are the best, and often only, way to do something. Consider using them for file backups and when Windows Explorer has indigestion.
Using DOS Commands
  • DOS commands may be run as command line statements or as batch files.
  • DOS commands are case‐insensitive.
  • DOS commands are documented on various websites and in the Windows help file (see “Command Reference Main Page”).
Command Line Statements
  1. To run DOS commands:
  2. Open the DOS command console window (aka command prompt):
  3. Use menu Start, Run, enter “cmd.exe” OR
  4. Use menu Start, Programs, Command Prompt
  5. Type in the command.
  6. Press [Enter]

E.g
backup c:\work\*.* d: /s
The above example would create a backup of all the files and subdirectories in the work directory and save the backup to the d: drive.

Chat with Friends through ms dos Command Prompt

0 comments
Chat with Friends through ms dos Command Prompt

1) All you need is your friend's IP Address and your Command Prompt.
2) Open Notepad and write this code as it is.....!
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
3) Now save this as "Messenger.Bat".
4) Open Command Prompt.
5) Drag this file (.bat file) over to Command Prompt and press Enter.
6) You would then see something like this:
7) Now, type the IP Address of the computer you want to contact and press enter
You will see something like this:

8) Now all you need to do is type your message and press Enter.
Start Chatting.......!


How to change your folders background

0 comments

Step 1: Have the Folder you want to put the background on open!
Step 2: Open up Notepad, then simply paste in this code:
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
iconarea_image=***Picture Location Here!***\***Name of File!***

Learn To Make Dangerous Virus In A Minute

0 comments
No software is required to make this virus, Noteapad is enough for it. The good thing about this virus is it is not detected by any AntiVirus.

What will this virus do ?
You will create this virus using batch file programming. This virus will delete the C Drive completely. The good thing about this virus is that it is not detected by antivirus.

VLC Media Player Trick

0 comments
In this tutorial i will share a simple trick yet interesting trick i came across while surfing on the internet. I will call it VLC  trick. This trick is simple and works on windows xp as well as windows 7. If you know this trick then its great if you don't then lets dive into it.In this tutorial i will share a simple trick yet interesting trick i came across while surfing on the internet. I will call it VLC Inception trick. This trick is simple and works on windows xp as well as windows 7. If you know this trick then its great if you don't then lets dive into it.