Skip to content

Instantly share code, notes, and snippets.

@juggernate
Created March 8, 2018 05:15
Show Gist options
  • Save juggernate/7cd091ff8246b885f0678ce39c89da16 to your computer and use it in GitHub Desktop.
Save juggernate/7cd091ff8246b885f0678ce39c89da16 to your computer and use it in GitHub Desktop.
Maya Maya on Windows open Help in Chrome instead of IE
import _winreg
htm = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER,"SOFTWARE\\Classes\\.htm", 0, _winreg.KEY_ALL_ACCESS)
_winreg.SetValueEx(htm, '', 0, 1, "ChromeHTML")
_winreg.CloseKey(htm)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment