• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Come and see Microsoft's brillant engineers *working link*

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
Originally posted by: fivespeed5
screenshot (300kb) - new link, updated... stupid service provider was at fault for the previous link not working 🙁
Who can tell me what's wrong with that screenshot?
yes, you have way too many tray icons 😉

I can create a "Desktop" folder just fine on my computer...however what WON'T work is creating a folder called "con", anywhere. Try it.
 
Originally posted by: werk
Originally posted by: xcript
Originally posted by: notfred
I figured out the problem with this. You can't have a folder on your desktop called "Desktop". Try it. It gives you weird errors.

I created a folder on my desktop called "Desktop" then, inside that folder I created a folder called "fivespeed5 sucks". Windows then moved "fivespeed5 sucks" onto my desktop, and then compalins about a path with 3 "Desktop" folders in it, even though there should only be two.

Screenshot

Edit: It's also created a bunch of files with no name that I can't delete.
Hmm, I don't have this problem.
I don't have this problem either.

nor do I
 
Originally posted by: notfred
I figured out the problem with this. You can't have a folder on your desktop called "Desktop". Try it. It gives you weird errors.

I created a folder on my desktop called "Desktop" then, inside that folder I created a folder called "fivespeed5 sucks". Windows then moved "fivespeed5 sucks" onto my desktop, and then compalins about a path with 3 "Desktop" folders in it, even though there should only be two.

Screenshot

Edit: It's also created a bunch of files with no name that I can't delete.

weird - though I don't know if I want to try it out 🙂
 
Originally posted by: jagec
Originally posted by: fivespeed5
screenshot (300kb) - new link, updated... stupid service provider was at fault for the previous link not working 🙁
Who can tell me what's wrong with that screenshot?
yes, you have way too many tray icons 😉

I can create a "Desktop" folder just fine on my computer...however what WON'T work is creating a folder called "con", anywhere. Try it.

Now THAT is odd...
 
Originally posted by: Jzero
Originally posted by: jagec
Originally posted by: fivespeed5
screenshot (300kb) - new link, updated... stupid service provider was at fault for the previous link not working 🙁
Who can tell me what's wrong with that screenshot?
yes, you have way too many tray icons 😉

I can create a "Desktop" folder just fine on my computer...however what WON'T work is creating a folder called "con", anywhere. Try it.

Now THAT is odd...

Ditto 😕
 
Originally posted by: Shooters
Originally posted by: jagec
I can create a "Desktop" folder just fine on my computer...however what WON'T work is creating a folder called "con", anywhere. Try it.

Try com1, lpt1, or aux. Those don't work either.

Well, i can actually create a directory with any reserved name - you just need to know the right command. For example in a command prompt you can use the following command to bypass the check for reserved file names and folders.

C:\>mkdir \\.\C:\COM2

On the flip side of things, you can delete any folder/file with a reserved name by bypassing the check for reserved names.

C:\>rmdir \\.\C:\COM2 /S

The flag /S removes all directories and files in the specified directory - typically used when ya want to delete a whole tree.
 
Originally posted by: notfred
I figured out the problem with this. You can't have a folder on your desktop called "Desktop". Try it. It gives you weird errors.

I created a folder on my desktop called "Desktop" then, inside that folder I created a folder called "fivespeed5 sucks". Windows then moved "fivespeed5 sucks" onto my desktop, and then compalins about a path with 3 "Desktop" folders in it, even though there should only be two.

Screenshot

Edit: It's also created a bunch of files with no name that I can't delete.

bingo...
As for my tray icons, I had to reinstall 2 days ago. (see my previous thread about being an idiot 😉 I won't link it, it brings back bad memories.)
 
Originally posted by: HajikuFlip
Originally posted by: Jzero
Originally posted by: jagec
Originally posted by: fivespeed5
screenshot (300kb) - new link, updated... stupid service provider was at fault for the previous link not working 🙁
Who can tell me what's wrong with that screenshot?
yes, you have way too many tray icons 😉

I can create a "Desktop" folder just fine on my computer...however what WON'T work is creating a folder called "con", anywhere. Try it.

Now THAT is odd...

Ditto 😕

Whoa... wtf? 😕
 
Originally posted by: fivespeed5
As for my tray icons, I had to reinstall 2 days ago. (see my previous thread about being an idiot 😉 I won't link it, it brings back bad memories.)
😀
 
i created a "desktop" folder on my desktop without problem, everythign works fine.

except the reserved names- thats kinda cool!!
 
I thought I'd explain some of the reasons behind why certain file names are invalid.

For those familiar with Unix it should be obvious, but for those not aware; to Unix a device and a file are essentially analogous, and programmatically they can be treated as such. Windows has reserved files that constitute special devices, so in effect you have a pseudoUnix architecture. CON is simply a filename for the console device; LPT1 is simply the filename for the first LPT port, COM1 for the first COM port, etc. These are files that have special treatment by the OS in that they are analogous to the devices themselves. This allows programmers to easily implement i/o routines using these devices. For example, I can do this in Windows:

CreateFile("COM1"...);

to easily read from the first COM port programmatically. I can do the same for any of the reserved files. You can also do something like this at the console:

type somefilename.txt > LPT1

To redirect the stdout to the first LPT port. Last example:

type COM1

this will cause any input from the COM1 port to be sent to the program type which will, by default, output it to the console; in other words, you can easily see the contents of the data in the buffer.

I hope this helps clear it up a bit for those interested. I can expound on anything if anyone requires it.
 
Back
Top