参考文章1 图文教程 | 2024Typora最新版免费激活使用教程(新旧版可用)_typora激活-CSDN博客
参考文章2
解决Typora闪退、文件打不开等问题——Typora免费使用教程(也有免费版的)_为什么点击typora没反应-CSDN博客
下面是脚本:
# typora软件激活脚本
# https://blog.csdn.net/weixin_73609038/article/details/137751767
# https://blog.csdn.net/weixin_73609038/article/details/134021764
# https://typoraio.cn/
import os
import ctypes
import sysdef is_admin():try:return ctypes.windll.shell32.IsUserAnAdmin()except:return Falsedef apply_admin():if not is_admin():ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, __file__, None, 1)def modify_file(_path, _old, _new):if not os.path.exists(_path):return Falsewith open(_path, encoding='utf-8') as f:license_content = f.read()print(f'{_path} file_size:{len(license_content)}')if _old in license_content:license_content = license_content.replace(_old, _new)with open(_path, mode='w+', encoding='utf-8') as f:f.write(license_content)return Truereturn Falsedef active_soft(bin_path=r'C:\Program Files\Typora'):js_path = os.path.join(bin_path, r'resources\page-dist\static\js')js_files = os.listdir(js_path)# ===== 修改 LicenseIndex*.js文件license_js = os.path.join(js_path, [js_file for js_file in js_files if 'LicenseIndex' in js_file][0])modify_file(license_js, 'e.hasActivated="true"==e.hasActivated', 'e.hasActivated="true"=="true"')# ===== 修改 license.html 文件license_html = os.path.join(bin_path, r'resources\page-dist\license.html')modify_file(license_html, '</body></html>','</body><script>window.onload=function(){setTimeout(()=>{window.close();},5);}</script></html>')# ===== 修改 Panel.json 文件panel_json = os.path.join(bin_path, r'resources\locales\zh-Hans.lproj\Panel.json')modify_file(panel_json, '"UNREGISTERED":"未激活"','"UNREGISTERED":" "')print('============激活完毕,请自行检查软件是否正常===============')print('请手动给快捷方式添加目标 -disable-gpu-sandbox')def main():apply_admin()soft_path = input('请输入typora软件的安装路径,默认值为(C:\Program Files\Typora):\n')if soft_path:active_soft(soft_path)else:active_soft()if __name__ == '__main__':main()