当前位置:   article > 正文

python 设置开机自动启动_一键开机启动添加(python)

一键添加到自动启动文件夹的代码 python

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

## file2autorun.py

import sys

import win32api

import win32con

import os

def addfile2autorun(path):

runpath = "Software\Microsoft\Windows\CurrentVersion\Run"

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_ROOT\Python.File\shell\Add2AutoRun]

[HKEY_CLASSES_ROOT\Python.File\shell\Add2AutoRun\command]

@="python \"e:\\python\\file2autorun.py\" \"%1\""

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

闽ICP备14008679号