尝试绿化Python2.7,使用如下的批处理命令给Python文件添加关联:
assoc .py=Python.Script
assoc .pyw=Python.Script.NoConsole
ftype Python.Script="%CD%\Python27\python.exe" "%%1" %%*
ftype Python.Script.NoConsole="%CD%\Python27\pythonw.exe" "%%1" %%*
说明:批处理中,%CD%表示当前目录。
作者:redice@163.com