pyw文件打开visual studio而不是运行程序

时间:2018-03-28 14:43:08

标签: python visual-studio pythonw

所以我有一个.pyw文件,打开它的默认程序是pythonw.exe,但是当我运行它时会打开visual studio。也许一个幕后错误? 程序已在任务计划程序中设置,具有访问Windows中主机文件的最高权限。测试路径工作正常。

import time
from datetime import datetime as dt



# Temporary hosts path to test
hosts_temp = r"C:\Users\letto4135\Desktop\python_programs\web_block\hosts"

# Hosts path in windows
hosts_path = r'C:\Windows\System32\drivers\etc\hosts'

# Redirect to this IP
redirect = "127.0.0.1"

# List of Websites to block
website_list = ['www.facebook.com','facebook.com']



while True:
    # If between time, block sites
    if dt(dt.now().year,dt.now().month,dt.now().day,8) < dt.now() < dt(dt.now().year, dt.now().month,dt.now().day,16):
        with open(hosts_path,'r+') as file:
            content = file.read()
            for site in website_list:
                if site in content:
                    pass
                else:
                    file.write('\n' + redirect + ' ' + site)
    # If not between time allow sites
    else:
        with open(hosts_path, 'r+') as file:
            content = file.readlines()
            file.seek(0)
            for line in content:
                if not any (website in line for website in website_list):
                    file.write(line)
            file.truncate()
    # Run every ("") seconds.
    time.sleep(5)

1 个答案:

答案 0 :(得分:0)

问题出在Task调度程序中。 如果这件事发生在你身上, 在程序/脚本框的操作选项卡下放入pythonw.exe的完整路径, 然后在Add arguments框中输入程序的完整路径。

相关问题