psshell change task argu

2022/4/23 7:13:24

本文主要是介绍psshell change task argu,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

from subprocess import PIPE, STDOUT,Popen
import traceback
import subprocess


# # -*- encoding=utf-8 -*-
# from subprocess import Popen, PIPE, STDOUT
# #进入/sdcard 下,查看文件列表
# #使用gbk格式代替utf-8,避免在解码过程中遇到中文文件名而报错
process = Popen(["powershell.exe"], shell=False, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
commands = ('''$Task = Get-ScheduledTask -TaskName "1t"\n''' 
            '''$Task.Actions[0].Arguments = "x:\python.exe hhh"\n'''
            "Set-ScheduledTask $Task\n"
            )
outs, errs = process.communicate(commands.encode('gbk'))


from subprocess import PIPE, STDOUT,Popen
import traceback
import subprocess


# # -*- encoding=utf-8 -*-
# from subprocess import Popen, PIPE, STDOUT
# #进入/sdcard 下,查看文件列表
# #使用gbk格式代替utf-8,避免在解码过程中遇到中文文件名而报错
process = Popen(["powershell.exe"], shell=False, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
commands = ('''$Task = Get-ScheduledTask -TaskName "1t"\n''' 
            '''$Task.Actions[0].Arguments = "x:\python.exe hhh"\n'''
            "Set-ScheduledTask $Task\n"
            )
outs, errs = process.communicate(commands.encode('gbk'))




#
# try:
#    output = Popen(
#               [r"powershell.exe", r'''$Task = Get-ScheduledTask -TaskName "1t"\n''',
#                r'''$Task.Actions[0].Arguments = "x:\python.exe xxxxx"\n''',
#                r"Set-ScheduledTask $Task\n"],
#               shell=True, stdout=PIPE, stderr=STDOUT)
#    print(output)
# except BaseException:
#     errstr = traceback.format_exc()
#     print(errstr)

#
# try:
#    output = Popen(
#               [r"powershell.exe", r'''$Task = Get-ScheduledTask -TaskName "1t"\n''',
#                r'''$Task.Actions[0].Arguments = "x:\python.exe xxxxx"\n''',
#                r"Set-ScheduledTask $Task\n"],
#               shell=True, stdout=PIPE, stderr=STDOUT)
#    print(output)
# except BaseException:
#     errstr = traceback.format_exc()
#     print(errstr)

  



这篇关于psshell change task argu的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程