Jump to content

User talk:FO8735

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
Hello, FO8735! Welcome to Wikipedia! Thank you for your contributions to this free encyclopedia. If you decide that you need help, check out Getting Help below, ask me on my talk page, or place {{helpme}} on your talk page and ask your question there. Please remember to sign your name on talk pages by clicking or using four tildes (~~~~); this will automatically produce your username and the date. Finally, please do your best to always fill in the edit summary field. Below are some useful links to facilitate your involvement. Happy editing! XLinkBot (talk) 09:04, 11 July 2009 (UTC)[reply]
Getting started
Getting help
Policies and guidelines

The community

Writing articles
Miscellaneous

July 2009[edit]

Welcome to Wikipedia. Although everyone is welcome to contribute constructively to the encyclopedia, your addition of one or more external links to the page Criticism of Microsoft Windows has been reverted.
Your edit here was reverted by an automated bot that attempts to remove unwanted links and spam from Wikipedia. The external link you added or changed is on my list of links to remove and probably shouldn't be included in Wikipedia. The external links I reverted were matching the following regex rule(s): \bblog(?:cu|fa|harbor|mybrain|post|savy|spot|townhall)?\.com\b (links: http://mrsqueezles.blogspot.com/2006/05/windows-explorer-file-sorting-problem.html). If the external link you inserted or changed was to a blog, forum, free web hosting service, or similar site, then please check the information on the external site thoroughly. Note that such sites should probably not be linked to if they contain information that is in violation of the creator's copyright (see Linking to copyrighted works), or they are not written by a recognised, reliable source. Linking to sites that you are involved with is also strongly discouraged (see conflict of interest).
If you were trying to insert an external link that does comply with our policies and guidelines, then please accept my creator's apologies and feel free to undo the bot's revert. However, if the link does not comply with our policies and guidelines, but your edit included other changes to the article, feel free to make those changes again without re-adding the link. Please read Wikipedia's external links guideline for more information, and consult my list of frequently-reverted sites. For more information about me, see my FAQ page. Thanks! --XLinkBot (talk) 09:04, 11 July 2009 (UTC)[reply]

The blog link is OK. Here's the content for reference:

Thursday, May 11, 2006

Windows Explorer file sorting problem help

I was getting really annoyed by Windows XP's method of sorting files. As a programmer, I often work with documentation files that are named with strings of numbers. I'd like the sorting of those numbers to look like this.

   * 00111.txt
   * 25.txt
   * 3.txt
   * 92.txt

Instead of that, I get this.

   * 3.txt
   * 25.txt
   * 92.txt
   * 00111.txt

In a way, this makes sense. Files are sorted by number instead of their text contents. Unfortunately, when looking through a longer list of files, this makes things difficult. It's much easier to look for files starting with "00" than to find the number "111". I did some searching and found this registry modification. It will add a new option in your folder settings. Save this text to a file called "sort.reg" or something. Double click it and apply the patch. Open an Explorer window and go to Tools->Folder Options->View->Files and Folders. Scroll to the bottom of the list and check the "Use textual file sorting" entry. The first time you change this setting, you may have to log out, then back in for the change to take effect. Who knows? Maybe I'll be using Gnome at work sometime soon and won't have to worry about Windows hacks anymore ;-)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\List Order]
"Type"="checkbox"
"Text"="Use textual file sorting"
"ValueName"="NoStrCmpLogical"
"CheckedValue"=dword:00000001
"UncheckedValue"=dword:00000000
"DefaultValue"=dword:00000000
"RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer"
"HKeyRoot"=dword:80000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]

"NoStrCmpLogical"=dword:00000000

posted by MrSqueezles at 8:33 AM

I used it because it's a compact and clean presentation. --FO8735 (talk) 09:26, 11 July 2009 (UTC)[reply]