Showing tag results for Tips/Support

Mar 30, 2007
Post comments count0
Post likes count1

What do the colors in the elevation dialog mean?

Raymond Chen

On Windows Vista with User Account Control enabled, when you right-click a program and select Run as Administrator, the elevation prompt contains a particular snippet of warning text and a corresponding color-coding. Here are what the four colors mean. You can learn about the philosophy behind UAC in this Channel9 interview. Pre-emptive snarky...

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

More Vista wallpapers from Hamad Darwish

Raymond Chen

Long Zheng does it again. He follows up his interview with Hamad Darwish with a report on what Hamad has been doing lately, as well as links to high resolution versions of the entire Vista wallpaper photo shoot, including photos that didn't make the final cut.

Tips/Support
Feb 27, 2007
Post comments count0
Post likes count1

What does an NMI error mean? (The infamous "Hardware Malfunction")

Raymond Chen

I promised to talk more about NMI, so here it is. What generates an NMI? What does it mean? The first question is easy to answer but doesn't actually shed much light: Any device can pull the NMI line, and that will generate a non-maskable interrupt. Back in the Windows 95 days, a few really cool people had taken the ball-point pen trick one...

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

How to get your laptop to resume from standby in under two seconds

Raymond Chen

One of my colleagues recently posted the story of the work he did to get laptops to resume quickly. The fun part was implementing the optimizations in the kernel. The not-fun part was finding all the drivers who did bad things and harassing their owners into fixing the bugs. One some laptops, he could get the resume time down to an impressive on...

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

The undeletable Outlook folder, episode 2

Raymond Chen

I had another undeletable Outlook folder, and all my tricks for cajoling Outlook into letting me delete it failed. I already deleted all the items in it, emptied it of offline items, deleted all the failures from my Sync Issues folder, but still I couldn't delete the folder. But I came up with a new trick. I moved the folder out of its normal lo...

Tips/Support
Dec 5, 2006
Post comments count0
Post likes count1

How do I find all files with at least one space in their name?

Raymond Chen

You already know how to do this, you just don't realize it. How do you find files with an "x" in their name? That's right, you use . Now you just have to change that x to a space. And since spaces are command line delimiters, you need to quote the sequence so it gets treated as a single parameter rather than two "*" parameters: Stick in a ...

Tips/Support
Nov 23, 2006
Post comments count0
Post likes count1

Placebo setting: QoS bandwidth reservation

Raymond Chen

A placebo setting that has been getting a lot of play in recent years is that of QoS bandwidth reservation. The setting in question sets a maximum amount of bandwidth that can be reserved for QoS. I guess one thing people forgot to notice is the word "maximum". It doesn't set the amount of reserved bandwidth, just the maximum. Changing the value...

Tips/Support
Nov 20, 2006
Post comments count0
Post likes count1

Paradoxically, you should remove the smart card when logging on with a smart card

Raymond Chen

To connect to the Microsoft corporate network from home, employees need to use smartcard authentication. But, somewhat paradoxically, you do better if you remove the smart card. A colleague of mine tipped me off to this. To initiate the connection, you have to insert the smart card and provide the smart card password. Then the system connects to ...

Tips/Support
Nov 17, 2006
Post comments count0
Post likes count1

The window manager moves the mouse; applications choose the cursor

Raymond Chen

You can sometimes narrow down the source of a problem just by looking at the screen and moving the mouse. When you move the mouse, the cursor on the screen moves to match. This work is done in the window manager in kernel mode. The mouse hardware notifies the window manager, "Hey, I moved left twenty units." The window manager takes this value, ac...

Tips/Support
Oct 30, 2006
Post comments count0
Post likes count1

Why can't I get my program to use more than 50% of the CPU?

Raymond Chen

This is sort of the reverse of Why is my CPU usage hovering at 50%?, but the answer is the same. When I run a CPU-intensive task, the CPU percentage used by that process never goes above 50%, and the rest is reported as idle. Is there some setting that I set inadvertently which is preventing the program from using more than half of the CPU? My ...

Tips/Support