|
A Windows filename has two parts:
-
the main filename -- e.g., mydoc.txt
-
the filename extension -- e.g., mydoc.txt
Windows uses the extension to determine what the default
action on a file will be when, for instance, you double-click
on its icon. For example:
.doc
.xls
.mdb
.txt
.exe
.html
.vbs
.js
.docx
|
Open in MS Windows
Open in MS Excel
Open in MS Access
Open in Notepad
Run as an executable program
Open with Internet Explorer
Run VB Script using Windows Scripting Host
Run as a Javascript script
Open in MS Word
|
Windows is set by default to not show
extensions on filenames. This is done presumably to
make lists of files less cluttered to read -- a definite
plus.
Although it is very important to know what kind of file a
file is, most of us are familiar with the icons of many files
and don't think we really need to see the extensions to know
that a Word file's icon has a big blue "W"
in it and an HTML file's icon has a big blue
"e" in it.
However, many of us are not familiar with the blue scroll of
a .vbs file or the yellow scroll of a
.js file. This is important, because the
current round of virus/worm attacks on Windows machines by
script attachments use filenames like
loveletter.txt.vbs
If you can't see the ".vbs" extension because Windows has
hidden it -- or don't notice or recognize the icon, you will
probably assume this is a harmless text file
that will open in Notepad if you double-click it. And VBS and
JS files can be quite dangerous if they're designed to be.
So the slight clutter of visible filename extensions might be
a small price to pay for the added security of understanding
what's happening on your machine.
If you want to try displaying them (you can always change the
setting back to invisible):
-
Go into Windows Explorer
If you don't have a toolbar or shortcut (usually a file
folder with
a magnifying glass superimposed over it) to get there, you
can:
-
Go to the Start menu
-
Select Run
-
Type "explorer.exe" in the box
-
Hit the Enter key
-
In Windows Explorer, choose Folder Options
from the Tools menu
-
Click on the View tab
-
Find "Hide File Extensions for Known File
Types" and UNcheck its box.
|