Showing tag results for Tips/Support

Oct 16, 2007
Post comments count0
Post likes count1

How do I delay the automatic logon process?

Raymond Chen

To solve some problems you need to place one foot outside the box. We have a number of kiosk machines that are networked wirelessly. Each machine is configured with automatic logon so that things return to normal after power is restored after an outage. The problem is that the wireless switch takes a long time to recover from a power failure, so w...

Tips/Support
Oct 9, 2007
Post comments count0
Post likes count1

Why does ICE16 complain about product names longer than 63 characters?

Raymond Chen

If you merge in the Internal Consistency Evaluators into your MSI package, you may run into error ICE16, complaining that the product name is longer than 63 characters. Why is this so bad? Well, it isn't really, at least not any more. The original Windows 95 version of the Add/Remove Programs control panel did limit product names to 63 char...

Tips/Support
Sep 24, 2007
Post comments count0
Post likes count1

How do I put a different wallpaper on each monitor?

Raymond Chen

When you set a wallpaper on a multi-monitor system, that wallpaper goes onto each monitor. For example, if your wallpaper is a picture of a flower, each monitor shows that same flower. Commenter David Phillips wonders whether there is a way to set a different wallpaper on each monitor, or whether it is some sort of trick. It's some sort of trick....

Tips/Support
Aug 28, 2007
Post comments count0
Post likes count0

With a new Start menu come new keyboard shortcuts

Raymond Chen

With the new Windows Vista Start menu, the keyboard shortcuts have once again been reorganized. You used to be able to hit the Windows key and then type L to call up the Log off menu, and then L again to trigger the logoff. Or you can hit the Windows key and then type I to launch Internet Explorer if you've been so careful to ensure that ...

Tips/Support
Aug 22, 2007
Post comments count0
Post likes count1

Windows Vista has more extended options on the context menu

Raymond Chen

As we saw when we discussed context menus, holding down the shift key when opening a context menu adds so-called extended verbs to the menu. These are verbs that are less frequently used whose presence would clutter up the menu or pose an attractive nuisance. For example, the "Command Prompt Here" command is an extended command since your typica...

Tips/Support
Jul 26, 2007
Post comments count0
Post likes count1

How do the names in the file security dialog map to access control masks?

Raymond Chen

When you call up the file security dialog, you'll see options like "Full Control" and "Read and Execute". That's really nice as friendly names go, but when you're digging into the security descriptor, you may need to know what those permissions really map to when it comes down to bits. First, the summary attributes: If you go to the Advanced vie...

Tips/Support
Jun 8, 2007
Post comments count0
Post likes count1

Why does canonical order for ACEs put deny ACEs ahead of allow ACEs?

Raymond Chen

So-called canonical order for ACEs in an access control list places deny ACEs ahead of allow ACEs. Why is this the canonical order? Because it gives results that are sensible. The algorithm for determining whether a user has access to an object protected by an ACL is as follows: let access-still-needed = access-requested for each ACE in t...

Tips/Support
May 11, 2007
Post comments count0
Post likes count1

Performing an operation in each subdirectory of a directory tree from batch

Raymond Chen

To execute a command in each subdirectory of a directory tree from a batch file, you can adapt the following: (If you want to play with this command from the command prompt, then undouble the percent signs.) The option enables various special behaviors of the command. The most important change is that a string in single-quotation marks caus...

Tips/Support