当前位置:   article > 正文

python脚本开机自启_一键开机启动添加(python)_开机启动python脚本

win32api.regsetvalueex 开机启动

添加文件到run注册表里面去

## file2autorun.py

import sys

import win32api

import win32con

import os

def addfile2autorun(path):

runpath = “SoftwareMicrosoftWindowsCurrentVersionRun”

hKey = win32api.RegOpenKeyEx(win32con.HKEY_CURRENT_USER, runpath, 0, win32con.KEY_SET_VALUE)

path = os.path.abspath(path)

if False == os.path.isfile(path):

return False

(filepath, filename) = os.path.split(path)

win32api.RegSetValueEx(hKey, filename, 0, win32con.REG_SZ, path)

win32api.RegCloseKey(hKey)

return True

if len(sys.argv) == 1:

print “usage: file2autorun.py %filepath%”

else:

path = sys.argv[1];

if addfile2autorun(path):

print “added %s to autorun” % (path,)

else:

print “fail add %s to autorun!!!” % (path, )

右键菜单添加懒得写了,人肉改注册表:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTPython.FileshellAdd2AutoRun]

[HKEY_CLASSES_ROOTPython.FileshellAdd2AutoRuncommand]

@=”python “e:\python\file2autorun.py” “%1″”

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/article/detail/56543
推荐阅读
相关标签
  

闽ICP备14008679号