A colleague at work got this from the Net. Please check it out and
please, please, please try to explain. Theyâre weird. Here it is:
Microsoftâs Crazy Facts
MAGIC #1
Nobody can create a FOLDER anywhere on the computer which can be
named as âCONâ. This is something pretty coolâŠand unbelievable. .. At
Microsoft the whole Team, couldnât answer why this happened! TRY IT
NOW, IT WILL NOT CREATE âCONâ FOLDER
MAGIC #2
This is something pretty cool and neatâŠand unbelievable. .. At
Microsoft the whole Team, including Bill Gates, couldnât answer why
this happened! Try it out yourselfâŠ
Open Microsoft Word and typeâ
=rand (200, 99)
And then press ENTER
MAGIC #3
For those of you using Windows, do the following:
1. Open an empty notepad file
2. Type âBush hid the factsâ (without the quotes)
3. Save it as whatever you want.
4. Close it, and re-open it.
Is it just a really weird bug?
I know Iâm straying just slightly off center here dealing with what
is, essentially, just a forwarded urban legend email. But the neat
thing about all three of these âmagicsâ is that parts are true,
parts are false, and all have completely rational reasons.
Become a Patron of Ask Leo! and go ad-free!
First, letâs throw out the falsehood: plenty of people at Microsoft
can tell you exactly whatâs going on in each of these cases. Even
perhaps Bill himself, though heâd never actually get dragged into
something silly like this.
âą
#1: you canât create a folder called CON.
True.
In fact, I think youâd have to jump through some hoops to get a file
named CON as well. There may be ways to force one or the
other, but in general, you canât create a file called CON.
âCONâ is a reserved name that dates back to the days of MS-DOS and is short for
âCONsoleâ. The idea is that any program could write to the screen or
read from the keyboard simply by opening and acting on a file by the
name of CON. Try this sometime in a Windows Command Prompt:
COPY readme.txt CON
simply intended behaviors or explainable bugs.â
For our example âreadme.txtâ is any convenient text file you have laying
about. That will cause the file to be âcopied to the consoleâ â i.e.,
displayed on the screen.
Other possibly reserved filenames include things like COM1, COM2,
and so on for your serial or modem ports, and LPT1, LPT2 and so on for
printer ports.
âą
#2: =rand(200,99) in Microsoft Word outputs a bunch of stuff.
True.
The rand() function is in Word specifically to automatically
generate text. In some versions it produces the string âThe quick brown
fox jumps over the lazy dogâ (every character in the standard English
alphabet). Apparently, it may generate other text in other versions.
Itâs intentional, as documented
here in Microsoftâs knowledgebase.
The first number, by the way, is the number of paragraphs of
automatic text to generate, and the second is the number of lines in
each paragraph.
For even more fun, try the =lorem() function; same idea, different
text.
âą
#3: âBush hid the factsâ in notepad returns Chinese or other
characters.
True. (Depending on your version of Notepad.)
I hadnât actually heard of this one, but sure enough â a quick search
gave me the answer right away.
Itâs a bug in some versions of notepad that is nothing more than
misinterpreting an ANSI text file as Unicode. While âBush hid the
factsâ is popular among conspiracy theorists and internet meme
generators, there are several different word patterns that can
generate the same problem.
As I said, itâs a known bug in Notepad. It appears to have been
fixed in recent versions and updates of both XP and Vista.
Itâs also documented more fully here on Wikipedia.
âą
None of these are âmagicâ at all. Theyâre simply intended behaviors
or explainable bugs.
Nothing to see here. Move along. (And donât forward the conspiracy
email any further.)
Leo,
Your link to Wikipedia is incorrect. You might have intended http://en.wikipedia.org/wiki/Notepad
you are right leo , i see these âMicrosoftâs Crazy Factsâ in too much forms and the most thing make me laugh this part âBill Gates, couldnât answer why this happenedâ ,> this is one of the programming rules.
and thank you leo to clarify some of these what people thinks itâs magic ..
http://www.fosdir.com/links
ââBEGIN PGP SIGNED MESSAGEââ
Hash: SHA1
The notepad linkâs been fixed. Itâs actually a link to
http://en.wikipedia.org/wiki/Bush_hid_the_facts
Leo
ââBEGIN PGP SIGNATUREââ
Version: GnuPG v1.4.7 (MingW32)
iD8DBQFIb7KYCMEe9B/8oqERAh8sAJ9j+LB1Rkhl5ePH5BPijGTbGVRcvACgi5Oi
h355QVelB/KgUQ3tHpFZLPk=
=XPRW
ââEND PGP SIGNATUREââ
âThe quick brown fox jumped over the lazy dogâ does NOT contain every character in the standard English alphabet. It should be âthe quick brown fox jumps over the lazy dogâ which contains the âsâ.
Creat a new folder then rename it so right click choose Insert Unicode Control Character then Left-to-right mark name it CON , I think that is ok.
thanks.
What about the function you mentioned Leo =lorem() function, i tried it but nothing happed
You can make con. Use at your own discretion:
Try this:
click on Start then Run and type cmd
hit enter
then try the following command
md \\.\c:\con
so it should look like this at the command prompt:
c:\> md \\.\c:\con
to remove:
c:\> rd \\.\c:\con
note: You donât type c:\> â thats just the command prompt
and there is a space between > and md (or rd) and a space between md and \\
=lorem() only works with Word 2007, not 2003
i made a folder named Con tryin the command prompt ⊠now i cant delete it⊠any1 can help me??
âConâ also refers to control Pannel. itâs a reserved word. hence canât use it.
(in a notepad try name a file with âConâ, youâll get to see it)
Hello All,
there is a reason why CON cannot be used for creating a folder of file in windows of command prompt.
Reason is while developing DOS, those programmers made a logic programming. they selected a word for describing a command which creates a file, called â copy con â.
they wrote programming as it cannot be used by any other command.
As DOS is the base for all the operating systems we have today, it cannot be changed. If they try to change them they have to modify all the operating systems in world; which is not possible.
So Bill Gates described it as a BUG in Microsoft Products.
There are also other filenames which cannot be used, like NUL, COM1, COM2, COM3, ⊠COM9, LPT1, LPT2, LPT3, ⊠LPT9. These files are reserved to be used as devices. CON is the console device. NUL is the null device (accepts anything like a black hole, but doesnât save anything). COM1 through 9 stand for the communication ports (the serial ports). LPT1 through 9 stand for printer ports (or parallel ports). Like copy con file.txt, you can also do copy file.txt con .
but guys,,,,, I can create the foldr named con
Thereâs the answer why anyone can create folder named âconâ:
http://wiki.answers.com/Q/Why_can't_you_create_a_folder_named_CON_in_Windows_or_MS-DOS
23-Apr-2010
Thanks for the urban legends â I loved the lorem function and rand. Sadly âBushâ did nothing â which kinds seems right.
More legends Leo please!
âBush hid the factsâ is a bug but it can be triggered by almost any sentence that follows a particular pattern:
1) First word with an even number of letters (2 or more)
2) All other words with odd number of letters (3 or more).
(Does not seem to work if the last letter of each word is the same.)
Has something to do with the encoding of âUnicodeâ.
Notepad before Win2000 didnât support Unicode, so the âmagicâ doesnât work on Win95-ME (unless youâve replaced Notepad with a later one).
Also, if you save it as Unicode instead of ANSI (Win2000 on), there is no âmagicâ. WYSIWYG!
Leo is trying so hard to deny these things, it makes me wonder if Leo isnât in on the conspiracy :-)
Iâm disappointed with you for the first time ever. The 3 magic things you mentioned are bogus. I tried all three and all went like normal. No surprises, or hints of something unusual except for the fact that you messed up. Tsk, tsk, ha, ha.
01-Jul-2011
Not only âCONâ but you also canât create folder named âPRNâ and âNULâ.
we can create a folder named âCONâ
We can do this by following method
STEP1: goto command prompt
STEP2: type in prompt e:\> \âmkdir \\.\e:\con\â
STEP3: verify by typing \âdir \\.\e:\con\â
STEP4: delete the file or folder \ârmdir \\.\e:\con\â
You can create a folder named con easily just follow steps :
1.create new folder
2.right click and choose insert unicode .
3.choose LRM
4.Create new folder named con