Friday, September 21, 2007

How to Disable Secure Desktop When Prompting for Elevation


If you have the User Account Control turned on, you have noticed that it causes a sudden change in the desktop display everytime it prompts for elevation. This can become annoying for some users. You can disable the secure desktop when prompting for elevation while keeping the UAC turned on. Follow these steps:

1. Press the WinKey+R to bring up the Run dialog box
2. Type secpol.msc
3. Click OK
4. When the UAC prompt appears, select Continue
5. The Local Security Policy window will appear
6. In the left pane, expand Local Policies
7. Select Security Options
8. In the right pane, scroll down to the bottom
9. Double-click User Account Control: Switch to the secure desktop when prompting for elevation
10. Under the Local Security Setting, select the Disabled radio button.
11. Click OK
12. Close the Local Security Policy window

Wednesday, September 19, 2007

Hello World!

public class HelloWorld
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}

FizzBuzz in different languages

Java: import java.util.TreeMap ; public class Main { public static void main (String[] args) { System. out .println( &...