Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenny-evitt/b28ab9b24d284280f4e8b706e075e4ee to your computer and use it in GitHub Desktop.
Save kenny-evitt/b28ab9b24d284280f4e8b706e075e4ee to your computer and use it in GitHub Desktop.
Stop Microsoft Outlook 2010 Reminders window from being 'always on top'
<Query Kind="Statements">
<Namespace>Microsoft.Win32</Namespace>
</Query>
using (RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Office\14.0\Outlook\Options\Reminders", true))
{
if (key != null)
if (key.GetValue("WindowPos") != null)
key.DeleteValue("WindowPos");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment