当前位置:   article > 正文

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

py代码添加自启动

添加文件到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博客】
推荐阅读
相关标签
  

闽ICP备14008679号