vote up 8 vote down star

If you run Sticky Note in Windows 7,its process, is called StikyNot.exe. Several other Windows processes keep their process names under 8 letters.

Why do they do that? What is the advantage? Are they just clinging to the past? Or should everybody be publishing 8-letter executables?

flag

2  
+1 good, valid question. Not sure why it has a close vote. – musicfreak Aug 15 at 19:30

3 Answers

vote up 5 vote down check

Raymond Chen of The Old New Thing Blog covered this: http://blogs.msdn.com/oldnewthing/archive/2007/04/02/2008357.aspx

link|flag
I don't get it. Why would Disneyland have two rides named "Autopia"? – MusiGenesis Aug 15 at 19:56
There was one autopia ride, but it had two tracks to increase throughput. Each track exited in a different location. – FigBug Aug 15 at 22:59
vote up 6 vote down

The old DOS/Windows "short names" were 8.3 and there are still some DDE/RPC/COM facilities and APIs in windows that use them. Plus a few 3rd party products.

link|flag
vote up 0 vote down

They are just clinging to the past, there is no advantage of using 8.3 filenames. All filesystems that you care about will support them, if someone's filesystem gets bust and somehow reverts to 8.3 filenames, then they should expect applications to stop working.

A lot of modern windows apps DO use longer filenames. It's a good idea.

Also note that Windows executables don't actually need to end in .exe, but it is difficult to execute them (through Explorer) if they don't; you can still run them using CreateProcess()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.