powershell 如何定时执行 ps1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 如何定时执行 ps1相关的知识,希望对你有一定的参考价值。
如果你用的是powershell 2.0那就用chtasks。如果你使用的是高版本的PowerShell 3.0+那可以使用计划工作。ScheduledJob相关的命令位于PowerShell的PSScheduledJob组件 。该组件是在Windows PowerShell 3.0 版本中引进的,当然也只能在PowerShell 3.0和最新的版本环境中使用。
Windows PowerShell 计划工作非常实用,因为它整合了PowerShell 后台工作和Windows 中的计划任务。 像Windows PowerShell后台工作一样,计划工作也是在后台异步运行。因为一个已经运行的计划工作的实例,也可以使用Start-Job, Get-Job, Stop-Job, and Receive-Job 这些命令来管理。
具体使用示例,可以参考:http://www.pstips.net/about-scheduledjob.html 参考技术A 用CMD命令 schtasks 创建一个计划任务
C:\Users>schtasks /?
SCHTASKS /parameter [arguments]
Description:
Enables an administrator to create, delete, query, change, run and
end scheduled tasks on a local or remote system.
Parameter List:
/Create Creates a new scheduled task.
/Delete Deletes the scheduled task(s).
/Query Displays all scheduled tasks.
/Change Changes the properties of scheduled task.
/Run Runs the scheduled task on demand.
/End Stops the currently running scheduled task.
/ShowSid Shows the security identifier corresponding to a scheduled t
ask name.
/? Displays this help message.
Examples:
SCHTASKS
SCHTASKS /?
SCHTASKS /Run /?
SCHTASKS /End /?
SCHTASKS /Create /?
SCHTASKS /Delete /?
SCHTASKS /Query /?
SCHTASKS /Change /?
SCHTASKS /ShowSid /?本回答被提问者和网友采纳 参考技术B 利用计划任务是一种方式。
下面是ps的一种方式。
http://blog.csdn.net/shrekz/article/details/8984158
如何设置PowerShell脚本定时执行
参考技术A 不管是Windows还是MacOS还是Linux,凡是定时执行的,一般都是靠计划任务。
以在Windows中运行Powershell脚本为例:
1.
写好你的脚本,比如叫a.ps1
2.
创建
定时任务
,在动作页设置:
运行程序
powershell
,参数
-File X:\..\a.ps1 -ExecutionPolicy ByPas3.
其余项根据你的需求设置好,到设定的时间就可以运行了。
P.S.
不要把运行时间设在过去。
以上是关于powershell 如何定时执行 ps1的主要内容,如果未能解决你的问题,请参考以下文章
如何在Windows服务器上新建一个Powershell.ps1的定时任务