remove virus from ur pen drive

If your Pen Drive is infected with any of the following viruses:

    * Autorun.inf
    * new folder.exe
    * Iexplorer.vbs
    * Bha.vbs
    * nfo.exe
    * New_Folder.exe
    * ravmon.exe
    * RVHost.exe or any other files with extension. 

Actually this viruses are hidden and can't be seen even after you enable show hidden folders.
Following  simple dos command will change the attributes of these files ,there after you can remove it by pressing delete key.
Follow these steps:
Step1.:Type cmd in Run
Step2.: Switch to the drive on which pen drive is connected (like C:\> h: enter)


Step3.: type exactly as attrib -s -h *.* /s  /d  and hit enter (don't forget spaces).



Now you can see hidden virus files and you can delete them.


frnds pls click on ads on lower right corner of blog plsssss˙˙˙˙˙˙˙˙˙˙ʇuǝɯɯoɔ sld sʎnƃ

˙˙˙˙unɹɐʌ ʎq sʞɔıɹʇ



  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Right Click !!! Image converter





Convert between image formats from the Windows shell. Supports JPEG, BMP, PNG, GIF, WBMP, ICON, TGA, and several other file formats. Also has ability to rotate and resize images. Right click on a file or a group of files in Windows, and select Convert to. As simple as that. You can use the utility to compress large files, create icons, convert images to Wireless BMPs, convert batch files and use the program through the command line.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Notepad fun

Notepad fun......... ~!~!~!~ Trick#1 ~!~!~!~

1. Open a blank Notepad file
2. Write .LOG as the first line of the file, followed by a enter. Save the file and close it.
3. Double-click the file to open it and notice that Notepad appends the current date and time to the end of the file and places the cursor on the line after
 4. Type your notes and then save and close the file.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Setting up Basic Networking in Windows, Linux and MAC

The following tutorial explains all about setting up/connecting computers in a LAN i.e. connecting computers to each other for sharing various resources....

BASIC LOCAL AREA NETWORKING ON WINDOWS 2000/XP:

A Local Area Network (or LAN) is a group of computers connected locally via a type of network connection. Common setups for a LAN are through a Hub, Switch or Router to share multiple computers files and internet access.

The easiest way to explain a quick set up of a LAN is using a Hub or Switch. To do this you take Computer A and connect it to the Hub via an Ethernet cable. Once this is done you set up Computer B in the same matter to a different ?port? on the same Hub. Now the computers can see each other. There is still one problem though. They cannot effectively communicate without some further setup on the computer end. This comes in the form of giving the computers each their own IP Address (eg. 10.1.1.1 for Computer A and 10.1.1.2 for Computer B). The IP addess must be different while still staying on the same Subnet (more detail later on this).

If you are using Windows 2000 or later setting up the IP Address is as simple as a few steps. These steps are as follows:

1. Open Control Panel (Start/Control Panel)

2. Open Network Connections Icon

3. Open your Network Card Properties (Right Click on Local Area Connection/Properties)

4. Double Click on Internet Protocol (TCP/IP)

5. Give the IP address of Computer A (10.1.1.1) and Computer B (10.1.1.2) to each of the
computers so they can now see each other.

Now that your two computers have their IP Addresses they can see each other on the internal network (Intranet). To test this out Open Command Prompt (Start/Run?/cmd) on Computer A. in the Command prompt type in ping 10.1.1.2 and hit return. If you get responses from the host then the computers can communicate and you have made your first step into the large world of Networking.


BASIC LOCAL AREA NETWORKING ON DEBIAN LINUX:

A Local Area Network (or LAN) is a group of computers connected locally via a type of network connection. Common setups for a LAN are through a Hub, Switch or Router to share multiple computers files and internet access.


The easiest way to explain a quick set up of a LAN is using a Hub or Switch. To do this you take Computer A and connect it to the Hub via an Ethernet cable. Once this is done you set up Computer B in the same matter to a different ?port? on the same Hub. Now the computers can see each other. There is still one problem though. They cannot effectively communicate without some further setup on the computer end. This comes in the form of giving the computers each their own IP Address (eg. 10.1.1.1 for Computer A and 10.1.1.2 for Computer B). The IP addess must be different while still staying on the same Subnet (more detail later on this).

If you are using Debian Linux setting up the IP Address is as simple as a few steps. These steps are as follows:

1. Using vi (or your favorite text editor) and open the file /etc/network/interface

2. Edit the file to have your settings:

# The primary network interface (Computer A) # The primary network interface (Computer B)
auto eth0 auto eth0
iface eth0 inet static iface eth0 inet static
address 10.1.1.1 address 10.1.1.2
network 10.1.1.0 network 10.1.1.0
netmask 255.255.255.0 netmask 255.255.255.0
broadcast 10.1.1.255 broadcast 10.1.1.255
gateway 10.1.1.1 gateway 10.1.1.1

3. Now run the commands ?ifdown eth0? followed by ?ifup eth0? (Without the Quotations) to restart your Ethernet

Now that your two computers have their IP Addresses they can see each other on the internal network (Intranet). To test this out Open the Terminal on Computer A. In the Terminal type in ping 10.1.1.2 and hit return. If you get responses from the host then the computers can communicate and you have made your first step into the large world of Networking.


BASIC LOCAL AREA NETWORKING ON MAC OS:

A Local Area Network (or LAN) is a group of computers connected locally via a type of network connection. Common setups for a LAN are through a Hub, Switch or Router to share multiple computers files and internet access.

The easiest way to explain a quick set up of a LAN is using a Hub or Switch. To do this you take Computer A and connect it to the Hub via an Ethernet cable. Once this is done you set up Computer B in the same matter to a different ?port? on the same Hub. Now the computers can see each other. There is still one problem though. They cannot effectively communicate without some further setup on the computer end. This comes in the form of giving the computers each their own IP Address (eg. 10.1.1.1 for Computer A and 10.1.1.2 for Computer B). The IP addess must be different while still staying on the same Subnet (more detail later on this).

If you are using Mac OS X setting up the IP Address is as simple as a few steps. These steps are as follows:

1. Open System Preferences

2. Open the Network Dialog

3. Input the IP addresses into the given fields (Computer A, 10.1.1.1 and Computer B, 10.1.1.2) and hit Apply Now

Now that your two computers have their IP Addresses they can see each other on the internal network (Intranet). To test this out Open the Terminal on Computer A. In the Terminal type in ping 10.1.1.2 and hit return. If you get responses from the host then the computers can communicate and you have made your first step into the large world of Networking.

Enjoy HaCkInG.....˙˙˙˙˙˙˙˙˙˙ unɹɐʌ ʎq sʞɔıɹʇ

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Can U do it!!!!!!!!!!

 The Complete list ! Can u Do it!

Try to create a folder in Windows with either of these names--
"con" or "nul" or "Aux" or "Lpt1".
Windows will not let u create ....


if u do then tell me by comment, else ask me

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Make Your Own Setup

You can make your own setup file using windows iexpress tool.It is considered a part of the Windows operating system.
Iexpress tool lets you create self extracting .inf files or executable i.e .Exe files.
IExpress removes the setup files after installation, saving the user time and frustration.
Lets start with Tutorial.

step 1. Go to command prompt type iexpress and press enter. you will get window like this.



step 2.Now you have two option either create new self extraction directive file or open existing self extraction directive file
choose create new self extraction directive file.





Frnds Pls do comment.............

                                                 ˙˙˙˙˙˙˙ ʞɐɥʇɐd unɹɐʌ ʎq sʞɔıɹʇ



  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Some Mirosoft Keys

 Serial "Microsoft Office 2007 Enterprise (Product key)"

T3PVR-XX42X-T49DW-WGBG6-9FT73

Serial "Microsoft Office 2007 Beta 2"
MTP6Q-D868F-448FG-B6MG7-3DBKT
TT3M8-H3469-V89G6-8FWK7-D3Q9Q

Serial "Microsoft Office 2007 PRO"
TT3M8-H3469-V89G6-8FWK7-D3Q9Q

Serial "Microsoft Windows Vista XP Pre SP3 2007 by Egyptian Hak v5.6"
XP8BF-F8HPF-PY6BX-K24PJ-TWT6M
Or
V3V63-3QW2G-JMFBY-8F4CM-PDMQW
Or
WX736-8YJCM-2JW33-4KJGY-XCDJ6

Serial "Microsoft Windows Vista XP Pre SP3 2007 by Egyptian Hak v5.6"
XP8BF-F8HPF-PY6BX-K24PJ-TWT6M
Or
V3V63-3QW2G-JMFBY-8F4CM-PDMQW
Or
WX736-8YJCM-2JW33-4KJGY-XCDJ6

Serial "ACDSee 7"
4TBD4K-B77KV-RNYT9P-G7SVM5Q 4TFDSK-N6Q3Y-NRS9GT-DZLP2CJ 4VRDZK-8XFDK-TMF6K3-4LC9Y84 4SFDXK-9C93R-M3G2WB-DGWGRQL 4WYD4K-

RK2HZ-RTXV9B-7CD8HG3 4ZDDBK-5MKMZ-CNRJWD-H5GRD6W 4B7DPK-SKJV9-CGTK78-HNR9LZ8 4ZYD8K-HTHF8-D7QNXG-3SPLHVF 4XJDFK-8732V-

BG4SZZ-7HTJKV9 4YNDPK-XHHTQ-Z8GF8P-GHX84ZY 4XDDLK-NX7T3-GVXDJ8-4HFPMT4

Serial "Panda Antivirus Titanium 2005 v4.00.01"
User name: CCB9QTP253 Password: acmdhchk

Serial "Microsoft Office 2010 Beta"
D8P7H-9KT2D-G84T2-XX6XJ-M3978



 ˙˙˙˙˙˙˙˙˙˙˙ʞɐɥʇɐd unɹɐʌ ʎq sʞɔıɹʇ

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Know ur frnds id on twitter, fb,orkut or many more by using email address

hello guys so pareshan ho apne frnds ki profile dhundte hue, there is solution for that

1.go to url http://c*om.l*ullar.co*m/
   remove * before going

2. type ur frnd email address

3. u will got all the accounts present on web which are using that email address.




  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Make your folders invisible...:)

Hello frnds so do u want to hide ur private data use it
Make your folders invisible...:)

1)Right Click on the desktop.Make a new folder
2)Now rename the folder with a space(U have to hold ALT key and type 0160).
3)Now u have a folder with out a name.
4)Right click on the folder>properties>customize. Click on change icon.
5)Scroll a bit, u should find some empty spaces, Click on any one of them.

click ok

                                                                                                                          
                        

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Check Ur AntiVirus

A Trick To Check Ur Antivirus Is Working Properly
--------------------------------------------------------------------------------

Open notepad
Copy this code in the text file....

"X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*"

without qutoes....

then save it with the name fakevirus.exe

If this file got deleted immediately ....that means ur antivirus is working n updated ..

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Wanna do fun with ur frnds

SMALL VIRUS!!!!
copy the code without quotes into notepad and save it as something.vbs


"Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
loop
End If"


if u run this u r cd-rom will automatically open and close.
to stop this go to taskmanager-process-wscript.exe-and end the process .

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS