概述
1. 计划任务设置(执行身份, 权限等)
以开机脚本为例
只需要勾选'不管是否登录都要运行'及'最高权限运行'
触发器:
操作:
思路: cmd.exe 调用 powershell.exe 再加参数指定 xxx.ps1 文件
启动程序: C:WindowsSystem32cmd.exe
若想正常的执行ps1脚本, 需要proper powershell.exe 的参数
-File 参数 脚本完全路径 String类型
-ExecutionPolicy 执行策略 可选值 Restricted / AllSigned / RemoteSigned / Unrestricted / Bypass / Undefined
-Noprofile 配置文件
-NonInteractive 不交互
-NoLogo No Copyright 提醒
添加参数: /C C:WindowsSystem32WindowsPowerShellv1.0powershell.exe -NoProfile -NonInteractive -NoLogo -ExecutionPolicy Unrestricted -File "C:ProgramDataxxxx.ps1"
cmd /c 执行完关闭, cmd /k 执行完保留
或者是
程序或脚本:
C:WindowsSystem32WindowsPowerShellv1.0powershell.exe
参数:-windowstyle hidden -NoProfile -NonInteractive -NoLogo -ExecutionPolicy Unrestricted -File "C:tempairwatchChangeDesktop.ps1"
最后
以上就是幽默帅哥为你收集整理的Windows Powershell 计划任务的全部内容,希望文章能够帮你解决Windows Powershell 计划任务所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复