一、python代码
import winreg
# 创建key
key = winreg.CreatKey(winreg.HKEY_CLASSES_ROOT, "*\shell\用记事本打开-winreg版")
# 设置打开程序
winreg.SetValue(key, "command", winreg,REG_SZ, "notepad.exe %1")
# 设置图标
winreg,SetValueEx(key, "icon", 0, winreg,REG_SZ, r"c:\windows\system32\notepad.exe")