Using Browser ??? Then this 5 things you should know about your Browser


https://www.youtube.com/watch?v=P6Dm4yEQgmQ


Go to Start and then Click on Run

Type cmd & hit enter (To open Command Prompt ).

Remember you cannot create Undeletable & unrenamable folder in your root directory (i.e. where the windows is installed) That means you can't make this kind of folder in
C: drive if you installed windows on C:

Type D: or E: and hit enter

Type md con\ and hit enter (md - make directory)

You may use other words such as aux, lpt1, lpt2, lpt3 up to lpt9 instead of con in above step.

Open that directory, you will see the folder created of name con.

Try to delete that folder or rename that folder windows will show the error message.



How to delete that folder ?

It is not possible to delete that folder manually but you can delete this folder by another way mentioned below.
Open Command Prompt
Type D: ( if u created this type of folder in D: drive) & hit enter
Type rd con\ (rd - remove directory)
Open that directory and the folder will not appear because it is removed.

This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.

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

Double click to open this file and you will be impressed by this awesome trick.

About this blog

Powered by Blogger.