activate-mathtype

在 Win 中通过删除注册表项来重置 MathType 的试用期

打开注册表

  1. Win + R -> regedit

删除注册表项

  • 删除 HKEY_CURRENT_USER\Software\Install Options 下的 Options 7.8

脚本

1
2
3
4
5
6
7
import win32api
import win32con

key = win32api.RegOpenKey(win32con.HKEY_CURRENT_USER,
'Software\Install Options', 0, win32con.KEY_ALL_ACCESS)

win32api.RegDeleteValue(key, "Options7.8")

Reference

本文作者:jujimeizuo
本文地址https://blog.jujimeizuo.cn/2025/01/06/activate-mathtype/
本博客所有文章除特别声明外,均采用 CC BY-SA 3.0 协议。转载请注明出处!