Blue's Clues: Enabling Kiosk Mode

Over the weekend, a newer build (9374) of Windows 8.1 -- Microsoft's incremental update to Windows 8 -- leaked. One of the new features that surfaced in this build is something called "Kiosk mode".

Kiosk mode, in a nutshell, is a mode that, when turned on, keeps a single "Metro" application on the foreground at all times. (This application is run in a limited user context for obvious security reasons.) It's unclear if we'll see desktop application support -- my guess is no, given desktop apps have a much richer set of (uncontrolled) APIs available to them. For more, check out Paul Thurrott's "Blue's Clues: Kiosk Mode" article.

A cursory examination of Kiosk mode would lead you (like many tech bloggers) to believe the feature is broken in this build of Windows. But this is not the case. In fact, enabling Kiosk mode is easy but admittedly non-intuitive. Here's how:

  1. Create a limited user. You can do this PC Settings, Users, User accounts, then Add a user. (I recommend a Local Account but you can use a Microsoft account.)

  2. Log in as the limited user. You can switch to the newly created user by clicking your Start Screen user tile. (You'll have to sit through the welcome tour again, sorry.)
  3. Log out of the limited user.
  4. Switch back to your normal account and configure Kiosk mode with the new account and preferred foreground app -- Bing is a good one.
  5. Log in as your limited user. Your app should load immediately.

Blue's Clues: Enabling the new Search Pane

Taking a break from Internet Explorer 11, Paul Thurrott and I decided to take a look at some improvements coming to Search in the next version of Windows 8.1, codenamed "Blue".

The new Search Pane in Windows 8.1 does away with the visually distinct result categories -- Apps, Settings, and Files -- and instead provides results sorted by relevance in an easily accessible manner.

Paul has a full rundown of the new Search Pane in his "Blue's Clues: New Search Experience", so be sure to read that.

But if you're just looking to play around with it, you can do so via the registry script below. (Be sure to restart Explorer after running.) Be aware, however, that the Search Pane is buggy, incomplete, and does not appear to be finding settings correctly. I'll keep working on it and post any updates here.


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SearchPane]
"NewSearchPane"=dword:00000001
"NewSettingsSearch"=dword:00000001
"NewFilesSearch"=dword:00000001

Blue's Clues: Internet Explorer 11 getting SPDY support

WebGL isn't the only big ticket item coming to Internet Explorer 11. No, digging deeper into IE 11, I found references to that newfangled SPDY protocol -- a protocol designed primary by Google to generally make the web go faster. Paul has a quick summary you should check out.

Oops.Internet Explorer 11 doesn't pass this test just yet.

Oops. Internet Explorer 11 doesn't pass this test just yet.

I can't talk SPDY or even properly demonstrate it working (as the screenshot confirms), but can say it's coming and is being implemented at the OS level (via additions to the Windows Internet API.) That means most internet apps -- like IE 11 -- will be SPDY ready for free.

You can tinker with this today with the registry script below. If you manage to get IE to confirm SPDY logic is enabled, please ping me!

[This is not an April Fool's joke.]


Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"EnableSpdy"=dword:00000001
"EnableSpdyDebug"=dword:00000001

; // Forces SPDY to function outside its expected
; // SSL/TLS environment
"ForceSpdyHttp"=dword:00000000

; // Disable SPDY compression of HTTP headers/data
; // for debug/test
"DisableSpdyCompression"=dword:00000000