Windows Secrets

Subscribers: Sign in

Enter your e-mail address to get a free subscription.
We guarantee your privacy
Skip to content
  • Home
  • Newsletter Archives
    • Current
    • LangaList Plus
    • Patch Watch
    • Wacky Web Week
    • Security Baseline
  • E-Books
  • Lounge
  • About us
    • Refunds
    • Privacy Policy
    • Advertise
  • Contact
  • Your Account
    • Upgrade
    • Preferences
    • Bonus Download
    • Unsubscribe
Home>Save time by creating folders in bunches

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


Table of contents 
  • Windows Secrets: Six days left to get secret Internet history
  • 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
  • Windows Secrets: Strengthen your privacy in Firefox 3
  • Patch Watch: The clock is ticking for service-pack testers

 
Windows Secrets

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

 
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_ROOTDirectoryshell

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_ROOTDirectoryshell

(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:batchmanyfolders.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:

Mondraft Monfinal Tuedraft Tuefinal Weddraft Wedfinal Thudraft Thufinal Fridraft Frifinal

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_ROOTDirectoryshell

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.

 
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.

 
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

 
Best Software

Get top-flight antivirus without spending a dime

Scott spanbauer By Scott Spanbauer

Protect yourself from viruses and other online threats while skipping the annual subscription fees.

These three antivirus freebies may lack some of the costly bells and whistles (and associated system slowdowns) of commercial alternatives, but they stop malware unobtrusively.

No frills but first-rate virus detection

As a long-standing tightwad, I’ve gone years — decades even — without paying an antivirus-software subscription. First off, my browsing and e-mail behavior reduce the threat of attacks: I avoid using Internet Explorer and recently switched from Outlook to Gmail. Also, my home network uses a hardware router that blocks access to my PCs from the Internet.

Unfortunately, these steps alone won’t prevent every Internet-borne threat. Venturing onto the Web with no virus protection feels like that bad dream where you realize you’ve gone out in public dressed only in your underwear.

To avoid this overexposed sensation, I use a free antivirus program. Until recently, my favorite antivirus freeware was Grisoft’s AVG Anti-Virus Free Edition. Grisoft recently introduced version 8 of the program and discontinued virus-definition updates for the previous version 7.5.

Instead of downloading and installing the new version of AVG, I took another look at two other free antivirus utilities that I had used prior to switching to Grisoft’s offering: AntiVir Personal from Avira and Alwil’s Avast! Antivirus Home Edition.

I don’t need instant-message scans, spyware detection, or other extra features in my free antivirus program. I just want the utility to prevent all viruses, trojans, and worms from infecting my system without reporting time-wasting false positives. I also expect the program to do its job without getting in my face any more than necessary.

I use Virus Bulletin’s VB100 tests to find AV tools that meet these requirements. I was happy to read in Mark Edwards’ May 1, 2008, PC Tune-Up column that AntiVir Personal achieved a perfect score in the most recent test. On further investigation, I discovered that AVG Anti-Virus also passed the April VB100 test, which was conducted on a PC running Windows Vista Business Edition with Service Pack 1.

Mark’s June 12 column contained a further twist by citing complaints by some antivirus experts that the VB100 tests rely too heavily on the WildList. Mark also noted other independent AV tests that compete with those conducted by Virus Bulletin. It’s only common sense that one lab’s assessment of a product may not always be perfect.

For my review, I supplemented the VB100 results with test scores from two other third-party antivirus labs: AV-Comparatives and Westcoast Labs. Note that in many cases, all three organizations test the commercial versions of the antivirus programs. Since the commercial and free versions of antivirus utilities from a single vendor use the same AV engine, that shouldn’t affect my assessment.

The best free antivirus tool also traps rootkits

As Mark noted in his May 1 column, Avira AntiVir Personal is the only free antivirus program that also detects and removes rootkits, which is malware that takes control of your system without your knowledge.

Avira is a top performer in a range of independent antivirus tests. Not only did the program pass the VB100 test with flying colors, it also gets AV-Comparatives’ highest Advanced+ rating in May 2008 testing for its virus detection, speed, and low rate of false positives.

Avira antivir personal
Figure 1. Get first-rate virus protection for free with Avira’s AntiVir Personal.

One important thing to note is that the free version of AntiVir is for personal use only. Avira uses the honor system — naturally — but during installation you must agree not to use the utility for “any kind of commercial or business purpose.”

The commercial version, Avira AntiVir Premium (19.95 euros for a one-year subscription) adds spyware and adware protection, e-mail scanning, and phishing alerts. The fee-based version also updates faster, and upgrading to the paid release eliminates the free version’s irritating nag screen.

AntiVir keeps virus protection simple: the program performs daily scheduled system scans, updates its virus definitions automatically, and constantly scans your system’s memory for malware. Like AVG, AntiVir lets you schedule updates and system scans but doesn’t scan e-mail.

Free AV that works well with Microsoft Outlook

Grisoft’s AVG Anti-Virus Free has long fit my criteria for a free antivirus tool: the program is effective yet inconspicuous. I set AVG to download updates and scan for viruses in the middle of the night, and the utility has never reported a false positive. However, the program has never detected an actual virus, either, probably because of my cautious online behavior, as noted above.

It’s reassuring that AVG Anti-Virus passed the April 2008 VB100 test, but AV-Comparatives gave version 7.5 (the most recent version it tested) a less-than-stellar Advanced rating because the program scanned slower and detected fewer viruses than Avira AntiVir.

Nevertheless, Westcoast Labs’ tests from April and May give version 8 of AVG its thumbs-up Checkmark certification; the tests used both Windows XP and Windows Vista. I’ll be watching to see how AVG 8 performs in AV-Comparatives’ upcoming tests.

Like earlier versions, AVG comes with mail-scanning plug-ins for Outlook and other e-mail programs. It also features an optional Internet Explorer security toolbar that alerts you to risky Web sites. The $34.95 paid version adds Grisoft’s formerly free rootkit scanner, file-download scanner, and instant messaging and phishing protection.

Avast! is the only other memory-resident antivirus application I’m aware of that’s free for non-commercial use. Though the program has scored well on the VB100 and other antivirus tests in the past, its poor performance on the most recent VB100 tests and relatively low Standard rating by AV-Comparatives moves Avast! down a few notches on my list. I look forward to reviewing a future version of the program, however.

Scott Spanbauer frequently writes for PC World, Business 2.0, CIO, Forbes ASAP, and Fortune Small Business. He has contributed to several books and was technical reviewer of PC Hacks.

 
Windows Secrets

Strengthen your privacy in Firefox 3

Mark edwards By Mark Joseph Edwards

Firefox does a good job of protecting your privacy online, but at least one of the new features in Firefox 3 might leave you exposed.

A simple configuration tweak lets you browse in private, and a few great add-ons give the browser even more power.


Wipe out the Location Bar and other tracks

In his June 19, 2008, column, Scott Dunn wrote about several tweaks that help you fine-tune the behavior of Firefox 3. I put the new browser through the wringer and came across some ways to significantly improve its privacy features.

Firefox 3′s new-look Location Bar has a drop-down list of recent sites. This lets you quickly return to a URL that you’ve visited without having to retype the entire address. Of course, you may not want some or all of those URLs to be visible to other people who use your computer.

Deleting an individual entry is as simple as selecting it in the drop-down list and pressing the Delete key. You can disable the entire history window by editing the browser settings.

Type about:config in the Location Bar and press Enter. In the Filter area, type urlbar and press Enter to narrow the list of entries. Find and double-click browser.urlbar.maxRichResults. Set the value to 0 and then restart the browser.

This article is part of our paid content. Subscribe.

Already a paid subscriber? Click here to login.


 
Patch Watch

The clock is ticking for service-pack testers

Susan bradley By Susan Bradley

If you’re using the release candidates for Vista SP1 and XP SP3, you face a June 30 deadline to convert to the final versions.

For most beta testers, the transition is seamless, but some Vista SP1 testers may not be able to uninstall the service pack.


A heads-up for XP and Vista beta testers

I’ve been too busy to uninstall the release candidate of Vista Service Pack 1 from one of my test PCs and replace it with the final version. The other day, I booted the system and was surprised to see a notice informing me that I needed to take action before June 30.

The warning appeared for a short time in the right-hand corner of the screen, telling me that I needed to back up the system as it was going to stop functioning on June 30. XP SP3 beta testers face the same deadline to upgrade to the final version of the service pack.

Windows vista update warning
Figure 1. Vista warns you to update your system or lose your data.

If you installed Vista’s SP1 release candidate over an existing Vista setup, just uninstall Vista Service Pack 1 and download and install the final version. In Microsoft’s TechNet Forum, Tony Mann warns that a small number of Vista testers may not be able to uninstall the service pack.

This article is part of our paid content. Subscribe.

Already a paid subscriber? Click here to login.


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. Windows Secrets is a continuation of four merged publications: Brian's Buzz on Windows and Woody's Windows Watch in 2004, the LangaList in 2006, and the Support Alert Newsletter in 2008.

Publisher: WindowsSecrets.com, 1218 Third Ave., Suite 1515, Seattle, WA 98101 USA. Vendors, please send no unsolicited packages to this address (readers' letters are fine).

Editor in chief: Tracey Capen. Senior editors: Fred Langa, Woody Leonhard. Copyeditor: Roberta Scholz. Program director: Tony Johnston. Contributing editors: Yardena Arar, Susan Bradley, Scott Dunn, Michael Lasky, Scott Mace, Ryan Russell, Lincoln Spector, Robert Vamosi, Becky Waring. Product manager: Andy Boyd. Advertising director: Eric Gilley.

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, Support Alert, 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. 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,
  • Visit our Unsubscribe page.
Copyright © 2012 by WindowsSecrets.com. All rights reserved.

Table of contents

Top-scoring articles in the past 12 months
  • Leaving long cookie trails throughout the Web 5.00
  • Windows-like security for Android devices 5.00
  • Win7′s no-reformat, nondestructive reinstall 4.53
  • The sorry tale of the (un)Secure Sockets Layer 4.42
  • RPV: Win7′s least-known data-protection system 4.33
  • Recovery: the last step in total data security 4.30
  • Time for a .NET update we can’t ignore 4.30
  • Getting the most from Windows Search — Part 1 4.25
  • Revising printing habits saves money and trees 4.25
  • Upgrades end in erratic, partial hangs 4.25
  • Pros and cons of a ‘keyfile’ password 4.21
  • Beating back Duku and a plethora of other threats 4.20
  • Office 2007 gets its final service pack 4.19
  • Putting Registry-/system-cleanup apps to the test 4.19
  • One year and 99 security bulletins later 4.18
  • 1.8TB external drive goes down hard 4.17
  • Don’t pay for software you don’t need — Part 3 4.16
  • Internet Explorer gets another round of patches 4.15
  • Is your free AV tool a ‘resource pig?’ 4.15
  • Vacation’s over; it’s a big round of patches 4.15
  • Remote access leads to remote attacks 4.15
  • Keeping you up to date: say no to .NET — again 4.14
  • Take control of Google’s privacy policy settings 4.14
  • Office File Validation patch leads to problems 4.14
  • The advanced system-recover toolkit 4.13
  • New “419″ scam involves PayPal and Western Union 4.12
  • Readers’ best personal-privacy tips 4.11
  • Getting the most from Windows Search — Part 2 4.11
  • Re-examining Dropbox and its alternatives 4.10
  • Easily edit Windows’ right-click context menus 4.09
Connect with us Follow us on Twitter Connect with us on Facebook View our RSS Feeds
  • Home|
  • Newsletter|
  • About Windows Secrets|
  • Advertise with us|
  • Unsubscribe|
  • Sitemap|
  • Affiliates|
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, WinFind, Windows Gizmos, 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 iNET Interactive. All other marks are the trademarks or service marks of their respective owners.
iNET Interactive Copyright © 2011 iNET Interactive.
All rights reserved.
Terms of Use  |  Privacy Policy
Internet Services
  • Web Hosting Talk
  • HostingCon
  • Hosting Catalog
  • Host Voice
Web Development
  • Hot Scripts
  • DB Forums
Digital Marketing
  • ABestWeb
  • Search Marketing Standard
  • PayPerClickUniverse
  • SEMCompare
Consumer Tech
  • Windows Secrets
  • Overclockers
  • Mac Forums

Learn more about
advertising opportunities across the iNET Interactive Network.

LiquidWeb