Featured Resource:

line

Newsletter

Email Address:


line

Ask the Expert

Have a question for our resident expert? Email your questions to Bob or post in the Forum.

« TechEd 2007 Notes, and Site Updates | Main | Like That Run Dialog? »

Ribbon Screensaver Settings

If you like playing with screensavers a message like this can be discouraging:

ribbonsaver-options.jpg

However you can still take some control over this screen saver with your trusty registry editor or reg command line tool.

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Screensavers\Ribbons

NumRibbons lets you set the number of ribbons. RibbonWidth? Yes, this one lets you set the width of the ribbons. However, you won't find these registry entries present by default. You'll need to create them as DWORD types and the values they take are hexadecimal.

Set the number of ribbons to 100 and see your screen transformed into a writhing pile of colorful worms:

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Screensavers\Ribbons" /v NumRibbons /d 100 /t REG_DWORD

Set the width of the ribbons to a decimal value of 1008981770 and they all get much thinner (better for those larger numbers of ribbons).

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Screensavers\Ribbons" /v RibbonWidth /d 1008981770 /t REG_DWORD

Want things back they way they were? Just delete the newly created values to restore defaults:

reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Screensavers\Ribbons /v NumRibbons
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Screensavers\Ribbons /v RibbonWidth

Library Resources

line
line

Bob Kelly's Bio:

Bob Kelly is the founder of AppDeploy.com — a resource focused on desktop management products and practices. He is author of the Start to Finish Guide to Scripting with KiXtart and The Definitive Guide to Windows Desktop Administration. He is also president and co-founder of iTripoli, Inc. who provide AdminScriptEditor.com, home to an integrated suite of scripting tools and a shared library of scripts and language help. Not enough? For more on Bob click here.