Windows Secrets logo

 

 

   
       
   
Windows Secrets Newsletter • Issue 158 • 2008-06-26 • Circulation: over 275,000

On the Way book excerpt

Six days left to get secret Internet history
Our paying subscribers — and our free subscribers who upgrade to paid — have six days remaining to get this month's bonus download. It's a 47-page excerpt we've licensed from a forthcoming book with phenomenal inside info on the early days of the Net.

On the Way to the Web: The Secret History of the Internet and Its Founders (photo, left) won't be available in stores for weeks. But Windows Secrets readers can get the best chapters now, until July 2. —Brian Livingston, editorial director

Paid subscribers: Download your bonus
Free subscribers: Upgrade to get the bonus
Info on the printed book: United States / Canada / Elsewhere
   
     
Table of contents
TOP STORY: Save time by creating folders in bunches
KNOWN ISSUES: Readers reach out to help other readers
WACKY WEB WEEK: The only thing I think about more often than beer
BEST SOFTWARE: Get top-flight antivirus without spending a dime
PC TUNE-UP: Strengthen your privacy in Firefox 3
PATCH WATCH: The clock is ticking for service-pack testers
PERMALINKS: Send these links to your friends and co-workers
YOUR SUBSCRIPTION: How to change your address or unsubscribe

   
    You're receiving only our free content. Use the following link to get all of our paid content immediately:

How to get our paid content

   
   
ADS

Free PC performance scan   Free PC performance scan
Since 1999, over 100 million PC performance scans have been run at PC Pitstop. Run the all-new, free PC Pitstop PC Optimize 2.0 scan now and in just minutes receive a custom report showing you how to keep your PC running at peak performance.
PC Pitstop

Get 3 free PC training video CDs   Get 3 free PC training video CDs
Pick which training CDs you want, and you pay only $9.95 shipping and handling. Pick from all of these subjects: Windows XP, Access, Word, Excel, PowerPoint, Dreamweaver MX, Flash MX, Photoshop 7.0, Photoshop CS, VisualBasic, and eBay.
PC Tutor CDs

Save over $500 a year on auto insurance   Save over $500 a year on auto insurance
Get your free auto insurance quote from top providers within minutes. Just select your state and we do the rest. No fees, no obligations... see what you can save.
National Car Insurance

See your ad here

   
   
TOP STORY

Save time by creating folders in bunches

Scott Dunn By Scott Dunn

Simplify file management by generating new folders from your right-click menu that automatically have the current date in the folder name.

Run a four-line batch file from your context menu that creates whole hierarchies of folders that you name from the Command Prompt.

Name folders based on their creation date

It's often useful to sort files into folders based on when the files were created. This is especially handy for storing digital photos. Of course, you can simply create a folder and name it manually. But it's much faster to add the date to the folder name automatically.

Date-based folders are more useful if their names are automatically sorted in chronological order. They won't sort chronologically if you use a date format such as "June 30, 2008."

But you can sort folders by date if you use the year-month-day format (for example, "2008-06-30"). This way, your folders will be listed in date order automatically when you sort them by name.

Start by choosing Windows' short-date format:

Step 1. Press the Windows key (Win) plus the letter R to open the Run dialog box. Type control intl.cpl and press Enter.

Step 2. In the Regional and Language Options Control Panel, click Customize (in XP) or Customize this format (in Vista).

Step 3. In the Customize Regional Options dialog box, click the Date tab.

Step 4. For Short date, choose yyyy-MM-dd from the drop-down list. Click OK twice.

Now add a command to your folders' context (or right-click) menu that names new folders based on this format.

In Windows XP, this can be done via Windows Explorer dialog boxes. Unfortunately, doing so triggers a Windows bug that can be fixed only by editing the Registry.

In Vista, you have to edit the Registry from the start, so it's best to use the Registry Editor to make the change in both Vista and XP.

Careless Registry changes can cause Windows to misbehave, so create a restore point before you begin. That way you can revert to the pre-modification Registry in case something goes wrong.

In XP, follow these steps to create a restore point:

Step 1. Choose Start, All Programs, Accessories, System Tools, System Restore.

Step 2. Select Create a restore point, click Next, and follow the instructions in the wizard to complete the process.

Follow these steps to create a restore point in Vista:

Step 1. Click Start, type SystemPropertiesProtection, and press Enter. Click Continue if prompted by User Account Control (UAC).

Step 2. Click Create. Type a name for your restore point, and press Enter. Click OK to acknowledge the completion of the process and OK again to close System Properties.

Now you're ready to add a new command to Explorer's context menu for folders:

Step 1. Press Win+R to open the Run dialog box. Type regedit and press Enter.

Step 2. In the tree pane on the left, navigate to and select:

HKEY_CLASSES_ROOT\Directory\shell

Step 3. (Optional) The next tip I describe entails returning to this location, so you may want to choose Favorites, then Add to Favorites; type a descriptive name; and press Enter to facilitate reopening the key.

Step 4. In the tree pane, right-click the shell icon and choose New, Key. Type a name, such as Date_Folder, and press Enter.

Step 5. With Date_Folder (or whatever you named the key) selected in the tree pane, double-click the (Default) icon in the right pane.

Step 6. In the Value Data box, type the command as you want it to appear on your context menu. For example, you might type "New folder with today's date" (without the quotation marks). Click OK.

Step 7. Right-click the Date_Folder key in the tree pane and choose New, Key. Name it command and press Enter.

Step 8. With the command icon selected in the tree pane, double-click the (Default) icon in the right pane.

Step 9. In the Value data box, type:

cmd.exe /c md "%1\%%DATE%%"

(including the quotation marks) and click OK. Exit the Registry Editor.

Now when you right-click a folder icon in Explorer or on the desktop, you'll see your new command. When you choose it, a Command Prompt window may briefly flash on screen.

The command creates a new folder inside the selected one, so you may find it easier to use on folders in the tree pane. If you don't see the new folder, press F5 to refresh the Explorer window.

Once the folder contains a folder named for the current date, the command can't create another folder with the same name. So once you invoke it, subsequent use of this command on the same folder will have no effect until the next day.

Mass-produce new folders via a batch file

By default, the only ways to create a folder in Explorer are to click File, New, Folder or to right-click in the right pane and choose New, Folder. If you need to make more than a few new folders at one time, this gets old very quickly.

Save time and trouble by adding a command to your folder context menu that lets you create all the new folders you wish — including a hierarchy of subfolders — almost as fast as you can type.

Start by creating a batch file that will generate new subfolders within any folder you right-click:

Step 1. Press Win+R to open the Run dialog box. Type notepad and press Enter.

Step 2. In Notepad, type the following four lines exactly:

@echo off
set /p name="Type one or more folder names: "
cd %1
md %name%


The first line hides the code from the Command Prompt window.

The second line prompts you to enter the folder names and then stores the names in a variable called Name.

Be sure to place one or more spaces before the closing quotation mark in line 2. That way, the names you type won't run up against the prompt in the Command Prompt window.

The other commands in the batch file switch the current folder to the one you right-clicked and create folders based on what you type at the prompt.

Step 3. Save the file to a location of your choice, for example C:\batch. Name the file something like manyfolders.cmd and then exit Notepad.

Next, add a command to launch the batch file from your folders' context menu. As in the context-menu customization I described above, this change requires some Registry editing:

Step 1. Set a restore point as explained above.

Step 2. Press Win+R to open the Run dialog box. Type regedit and press Enter.

Step 3. In the tree pane on the left, navigate to and select:

HKEY_CLASSES_ROOT\Directory\shell

(If you saved this key to your Favorites menu as part of the tip above, choose the entry there to open the key in a flash.)

Step 4. In the tree pane, right-click the shell icon and choose New, Key. Type a name such as Make_Folders and press Enter.

Step 5. With Make_Folders (or whatever you named it) selected in the tree pane, double-click the (Default) icon in the right pane.

Step 6. In the Value Data box, type the command as you want it to appear on your context menu. For example, you might type Make one or more folders. Click OK.

Step 7. Right-click the Make_Folders key in the tree pane and choose New, Key. Name the new key command and press Enter.

Step 8. With the command icon selected in the tree pane, double-click the (Default) icon in the right pane.

Step 9. In the Value data box, type:

"c:\batch\manyfolders.cmd" "%1"

(with the quotation marks) and click OK. Naturally, your path and batch file name may differ. Exit the Registry Editor.

Now when you want to make one or several new folders within another folder, right-click that folder and choose your new command. A Command Prompt window appears telling you to type the name(s) of your folder(s). Type the name of each folder you want to create at that location, separated by a space.

If you want a folder name to include spaces, put that name within quotation marks. To create folders within folders, use the \ symbol. When you're done, press Enter.

For example, if you type:

Mon Tue Wed Thu Fri

you create those five folders within the current folder. Typing:

Mon\draft Mon\final Tue\draft Tue\final Wed\draft Wed\final Thu\draft Thu\final Fri\draft Fri\final

creates five folders, each of which has two subfolders named "draft" and "final."

If you don't see your new folders, press F5 to refresh Explorer.

Note that you can use this command to create a single folder as well.

Bonus tip: Looking for a fast way to add a single subfolder without taking your hands off the keyboard? Select the parent folder in Explorer, press Alt+F, Enter, Enter. Type the new name and press Enter again.

Note that this technique doesn't work if you have an object selected in the right pane. To fix that, press Ctrl+Spacebar to deselect it before using the aforementioned key sequence.

Troubleshoot a balky folder-creation shortcut

If your new folder-generating commands don't work as expected, double-check your settings in the Regional and Language Options Control Panel and the text in your manyfolders.cmd batch file.

You may also need to reopen the Registry Editor and double-check the names and values of the keys you just added. Double-click the (Default) icon of any key whose commands you need to edit, make the required changes, and click OK.

If the batch file still refuses to run and you decide to remove the commands from the context menu, navigate to and select:

HKEY_CLASSES_ROOT\Directory\shell

in the Registry Editor, right-click the Date_Folder or Many_Folders key in the Registry Editor's tree pane, and choose Delete. Click Yes to confirm.

If the file causes other problems, choose Start, All Programs, Accessories, System Tools, System Restore. Select the restore point you created before starting the process to return your computer to its previous state.

Scott Dunn is associate editor of the Windows Secrets Newsletter. He has been a contributing editor of PC World since 1992 and currently writes for the Here's How section of that magazine.

Contents  Index

   
   
ADS

Get four essential video tools in one package   Get four essential video tools in one package
Convert between video formats with AVS Video Converter. Transfer DVDs to your PC or iPod with AVS DVDtoGo. Import home movies from VHS, MiniDV, or webcam with AVS Capture Wizard. Strip commercials from DVR video with AVS Video ReMaker. Find out more!
AVS Video Tools

Instantly fix driver problems   Instantly fix driver problems
Driver Detective provides the most up-to-date drivers specific to your computer! With more than 1 million drivers, Driver Detective saves you endless hours of work and aggravation normally associated with updating drivers.
Drivers HeadQuarters

Recover Windows passwords   Recover Windows passwords
Did you forget your Windows administrator/user password? Want to find your PC's BIOS/CMOS password? Recover e-mail, MSN, IE, and Google Talk passwords with ease. Locate any software product key on your PC. Solve password problems with Password Genius.
Spotmau Password Genius

See your ad here

   
   
KNOWN ISSUES

Readers reach out to help other readers

Dennis O'Reilly By Dennis O'Reilly

Troubleshoot Windows glitches, show menus in Vista's Explorer, and supercharge your OS with a low-cost shareware tool.

There's lots of support for development of a true Windows Secrets reader-to-reader forum, as shown by your reaction to last week's report on Brian's meeting with readers in China.

Taking advantage of the knowledge of crowds

From the outset, computer users have relied on one another for help when things go wrong — even more than they rely on the companies that sell them the hardware and software they struggle with.

The "we're all in this together" spirit is evident in the response to editorial director Brian Livingston's description of his recent meeting in Hong Kong with several Windows Secrets readers. Many people encouraged us to get the Windows Secrets reader forum going as soon as possible. Some even suggested tools and techniques we can use to create the exchange.

We were also delighted to see several people attempting to prime the pump by offering tips for fellow readers. Among these was Charlie Ruffin's description of how he solved a vexing problem he experienced in both XP and Vista.
  • "A few years ago, my Windows XP PC started to act flaky. It finally stopped rebooting completely one morning. I tried every trick I could think of with no luck. Finally, before heading out to buy a new PC, I tried unplugging the USB hubs. That was the problem. It was not an individual device causing the problem, it was the powered hub! Replacing the hub corrected the problem.

    "Fast-forward to a new PC running Windows Vista Home Premium. The PC acts flaky, but it reboots fine. Everything appears to run OK except Microsoft Office 2007 products — sometimes they work, but most of the time they do not work. Outlook, Excel, and Word all hang and tell me they are 'Not Responding.'

    "I try to restore a two-week-old restore point (I had been on vacation). It doesn't allow me to do it. I have Windows Home Server and am able to restore the C: drive back to the earlier point. This doesn't help. I try to repair Office 2007 using the CD. This doesn't work. I try to repair Vista with the CD. This doesn't work. I run the memory check (I had installed another 2GB of RAM about a month previously). It says memory is OK. After becoming much lighter by pulling out my hair, I remember the problem with XP. Bingo!

    "I had the same problem as before with the USB hub. The two systems displayed different symptoms, but the base problem was the same. A hub that worked for months suddenly stops working and hoses up the hardware somehow to cause the software not to work correctly.

    "Lesson learned: Pull the hubs at the first sign of any problem. If it's the hub, you've solved it without having to think! If it's not the problem, you didn't lose much time trying before the thinking has to begin."
A simple way to show menus in Vista's Explorer

Anyone who writes about technology for a living soon learns that the people reading your articles know more than you do. Woody Leonhard's column on the shortcomings of the Vista interface mentioned that it's difficult to find the menus in Vista's version of Windows Explorer. Reader Michael Kraftman describes a simple way to accomplish this.
  • "Woody's article in issue 157 repeats for the umpteenth time the incorrect statement that the only way to show menus in Vista's Windows Explorer is by pressing the Alt key.

    "To show the menu bar permanently, click the Organize button (top left), select Layout, and tick Show Menus. This setting has always been available. Set it once and it applies to all Explorer windows and persists across sessions on a per-user basis.

    "There is an analogous setting in IE 7 under the Tools button which persists in the same way."
Give your PC a low-cost performance boost

I have never heard anyone complain that their PC is too fast. Larry Croy writes in to tell us about a free Windows speedup utility he has been using for years.

  • "Well, after seeing tips other people sent in that I had known about or been using for a while, I decided to stop berating myself for not sending in the tip first. I have been using XP Smoker for years, since it was a total freeware, to now it is a 7-day/50-use trial version.

    "[The program] will not only handle services, but also tweaks various settings in the Registry for faster computing and Web surfing, plus a whole lot more."
Windows Secrets will continue to look for ways to put readers in touch with other readers. After all, there's no better way to put the "personal" in personal computing.

Readers Charlie, Michael, and Larry will each receive a gift certificate for a book, CD, or DVD of their choice for sending tips we printed. Send us your tips via the Windows Secrets contact page.

The Known Issues column brings you readers' comments on our recent articles. Dennis O'Reilly is technical editor of WindowsSecrets.com.

Contents  Index

   
   
ADS

Most reliable server backup solution   Most reliable server backup solution
With Acronis True Image Echo Server for Windows, you can schedule backup tasks, compress and encrypt images, exclude files from backups, and more! For added protection, use Acronis Secure Zone — a hidden drive partition seen only by Acronis Wizard.
Acronis True Image Echo Server

Get your product seen by 275,000 readers   Get your product seen by 275,000 readers
Does your company offer a product or service? Now you can place an ad in the Windows Secrets Newsletter and be seen by more than 275,000 active buyers of PC hardware and software. Bid as much or as little as you like to get the ideal ad placement.
Windows Secrets Newsletter

See your ad here

   
   
TELL A FRIEND

How you can share this information

We love it when you send your friends links to our articles. But please don't forward your copy of our e-mail newsletter to people, which subjects us to spam complaints. Instead, simply suggest that your friends visit this issue's permanent Web address, shown below. A complete index at the bottom of the Web page provides you with hyperlinks to any article you'd like to recommend.

The address of this issue is http://WindowsSecrets.com/comp/080626

   
   
EDITOR'S BOOKSHELF

Windows Vista Secrets Get the tips you need about Windows Vista
The all-new Windows Vista Secrets helps novices and experts alike understand Microsoft's latest operating system. "To really appreciate what is in Vista, you almost need to read through the leading book on the product, Windows Vista Secrets, by Brian Livingston and Paul Thurrott," writes Rob Enderle, principal analyst of the Enderle Group, in TechNewsWorld. "It's 595 pages of things you can do with this product — most of which you probably wouldn't have discovered for some time, let alone right at first." Check the book out now for tips you can use.
More information: United States (B&N) / Canada / Elsewhere

Spam-Proof Your E-Mail Address, 2nd Ed. Spam-Proof Your E-Mail Address, 2nd Ed.
This 32-page e-book by Brian Livingston gives you step-by-step instructions that can prevent 97% of the spam that would otherwise clog an e-mail account. You could call it "Livingston's Spam Secrets." The PDF e-book is the result of months of experiments and tests we conducted. We now receive little or no spam to the addresses we used as guinea pigs. These tests show that you can make your e-mail addresses invisible to spammers, not just battle an ever-growing flood. The methods we describe work with Windows, Apple, and Linux and don't require any filters or block lists — but you can use those in addition to the book's techniques, if you wish. More info

   
   

Table of contents

   
   
WACKY WEB WEEK

The only thing I think about more often than beer

Max Beer  First impressions are always important. It's easy to be judged based on the brand of your shoes, the style of your clothes, or the scent of your cologne. According to this video, men now have one more thing to be judged on.

This 60-second ad parody may make you think twice about your next choice of brews at the local pub. Play the video

Table of contents

   
   
PERMALINKS

The following topics appear in our free content

TOP STORY   Save time by creating folders in bunches
  Name folders based on their creation date
  Mass-produce new folders via a batch file
  Troubleshoot a balky folder-creation shortcut
   
KNOWN ISSUES   Readers reach out to help other readers
  Taking advantage of the knowledge of crowds
  A simple way to show menus in Vista's Explorer
  Give your PC a low-cost performance boost
   
WACKY WEB WEEK   The only thing I think about more often than beer
   
You get all of the following in our paid content

BEST SOFTWARE   Get top-flight antivirus without spending a dime
  No frills but first-rate virus detection
  The best free antivirus tool also traps rootkits
  Free AV that works well with Microsoft Outlook
   
PC TUNE-UP   Strengthen your privacy in Firefox 3
  Wipe out the Location Bar and other tracks
  Enable URL autocomplete in Firefox 3
  The easy way to remember Google search operators
  Firefox + Gmail = online file storage
  Arbitrary code execution in Firefox 2 and 3
   
PATCH WATCH   The clock is ticking for service-pack testers
  A heads-up for XP and Vista beta testers
  Bluetooth patch gets a patch of its own
  Apple's Safari browser gets a Carpet Bomb fix
  Administrators are still waiting for Vista SP1
  New holes found in Adobe Reader and Acrobat
   
   
It's easy to get all our paid content! Contribute whatever it's worth to you
Readers who make a financial contribution of any amount will immediately receive the latest issue of our full, paid newsletter and 12 months of new paid content. Pay as much or as little as you like — we just want as many people as possible to have this information.

Santos A portion of your support helps children in developing countries
In the month of June 2008, a portion of your contributions helps Windows Secrets sponsor 7-year-old Santos (photo, left) and his community in San Salvador, Nicaragua. The second poorest country in Latin America, Nicaragua has struggled to support its growing population.

Our sponsorship of Santos through the Save the Children Foundation will benefit early childhood development programs in San Salvador, which provide educational and nutritional assistance. Each month, we send a full year of sponsorship to a different child. More info

To upgrade, simply make a contribution of any amount you choose
If you do this by July 2, 2008, you'll instantly be sent the full, paid version of today's newsletter — and enjoy 12 months of new, paid content.

Use the link below to learn more benefits of becoming a paid subscriber!

More info on how to upgrade

Thanks in advance for your support.

   
   

Table of contents

   
   
YOUR SUBSCRIPTION

The Windows Secrets Newsletter is published weekly on the 1st through 4th Thursdays of each month, plus occasional news updates. We skip an issue on the 5th Thursday of any month, the week of Thanksgiving, and the last two weeks of August and December.

Publisher: WindowsSecrets.com LLC, Attn: #120 Editor, 1700 7th Ave., Suite 116, Seattle, WA 98101-1323 USA. Vendors, please send no unsolicited packages to this address (readers' letters are fine).

Editorial Director: Brian Livingston. Associate Editor: Scott Dunn. Technical Editor: Dennis O'Reilly. Research Director: Vickie Stevens. Program Director: Tony Johnston. Editorial Assistant: Raef Harrison. Copyeditor: Roberta Scholz. Contributing Editors: Susan Bradley, Mark Joseph Edwards, Woody Leonhard, Ryan Russell, Scott Spanbauer.

Trademarks: Microsoft and Windows are registered trademarks of Microsoft Corporation. The Windows Secrets series of books is published by Wiley Publishing Inc. The Windows Secrets Newsletter, WindowsSecrets.com, LangaList, LangaList Plus, WinFind, Security Baseline, Patch Watch, Perimeter Scan, Wacky Web Week, the Logo Design (W, S or road, and Star), and the slogan Everything Microsoft Forgot to Mention all are trademarks and service marks of WindowsSecrets.com LLC. All other marks are the trademarks or service marks of their respective owners.

HOW TO SUBSCRIBE: Anyone may subscribe to this newsletter by visiting our free signup page.

WE GUARANTEE YOUR PRIVACY:

1. We will never sell, rent, or give away your address to any outside party, ever.
2. We will never send you any unrequested e-mail, besides newsletter updates.
3. All unsubscribe requests are honored immediately, period.  Privacy policy

HOW TO UNSUBSCRIBE: To unsubscribe from the Windows Secrets Newsletter,
Copyright © 2008 by WindowsSecrets.com LLC. All rights reserved.

Table of contents